From 24ceac8d845a41a211e58617faa69549f6349374 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Tue, 30 Sep 2014 15:38:12 -0400 Subject: [PATCH 01/52] [ADD] document_page from odoo/7.0 --- document_page/__init__.py | 25 + document_page/__openerp__.py | 48 + document_page/data/wiki_main.xml | 39 + document_page/data/wiki_quickstart.xml | 116 + document_page/document_page.py | 133 + document_page/document_page_data.xml | 41 + document_page/document_page_demo.xml | 130 + document_page/document_page_view.xml | 162 + document_page/i18n/ar.po | 269 ++ document_page/i18n/bg.po | 269 ++ document_page/i18n/bs.po | 269 ++ document_page/i18n/ca.po | 269 ++ document_page/i18n/cs.po | 269 ++ document_page/i18n/da.po | 269 ++ document_page/i18n/de.po | 272 ++ document_page/i18n/document_page.pot | 273 ++ document_page/i18n/el.po | 269 ++ document_page/i18n/es.po | 279 ++ document_page/i18n/es_AR.po | 494 +++ document_page/i18n/es_CR.po | 520 +++ document_page/i18n/es_MX.po | 535 +++ document_page/i18n/es_VE.po | 535 +++ document_page/i18n/et.po | 269 ++ document_page/i18n/fi.po | 269 ++ document_page/i18n/fr.po | 280 ++ document_page/i18n/gl.po | 269 ++ document_page/i18n/hr.po | 274 ++ document_page/i18n/hu.po | 279 ++ document_page/i18n/id.po | 269 ++ document_page/i18n/it.po | 276 ++ document_page/i18n/ja.po | 269 ++ document_page/i18n/ko.po | 269 ++ document_page/i18n/lt.po | 269 ++ document_page/i18n/lv.po | 269 ++ document_page/i18n/mk.po | 276 ++ document_page/i18n/mn.po | 272 ++ document_page/i18n/nb.po | 269 ++ document_page/i18n/nl.po | 279 ++ document_page/i18n/nl_BE.po | 440 +++ document_page/i18n/pl.po | 274 ++ document_page/i18n/pt.po | 272 ++ document_page/i18n/pt_BR.po | 278 ++ document_page/i18n/ro.po | 275 ++ document_page/i18n/ru.po | 278 ++ document_page/i18n/sk.po | 269 ++ document_page/i18n/sl.po | 274 ++ document_page/i18n/sq.po | 269 ++ document_page/i18n/sr.po | 269 ++ document_page/i18n/sr@latin.po | 269 ++ document_page/i18n/sv.po | 273 ++ document_page/i18n/tlh.po | 269 ++ document_page/i18n/tr.po | 277 ++ document_page/i18n/uk.po | 269 ++ document_page/i18n/vi.po | 269 ++ document_page/i18n/zh_CN.po | 272 ++ document_page/i18n/zh_TW.po | 269 ++ .../security/document_page_security.xml | 8 + document_page/security/ir.model.access.csv | 4 + document_page/security/wiki_security.xml | 12 + .../static/src/css/document_page.css | 12 + document_page/test/document_page_test00.yml | 54 + document_page/web/__init__.py | 4 + document_page/web/controllers/__init__.py | 3 + document_page/web/controllers/wiki.py | 65 + document_page/web/locales/bg.po | 22 + document_page/web/locales/ca.po | 22 + document_page/web/locales/da.po | 22 + document_page/web/locales/de.po | 22 + .../locales/de_DE/LC_MESSAGES/javascript.po | 20 + .../web/locales/de_DE/LC_MESSAGES/messages.po | 24 + document_page/web/locales/es_CR.po | 23 + .../locales/es_ES/LC_MESSAGES/javascript.po | 20 + .../web/locales/es_ES/LC_MESSAGES/messages.po | 24 + document_page/web/locales/es_PY.po | 22 + document_page/web/locales/fr.po | 22 + .../locales/fr_FR/LC_MESSAGES/javascript.po | 20 + .../web/locales/fr_FR/LC_MESSAGES/messages.po | 24 + document_page/web/locales/gl.po | 22 + document_page/web/locales/javascript.pot | 19 + document_page/web/locales/messages.pot | 23 + document_page/web/locales/ru.po | 22 + document_page/web/locales/sk.po | 22 + document_page/web/locales/tr.po | 22 + document_page/web/static/css/wiki.css | 32 + document_page/web/widgets/__init__.py | 3 + document_page/web/widgets/rss/__init__.py | 3 + document_page/web/widgets/rss/feedparser.py | 2860 +++++++++++++++++ document_page/web/widgets/templates/wiki.mako | 23 + document_page/web/widgets/wiki.py | 224 ++ .../web/widgets/wikimarkup/__init__.py | 2146 +++++++++++++ document_page/wizard/__init__.py | 25 + .../wizard/document_page_create_menu.py | 88 + .../wizard/document_page_create_menu_view.xml | 33 + .../wizard/document_page_show_diff.py | 61 + .../wizard/document_page_show_diff_view.xml | 39 + document_page/wizard/wiki_make_index.py | 100 + document_page/wizard/wiki_make_index_view.xml | 43 + document_page/wizard/wiki_wiki_page_open.py | 66 + .../wizard/wiki_wiki_page_open_view.xml | 34 + 99 files changed, 21266 insertions(+) create mode 100644 document_page/__init__.py create mode 100644 document_page/__openerp__.py create mode 100644 document_page/data/wiki_main.xml create mode 100644 document_page/data/wiki_quickstart.xml create mode 100644 document_page/document_page.py create mode 100644 document_page/document_page_data.xml create mode 100644 document_page/document_page_demo.xml create mode 100644 document_page/document_page_view.xml create mode 100644 document_page/i18n/ar.po create mode 100644 document_page/i18n/bg.po create mode 100644 document_page/i18n/bs.po create mode 100644 document_page/i18n/ca.po create mode 100644 document_page/i18n/cs.po create mode 100644 document_page/i18n/da.po create mode 100644 document_page/i18n/de.po create mode 100644 document_page/i18n/document_page.pot create mode 100644 document_page/i18n/el.po create mode 100644 document_page/i18n/es.po create mode 100644 document_page/i18n/es_AR.po create mode 100644 document_page/i18n/es_CR.po create mode 100644 document_page/i18n/es_MX.po create mode 100644 document_page/i18n/es_VE.po create mode 100644 document_page/i18n/et.po create mode 100644 document_page/i18n/fi.po create mode 100644 document_page/i18n/fr.po create mode 100644 document_page/i18n/gl.po create mode 100644 document_page/i18n/hr.po create mode 100644 document_page/i18n/hu.po create mode 100644 document_page/i18n/id.po create mode 100644 document_page/i18n/it.po create mode 100644 document_page/i18n/ja.po create mode 100644 document_page/i18n/ko.po create mode 100644 document_page/i18n/lt.po create mode 100644 document_page/i18n/lv.po create mode 100644 document_page/i18n/mk.po create mode 100644 document_page/i18n/mn.po create mode 100644 document_page/i18n/nb.po create mode 100644 document_page/i18n/nl.po create mode 100644 document_page/i18n/nl_BE.po create mode 100644 document_page/i18n/pl.po create mode 100644 document_page/i18n/pt.po create mode 100644 document_page/i18n/pt_BR.po create mode 100644 document_page/i18n/ro.po create mode 100644 document_page/i18n/ru.po create mode 100644 document_page/i18n/sk.po create mode 100644 document_page/i18n/sl.po create mode 100644 document_page/i18n/sq.po create mode 100644 document_page/i18n/sr.po create mode 100644 document_page/i18n/sr@latin.po create mode 100644 document_page/i18n/sv.po create mode 100644 document_page/i18n/tlh.po create mode 100644 document_page/i18n/tr.po create mode 100644 document_page/i18n/uk.po create mode 100644 document_page/i18n/vi.po create mode 100644 document_page/i18n/zh_CN.po create mode 100644 document_page/i18n/zh_TW.po create mode 100644 document_page/security/document_page_security.xml create mode 100644 document_page/security/ir.model.access.csv create mode 100644 document_page/security/wiki_security.xml create mode 100644 document_page/static/src/css/document_page.css create mode 100644 document_page/test/document_page_test00.yml create mode 100644 document_page/web/__init__.py create mode 100644 document_page/web/controllers/__init__.py create mode 100644 document_page/web/controllers/wiki.py create mode 100644 document_page/web/locales/bg.po create mode 100644 document_page/web/locales/ca.po create mode 100644 document_page/web/locales/da.po create mode 100644 document_page/web/locales/de.po create mode 100644 document_page/web/locales/de_DE/LC_MESSAGES/javascript.po create mode 100644 document_page/web/locales/de_DE/LC_MESSAGES/messages.po create mode 100644 document_page/web/locales/es_CR.po create mode 100644 document_page/web/locales/es_ES/LC_MESSAGES/javascript.po create mode 100644 document_page/web/locales/es_ES/LC_MESSAGES/messages.po create mode 100644 document_page/web/locales/es_PY.po create mode 100644 document_page/web/locales/fr.po create mode 100644 document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po create mode 100644 document_page/web/locales/fr_FR/LC_MESSAGES/messages.po create mode 100644 document_page/web/locales/gl.po create mode 100644 document_page/web/locales/javascript.pot create mode 100644 document_page/web/locales/messages.pot create mode 100644 document_page/web/locales/ru.po create mode 100644 document_page/web/locales/sk.po create mode 100644 document_page/web/locales/tr.po create mode 100644 document_page/web/static/css/wiki.css create mode 100644 document_page/web/widgets/__init__.py create mode 100644 document_page/web/widgets/rss/__init__.py create mode 100755 document_page/web/widgets/rss/feedparser.py create mode 100644 document_page/web/widgets/templates/wiki.mako create mode 100644 document_page/web/widgets/wiki.py create mode 100644 document_page/web/widgets/wikimarkup/__init__.py create mode 100644 document_page/wizard/__init__.py create mode 100644 document_page/wizard/document_page_create_menu.py create mode 100644 document_page/wizard/document_page_create_menu_view.xml create mode 100644 document_page/wizard/document_page_show_diff.py create mode 100644 document_page/wizard/document_page_show_diff_view.xml create mode 100644 document_page/wizard/wiki_make_index.py create mode 100644 document_page/wizard/wiki_make_index_view.xml create mode 100644 document_page/wizard/wiki_wiki_page_open.py create mode 100644 document_page/wizard/wiki_wiki_page_open_view.xml diff --git a/document_page/__init__.py b/document_page/__init__.py new file mode 100644 index 00000000..7ce5f4b6 --- /dev/null +++ b/document_page/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +import document_page +import wizard + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py new file mode 100644 index 00000000..f08315bf --- /dev/null +++ b/document_page/__openerp__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +{ + 'name': 'Document Page', + 'version': '1.0.1', + 'category': 'Knowledge Management', + 'description': """ +Pages +===== +Web pages + """, + 'author': ['OpenERP SA'], + 'website': 'http://www.openerp.com/', + 'depends': ['knowledge'], + 'data': [ + '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', + ], + '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: diff --git a/document_page/data/wiki_main.xml b/document_page/data/wiki_main.xml new file mode 100644 index 00000000..223274ea --- /dev/null +++ b/document_page/data/wiki_main.xml @@ -0,0 +1,39 @@ + + + + + The OpenERP wiki + help, quick start, wiki, formatting + 0 + 1 + 0 + Initial Page + =The OpenERP wiki= +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] + + + + + + + diff --git a/document_page/data/wiki_quickstart.xml b/document_page/data/wiki_quickstart.xml new file mode 100644 index 00000000..f6ae59de --- /dev/null +++ b/document_page/data/wiki_quickstart.xml @@ -0,0 +1,116 @@ + + + + + Help - Using The Wiki + + + + Basic Wiki Editing + help, quick start, wiki, formatting + 0 + 1 + 1.1 + Initial Page + ==Basic Wiki Editing== +You can ''italicize text'' by putting 2 +apostrophes on each side. +3 apostrophes will embolden '''the text'''. +5 apostrophes will embolden and italicize +'''''the text'''''. +(4 apostrophes don't do anything +special -- there's just ''''one left +over''''.) + +You can ''italicize text'' by putting 2 +apostrophes on each side. + +3 apostrophes will embolden '''the text'''. + +5 apostrophes will embolden and italicize +'''''the text'''''. + +(4 apostrophes don't do anything special -- there's just ''''one left over''''.) + +==Links== +===Internal=== +You give the link as same as the wiki Page Title + +Go back to Main Page : [[The OpenERP wiki]] +===External=== +You can give link to the other Web page over the Internet easily [http://google.com Visit Google] +==Attachments== +===Images=== +You can get the External links easily + +img:http://images.google.co.in/intl/en_ALL/images/images_hp.gif + +==Play with OpenERP Records== +* edit:res.partner|False|Create New Partner +* edit:res.partner|China Export|Edit China Export +* edit:res.country|India|Edit Country - India + +==Working with Attachments== +* Download File : attach:document.doc + +==Unnumbered List== +* ''Unordered lists'' are easy to do: +** Start every line with a star. +*** More stars indicate a deeper level. +*: Previous item continues. +** A new line +* in a list +marks the end of the list. +*Of course you can start again. + +==Numbered List== +# ''Numbered lists'' are: +## Very organized +## Easy to follow +#: Previous item continues +A new line marks the end of the list. +# New numbering starts with 1 + +==Text Indents== +: A colon (:) indents a line or paragraph. +A newline starts a new paragraph. +: We use 1 colon to indent once. +:: We use 2 colons to indent twice. +::: 3 colons to indent 3 times, and so on. + +==Table== +<nowiki> +{| border="1" cellspacing="0" cellpadding="5" align="left" +! Web site +! Link +! Contact Email +|- +| '''OpenERP''' - ''Belgium'' +| [http://openerp.com] +| [mailto:sales AT tiny.be] +|} +</nowiki> + +{| border="1" cellspacing="0" cellpadding="5" align="left" +! Web site +! Link +! Contact Email +|- +| '''OpenERP''' - ''Belgium'' +| [http://openerp.com] +| [mailto:sales AT tiny.be] +|} +<br/> +<br/> +<br/> +<br/> +==Headings== +=1st Level Heading= +==2nd Level Heading== +===3rd Level Heading=== + + + + + + diff --git a/document_page/document_page.py b/document_page/document_page.py new file mode 100644 index 00000000..7f885018 --- /dev/null +++ b/document_page/document_page.py @@ -0,0 +1,133 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +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 += ["
  • "+ self._get_page_index(cr, uid, subpage) +"
  • "] + r = '' + if link: + r = '%s'%(page.id,page.name) + if index: + r += "
      " + "".join(index) + "
    " + 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: diff --git a/document_page/document_page_data.xml b/document_page/document_page_data.xml new file mode 100644 index 00000000..1cef6569 --- /dev/null +++ b/document_page/document_page_data.xml @@ -0,0 +1,41 @@ + + + + + The OpenERP wiki + help, quick start, wiki, formatting + 0 + 1 + Initial Page + ==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] + + + + + + + diff --git a/document_page/document_page_demo.xml b/document_page/document_page_demo.xml new file mode 100644 index 00000000..f779ea83 --- /dev/null +++ b/document_page/document_page_demo.xml @@ -0,0 +1,130 @@ + + + + + + + + OpenERP Features + category + +Summary of the feature + +Long explanation + +Conclusion + +Additional ressources + + + + + + OpenERP 6.1. Functional Demo + + + +
    +The news is out, OpenERP's latest version 6.1. is here. It's more
    +user-friendly, even more business oriented and efficient to manage your company
    +
    +How to discover the latest version 6.1.?
    +
    +Demo :
    +Online:
    +Download:
    +
    +We have also put together a functional demo that presents 6.1. Watch this video
    +to learn directly from us what OpenERP 6.1. can do for you. Share it in your
    +company, with your clients and implement it now for your business.
    +
    +

    Watch on Youtube!


    +
    +
    +
    +
    +]]> +
    +
    + + + Personalise Dashboards + + + +You like OpenERP, but feel like you want to personalise it more? Now, OpenERP
    +goes a step further and lets you customize your dashboard. Thanks to a new
    +feature that allows you to customize your dashboard by adding new boards of any
    +search view.
    +
    +

    How is it done?


    +
    +Step 1: access one search view
    +
    +Step 2: apply the filter you want to see at each connection to the application
    +(eg. on sales, manufacturing, etc)
    +
    +Step 3: add it into the dashboard in the same space where you can save the filter
    +
    +Step 4: choose the application you want it visible on and the name of the array
    +
    +Look at this simple example below from Purchase, where I want to put on the
    +application's dashboard "Purchases to Approve". After I access the search view
    +and apply the filter for "Purchases to Approve", I can add it immediately to my
    +Purchase dashboard.
    +
    +
    +
    +In less than a minute, the search view is visible on the dashboard
    +
    +
    +
    +Of course, you are free to delete what you don't need or like, but just in case
    +you change your mind there is a reset button to return to the default view.
    +
    +
    +]]> +
    +
    + + + Touchscreen Point of Sale + + + +The brand new OpenERP touchscreen point of sale available with 6.1 allows you
    +to manage your shop sales very easily. It's fully web based so that you don't
    +have to install or deploy any software and all the sales shops can be easily
    +consolidated. It works in connected and disconnected modes so that you can
    +continue to sell if you lose your internet connection.
    +
    +
    +
    +

    Here's a summary of its main features and benefits:


    +
    +100% WEB based
    +
    +
    • available for any touchscreen device (ipod, ipad, any tablet)mobile (with portable devices)
    • no installation required
    • no synchronization needed, completely integrated
    • continue working even when your connection is down if you close your browser, data won't be lost
    • fully web based with a clean interface smart interface

    +
    +You have different options to select your products. You can do it through the
    +barcode reader, just browse through the categories you have put in place (ie.
    +drinks, snacks, meals, etc.), or text search in case neither of the other
    +options work for you. If you need to use the POS for your restaurant, for
    +example, your employees can record at the same time multiple tickets without
    +having to wait to do one transaction at a time. Along, to facilitate payment,
    +the application allows multiple payment methods.
    +
    +The POS application is so simple and accessible to use that your shop or
    +restaurant will never need any other tool to manage orders. Due to its smart
    +and user-friendly interface you don't need any training to learn how to use it.
    +Think of it as an out-of-the-box solution to boost your business' productivity.
    +
    +]]> +
    +
    + +
    +
    diff --git a/document_page/document_page_view.xml b/document_page/document_page_view.xml new file mode 100644 index 00000000..2ffc9059 --- /dev/null +++ b/document_page/document_page_view.xml @@ -0,0 +1,162 @@ + + + + + + + + + document.page.tree + document.page + child_ids + 100 + + + + + + + + + + + document.page.list + document.page + + + + + + + + + + + + + document.page.form + document.page + +
    + +

    + + + + + + + + + + +
    +
    + +
    + +
    + +
    +
    + + + document.page.search + document.page + + + + + + + + + + + + + + + + Pages + document.page + [('type','=','content')] + {'default_type': 'content'} + form + tree,form + + + +

    + Click to create a new web page. +

    +
    +
    + + + Category + document.page + [('type','=','category')] + {'default_type': 'category'} + form + tree,form + + + + + + + + document.page.history.tree + document.page.history + + + + + + + + + + + document.page.history.form + document.page.history + +
    +
    + + + Page history + document.page.history + form + tree,form + + + + + +
    +
    diff --git a/document_page/i18n/ar.po b/document_page/i18n/ar.po new file mode 100644 index 00000000..10d60f6b --- /dev/null +++ b/document_page/i18n/ar.po @@ -0,0 +1,269 @@ +# 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-27 21:39+0000\n" +"Last-Translator: gehad shaat \n" +"Language-Team: Arabic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "الفئة" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "المشارك الاخير" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "الكاتب" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "القائمة" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "تاريخ الصفحة" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "المحتوى" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "تجميع حسب..." + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "الاسم" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "النوع" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "تم التعديل عليها بواسطة" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "أو" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "نوع الصفحة" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "معلومات القائمة" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/bg.po b/document_page/i18n/bg.po new file mode 100644 index 00000000..524bd923 --- /dev/null +++ b/document_page/i18n/bg.po @@ -0,0 +1,269 @@ +# Bulgarian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bulgarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Автор" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Меню" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Съдържание" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "Групиране по..." + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Заглавие" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "Информация за меню" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Дата" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Страници" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Надменю" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Дата на редакция" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Резюме" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/bs.po b/document_page/i18n/bs.po new file mode 100644 index 00000000..0c2cb2d9 --- /dev/null +++ b/document_page/i18n/bs.po @@ -0,0 +1,269 @@ +# Bosnian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bosnian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/ca.po b/document_page/i18n/ca.po new file mode 100644 index 00000000..ff1322a6 --- /dev/null +++ b/document_page/i18n/ca.po @@ -0,0 +1,269 @@ +# Catalan 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Data modificació" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/cs.po b/document_page/i18n/cs.po new file mode 100644 index 00000000..71145a88 --- /dev/null +++ b/document_page/i18n/cs.po @@ -0,0 +1,269 @@ +# Czech 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Datum změny" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/da.po b/document_page/i18n/da.po new file mode 100644 index 00000000..b0ff2781 --- /dev/null +++ b/document_page/i18n/da.po @@ -0,0 +1,269 @@ +# 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/de.po b/document_page/i18n/de.po new file mode 100644 index 00000000..261a6d5a --- /dev/null +++ b/document_page/i18n/de.po @@ -0,0 +1,272 @@ +# German 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2014-02-02 18:48+0000\n" +"Last-Translator: Ralf Hilgenstock \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-02-03 05:55+0000\n" +"X-Generator: Launchpad (build 16916)\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 "Seitenhistorie" + +#. 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 +#: view:document.page:0 +msgid "Name" +msgstr "Bezeichnung" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Obermenü" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Änderung am" + +#. 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 eine und maximal zwei Revisionen auswählen!" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Seitenhistorie" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Zusammenfassung" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "z.B. Es war einmal..." + +#. module: document_page +#: view:document.page.history:0 +msgid "Document History" +msgstr "Dokumentenhistorie" + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "Menü erstellen" + +#. module: document_page +#: field:document.page,display_content:0 +msgid "Displayed Content" +msgstr "Angezeigter 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 "Kindelemente" + +#~ msgid "Create web pages" +#~ msgstr "Webseiten erstellen" diff --git a/document_page/i18n/document_page.pot b/document_page/i18n/document_page.pot new file mode 100644 index 00000000..8139bba8 --- /dev/null +++ b/document_page/i18n/document_page.pot @@ -0,0 +1,273 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * document_page +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-08-14 00:10+0000\n" +"PO-Revision-Date: 2014-08-14 00:10+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 +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/wiki_make_index.py:52 +#, python-format +msgid "There is no section in this Page." +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +msgid "Document History" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 +#: code:addons/document_page/wizard/wiki_make_index.py:52 +#, 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 "" + diff --git a/document_page/i18n/el.po b/document_page/i18n/el.po new file mode 100644 index 00000000..68f146f9 --- /dev/null +++ b/document_page/i18n/el.po @@ -0,0 +1,269 @@ +# Greek 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Δημιουργός" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Μενού" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Περιεχόμενα" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Τίτλος" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "Πληροφορίες Μενού" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Ημερομηνία" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Σελίδες" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Μενού Προέλευσης" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Ημερομηνία Τροποποίησης" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Περίληψη" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/es.po b/document_page/i18n/es.po new file mode 100644 index 00000000..f953ef74 --- /dev/null +++ b/document_page/i18n/es.po @@ -0,0 +1,279 @@ +# Spanish 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-18 07:39+0000\n" +"Last-Translator: Pedro Manuel Baeza \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Nombre" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú padre" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Fecha de modificación" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" +"¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historial de página" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumen" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "Por ejemplo, Érase una vez..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +"Pulse para crear una nueva página web.\n" +"

    \n" +" " + +#. module: document_page +#: view:document.page.create.menu:0 +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +msgid "Create Menu" +msgstr "Crear menú" + +#. module: document_page +#: field:document.page,display_content:0 +msgid "Displayed Content" +msgstr "Contenido mostrado" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "Warning!" +msgstr "¡Advertencia!" + +#. module: document_page +#: view:document.page.create.menu:0 +#: view:wizard.document.page.history.show_diff:0 +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 +msgid "Diff" +msgstr "Dif." + +#. module: document_page +#: view:document.page:0 +msgid "Document Type" +msgstr "Tipo de documento" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Hijos" + +#~ msgid "Create web pages" +#~ msgstr "Crear páginas Web" diff --git a/document_page/i18n/es_AR.po b/document_page/i18n/es_AR.po new file mode 100644 index 00000000..180e3281 --- /dev/null +++ b/document_page/i18n/es_AR.po @@ -0,0 +1,494 @@ +# 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 \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" diff --git a/document_page/i18n/es_CR.po b/document_page/i18n/es_CR.po new file mode 100644 index 00000000..79f50eaa --- /dev/null +++ b/document_page/i18n/es_CR.po @@ -0,0 +1,520 @@ +# 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 \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" +#~ " " diff --git a/document_page/i18n/es_MX.po b/document_page/i18n/es_MX.po new file mode 100644 index 00000000..13ac328d --- /dev/null +++ b/document_page/i18n/es_MX.po @@ -0,0 +1,535 @@ +# 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 \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." diff --git a/document_page/i18n/es_VE.po b/document_page/i18n/es_VE.po new file mode 100644 index 00000000..13ac328d --- /dev/null +++ b/document_page/i18n/es_VE.po @@ -0,0 +1,535 @@ +# 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 \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." diff --git a/document_page/i18n/et.po b/document_page/i18n/et.po new file mode 100644 index 00000000..f09acea6 --- /dev/null +++ b/document_page/i18n/et.po @@ -0,0 +1,269 @@ +# Estonian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Ülemmenüü" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Muutmise kuupäev" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/fi.po b/document_page/i18n/fi.po new file mode 100644 index 00000000..f947c62e --- /dev/null +++ b/document_page/i18n/fi.po @@ -0,0 +1,269 @@ +# Finnish 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-11-18 05:42+0000\n" +"Last-Translator: Harri Luuppala \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 "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 "Dokumentin sivu" + +#. 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 "Malli" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "käytetään sisältömallina kaikille tämän kategorian uusille sivuille." + +#. 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 "Tyyppi" + +#. 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 "Muuttaja" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "tai" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Sivun tyyppi" + +#. 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 "Dokumentin sivuhistoria" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Sivujen historia" + +#. 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 "Kategoriat" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "Nimi" + +#. 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,write_date:0 +msgid "Modification Date" +msgstr "Muokkauspäivä" + +#. 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 "Valitse tasan yksi tai kaksi historiaversiota vertailuun." + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Sivuhistoria" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Yhteenveto" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "esim. Olipa kerran..." + +#. module: document_page +#: view:document.page.history:0 +msgid "Document History" +msgstr "Dokumentin historia" + +#. 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 "Sivu" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historia" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "Luo valikko" + +#. module: document_page +#: field:document.page,display_content:0 +msgid "Displayed Content" +msgstr "Näytetty sisältö" + +#. 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 "Varoitus!" + +#. 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 "Dokumenttityyppi" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" diff --git a/document_page/i18n/fr.po b/document_page/i18n/fr.po new file mode 100644 index 00000000..c0afb704 --- /dev/null +++ b/document_page/i18n/fr.po @@ -0,0 +1,280 @@ +# French 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-08-22 07:35+0000\n" +"Last-Translator: Florian Hatat \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Nom" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menu Parent" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Date de modification" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "Ex: Il était une fois..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +"Cliquez pour créer une nouvelle page Web.\n" +"

    \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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Créer des pages Web" diff --git a/document_page/i18n/gl.po b/document_page/i18n/gl.po new file mode 100644 index 00000000..4b2ffa13 --- /dev/null +++ b/document_page/i18n/gl.po @@ -0,0 +1,269 @@ +# Galician 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Data de modificación" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/hr.po b/document_page/i18n/hr.po new file mode 100644 index 00000000..fca31882 --- /dev/null +++ b/document_page/i18n/hr.po @@ -0,0 +1,274 @@ +# Croatian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-14 12:05+0000\n" +"Last-Translator: Davor Bojkić \n" +"Language-Team: Croatian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Naziv" + +#. 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,write_date:0 +msgid "Modification Date" +msgstr "Datum promjene" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "npr. Bilo jednom..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Kreiraj web stranice" diff --git a/document_page/i18n/hu.po b/document_page/i18n/hu.po new file mode 100644 index 00000000..6cf5546f --- /dev/null +++ b/document_page/i18n/hu.po @@ -0,0 +1,279 @@ +# Hungarian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-10-12 11:51+0000\n" +"Last-Translator: krnkris \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: field:document.page,display_content:0 +msgid "Displayed Content" +msgstr "Megjelenített tartalom" + +#. 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 +#: view:document.page:0 +msgid "Name" +msgstr "Név" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Főmenü" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Módosítás dátuma" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "pl. Egyszer volt..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Kattintson új weboldal létrehozásához.\n" +"

    \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 "Menü létrehozás" + +#. 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" + +#~ msgid "Create web pages" +#~ msgstr "Weboldalak létrehozása" diff --git a/document_page/i18n/id.po b/document_page/i18n/id.po new file mode 100644 index 00000000..d5826508 --- /dev/null +++ b/document_page/i18n/id.po @@ -0,0 +1,269 @@ +# Indonesian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/it.po b/document_page/i18n/it.po new file mode 100644 index 00000000..242f3cf5 --- /dev/null +++ b/document_page/i18n/it.po @@ -0,0 +1,276 @@ +# Italian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menu Superiore" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data di Modifica" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Crea pagine web" diff --git a/document_page/i18n/ja.po b/document_page/i18n/ja.po new file mode 100644 index 00000000..71473206 --- /dev/null +++ b/document_page/i18n/ja.po @@ -0,0 +1,269 @@ +# 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "最終貢献者" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "著者" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "メニュー" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "ページ履歴" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "コンテンツ" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "グループ化…" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "タイトル" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "メニュー作成ウィザード" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "メニュー情報" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "日付" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "差分" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "ページ" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "親メニュー" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "変更日" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "要約" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/ko.po b/document_page/i18n/ko.po new file mode 100644 index 00000000..066c7ad8 --- /dev/null +++ b/document_page/i18n/ko.po @@ -0,0 +1,269 @@ +# Korean 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "저자" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "메뉴" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "컨텐트" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "제목" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "메뉴 정보" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "날짜" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "페이지" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "부모 메뉴" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "수정 날짜" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "생성 날짜" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "요약" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/lt.po b/document_page/i18n/lt.po new file mode 100644 index 00000000..fd02906a --- /dev/null +++ b/document_page/i18n/lt.po @@ -0,0 +1,269 @@ +# Lithuanian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Modifikavimo data" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/lv.po b/document_page/i18n/lv.po new file mode 100644 index 00000000..b9d62788 --- /dev/null +++ b/document_page/i18n/lv.po @@ -0,0 +1,269 @@ +# Latvian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Izmaiņu Datums" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/mk.po b/document_page/i18n/mk.po new file mode 100644 index 00000000..9fae4bed --- /dev/null +++ b/document_page/i18n/mk.po @@ -0,0 +1,276 @@ +# 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 , 2013. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-31 13:21+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" +"Language: mk\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 +#: view:document.page:0 +msgid "Name" +msgstr "Име" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Мени родител" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Датум на измена" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" +"Треба да селектиарте минимум една или максимум две ревизии на историја!" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Историја на страница" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Резиме" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "на пр. Едно време..." + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "Деца" + +#~ msgid "Create web pages" +#~ msgstr "Креирај веб странци" diff --git a/document_page/i18n/mn.po b/document_page/i18n/mn.po new file mode 100644 index 00000000..3da236d8 --- /dev/null +++ b/document_page/i18n/mn.po @@ -0,0 +1,272 @@ +# Mongolian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2014-01-11 14:09+0000\n" +"Last-Translator: gobi \n" +"Language-Team: Mongolian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-01-12 05:48+0000\n" +"X-Generator: Launchpad (build 16890)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Ангилал" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Сүүлийн Хувь Нэмэр оруулагч" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Зохиогч" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Цэс" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Баримтын Хуудас" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Хуудасны Түүх" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Агуулга" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "Бүлэглэх..." + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "Загвар" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Гарчиг" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Меню үүсгэх харилцах цонх" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Төрөл" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "эсвэл" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Хуудасны төрөл" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "Цэсний мэдээлэл" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Баримтын Хуудасны Түүх" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Хуудсуудын Түүх" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Огноо" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "Зөрүү" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Хуудсууд" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Ангилалууд" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "Нэр" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Толгой цэс" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Зассан огноо" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Хуудсын Түүх" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Хураангуй" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" + +#~ msgid "Create web pages" +#~ msgstr "Веб хуудсууд үүсгэх" diff --git a/document_page/i18n/nb.po b/document_page/i18n/nb.po new file mode 100644 index 00000000..ed7a6d49 --- /dev/null +++ b/document_page/i18n/nb.po @@ -0,0 +1,269 @@ +# Norwegian Bokmal 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Dato for siste endring" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/nl.po b/document_page/i18n/nl.po new file mode 100644 index 00000000..8ed4fb01 --- /dev/null +++ b/document_page/i18n/nl.po @@ -0,0 +1,279 @@ +# Dutch 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-08 11:21+0000\n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Naam" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Hoofdmenu" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Wijzigingsdatum" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "bijv. Op enig moment..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Klik voor het aanmaken van een web pagina.\n" +"

    \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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Webpagina's aanmaken" diff --git a/document_page/i18n/nl_BE.po b/document_page/i18n/nl_BE.po new file mode 100644 index 00000000..b7939a66 --- /dev/null +++ b/document_page/i18n/nl_BE.po @@ -0,0 +1,440 @@ +# 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) \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 !" diff --git a/document_page/i18n/pl.po b/document_page/i18n/pl.po new file mode 100644 index 00000000..29b255d0 --- /dev/null +++ b/document_page/i18n/pl.po @@ -0,0 +1,274 @@ +# Polish 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Polish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. 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,write_date:0 +msgid "Modification Date" +msgstr "Data modyfikacji" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Twórz strony web" diff --git a/document_page/i18n/pt.po b/document_page/i18n/pt.po new file mode 100644 index 00000000..5cb9b03c --- /dev/null +++ b/document_page/i18n/pt.po @@ -0,0 +1,272 @@ +# Portuguese 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-01-18 11:30+0000\n" +"Last-Translator: Rui Franco (multibase.pt) \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. 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,write_date:0 +msgid "Modification Date" +msgstr "Data de Modificação" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" + +#~ msgid "Create web pages" +#~ msgstr "Cria páginas na internet" diff --git a/document_page/i18n/pt_BR.po b/document_page/i18n/pt_BR.po new file mode 100644 index 00000000..a4482b7f --- /dev/null +++ b/document_page/i18n/pt_BR.po @@ -0,0 +1,278 @@ +# Brazilian Portuguese 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-07-18 19:55+0000\n" +"Last-Translator: Claudio de Araujo Santos \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Nome" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menu Superior" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data de Modificação" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "ex. Era uma vez...." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Clique para criar uma nova página web.\n" +" \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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Criar páginas web" diff --git a/document_page/i18n/ro.po b/document_page/i18n/ro.po new file mode 100644 index 00000000..b52ea7ca --- /dev/null +++ b/document_page/i18n/ro.po @@ -0,0 +1,275 @@ +# Romanian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-07 18:49+0000\n" +"Last-Translator: ERPSystems.ro \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Nume" + +#. 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,write_date:0 +msgid "Modification Date" +msgstr "Data modificării" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "de exemplu A fost odata..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Creeaza pagini web" diff --git a/document_page/i18n/ru.po b/document_page/i18n/ru.po new file mode 100644 index 00000000..4a6eb9c0 --- /dev/null +++ b/document_page/i18n/ru.po @@ -0,0 +1,278 @@ +# Russian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-07-16 13:42+0000\n" +"Last-Translator: Chertykov Denis \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Название" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Родительское меню" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Дата изменения" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "Вы должны выбрать одну или две версии в истории!" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "История страницы" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Итого" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "например Однажды, давным-давно..." + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Нажмите, чтобы создать новую веб-страницу.\n" +"

    \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 "Создать меню" + +#. 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 "Потомки" + +#~ msgid "Create web pages" +#~ msgstr "Создание веб-страниц" diff --git a/document_page/i18n/sk.po b/document_page/i18n/sk.po new file mode 100644 index 00000000..2e315fa4 --- /dev/null +++ b/document_page/i18n/sk.po @@ -0,0 +1,269 @@ +# Slovak 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Dátum zmeny" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/sl.po b/document_page/i18n/sl.po new file mode 100644 index 00000000..bbf26aba --- /dev/null +++ b/document_page/i18n/sl.po @@ -0,0 +1,274 @@ +# Slovenian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-11-10 09:04+0000\n" +"Last-Translator: Darja Zorman \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 "" + +#. 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 "Stran dokumenta" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Zgodovina strani" + +#. 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 "Predloga" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" +"ki bo uporabljeno kot vsebinska predloga za vse nove strani v tej 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 "čarovnik za kreiranje menija" + +#. 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 "Spremenil" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "ali" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tip strani" + +#. 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 "Zgodovina strani dokumenta" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Zgodovina strani" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "V reviziji ni sprememb." + +#. 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 "Strani" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategorije" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "Naziv" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Nadmenu" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Datum spremembe" + +#. 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 "Izbrati morate vsaj eno ali največ dve pretekli reviziji!" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Zgodovina strani" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "npr. Nekoč pred davnimi časi..." + +#. module: document_page +#: view:document.page.history:0 +msgid "Document History" +msgstr "Zgodovina dokumenta" + +#. 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 "Stran" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Zgodovina" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Kliknite za kreiranje nove spletne strani.\n" +"

    \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 "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 "" diff --git a/document_page/i18n/sq.po b/document_page/i18n/sq.po new file mode 100644 index 00000000..cce84e71 --- /dev/null +++ b/document_page/i18n/sq.po @@ -0,0 +1,269 @@ +# Albanian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Albanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/sr.po b/document_page/i18n/sr.po new file mode 100644 index 00000000..c5c3ca12 --- /dev/null +++ b/document_page/i18n/sr.po @@ -0,0 +1,269 @@ +# Serbian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Serbian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Datum Promene" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/sr@latin.po b/document_page/i18n/sr@latin.po new file mode 100644 index 00000000..2e1a810e --- /dev/null +++ b/document_page/i18n/sr@latin.po @@ -0,0 +1,269 @@ +# Serbian Latin 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Serbian Latin \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "Datum Promene" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "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 "" diff --git a/document_page/i18n/sv.po b/document_page/i18n/sv.po new file mode 100644 index 00000000..a16fd2c7 --- /dev/null +++ b/document_page/i18n/sv.po @@ -0,0 +1,273 @@ +# Swedish 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2014-03-31 21:19+0000\n" +"Last-Translator: Anders Wallenquist \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-04-01 06:52+0000\n" +"X-Generator: Launchpad (build 16967)\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 "Senaste författare" + +#. 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 "Dokumentsida" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Sidhistorik" + +#. 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 "Gruppera på..." + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "Mall" + +#. 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 "Skapa guide-meny" + +#. 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 "Ändrad av" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "eller" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Sidtyp" + +#. 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 "Dokumentets sidhistorik" + +#. 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 "Skillnad" + +#. 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 "Kategorier" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "Namn" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Huvudmeny" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Ändringsdatum" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +msgid "Document History" +msgstr "Dokumenthistorik" + +#. 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 "Sida" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historia" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Klicka för att skapa en ny webbsida.\n" +"

    \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 "Skapa meny" + +#. module: document_page +#: field:document.page,display_content:0 +msgid "Displayed Content" +msgstr "Visa innehåll" + +#. 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 "Varning!" + +#. 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 "Dokumenttyp" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Underordnade" diff --git a/document_page/i18n/tlh.po b/document_page/i18n/tlh.po new file mode 100644 index 00000000..0477d98e --- /dev/null +++ b/document_page/i18n/tlh.po @@ -0,0 +1,269 @@ +# Klingon 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Klingon \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/tr.po b/document_page/i18n/tr.po new file mode 100644 index 00000000..7c3d7a84 --- /dev/null +++ b/document_page/i18n/tr.po @@ -0,0 +1,277 @@ +# Turkish 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-20 18:21+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "Adı" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Ana Menü" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Değiştirilme Tarihi" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "e.g. Bir zamanlar..." + +#. 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +" Yeni bir web sayfası oluşturmak için tıklayın.\n" +"

    \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 "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" + +#~ msgid "Create web pages" +#~ msgstr "Web sayfaları oluşturun" diff --git a/document_page/i18n/uk.po b/document_page/i18n/uk.po new file mode 100644 index 00000000..fbbb6d44 --- /dev/null +++ b/document_page/i18n/uk.po @@ -0,0 +1,269 @@ +# Ukrainian 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ukrainian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Автор" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Меню" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Вміст" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Заголовок" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "Інформація Меню" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Дата" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Сторінки" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Батьківське Меню" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Дата Зміни" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "Створено" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Підсумок" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/vi.po b/document_page/i18n/vi.po new file mode 100644 index 00000000..10e1f891 --- /dev/null +++ b/document_page/i18n/vi.po @@ -0,0 +1,269 @@ +# Vietnamese 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +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,write_date:0 +msgid "Modification Date" +msgstr "" + +#. 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 +#: view:document.page:0 +msgid "e.g. Once upon a time..." +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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/i18n/zh_CN.po b/document_page/i18n/zh_CN.po new file mode 100644 index 00000000..2b760c85 --- /dev/null +++ b/document_page/i18n/zh_CN.po @@ -0,0 +1,272 @@ +# Chinese (Simplified) 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "类别" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "最近的贡献者" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "作者" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "菜单" + +#. module: document_page +#: view:document.page:0 +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "页面编辑日志" + +#. module: document_page +#: view:document.page:0 +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "内容" + +#. module: document_page +#: view:document.page:0 +msgid "Group By..." +msgstr "分组..." + +#. module: document_page +#: view:document.page:0 +msgid "Template" +msgstr "模版" + +#. module: document_page +#: view:document.page:0 +msgid "" +"that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "标题" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "向导创建菜单" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "类型" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "修改者" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "or" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:0 +msgid "Menu Information" +msgstr "菜单信息" + +#. module: document_page +#: view:document.page.history:0 +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:129 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "日期" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 +msgid "Difference" +msgstr "差异" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "页面" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "分类" + +#. module: document_page +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "上级菜单" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "修改日期" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "创建在" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "摘要" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" + +#~ msgid "Create web pages" +#~ msgstr "创建网页" diff --git a/document_page/i18n/zh_TW.po b/document_page/i18n/zh_TW.po new file mode 100644 index 00000000..c6870094 --- /dev/null +++ b/document_page/i18n/zh_TW.po @@ -0,0 +1,269 @@ +# Chinese (Traditional) 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 , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2012-12-21 23:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Chinese (Traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\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 +#: view:document.page:0 +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "上級選單" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "修改日期" + +#. module: document_page +#: field:document.page,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "摘要" + +#. module: document_page +#: view:document.page:0 +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: 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 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +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 "" diff --git a/document_page/security/document_page_security.xml b/document_page/security/document_page_security.xml new file mode 100644 index 00000000..6d85d054 --- /dev/null +++ b/document_page/security/document_page_security.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/document_page/security/ir.model.access.csv b/document_page/security/ir.model.access.csv new file mode 100644 index 00000000..2b2fd18c --- /dev/null +++ b/document_page/security/ir.model.access.csv @@ -0,0 +1,4 @@ +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 diff --git a/document_page/security/wiki_security.xml b/document_page/security/wiki_security.xml new file mode 100644 index 00000000..ca9d34ae --- /dev/null +++ b/document_page/security/wiki_security.xml @@ -0,0 +1,12 @@ + + + + + + User + + + + + + diff --git a/document_page/static/src/css/document_page.css b/document_page/static/src/css/document_page.css new file mode 100644 index 00000000..ddbbcffd --- /dev/null +++ b/document_page/static/src/css/document_page.css @@ -0,0 +1,12 @@ +.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} + diff --git a/document_page/test/document_page_test00.yml b/document_page/test/document_page_test00.yml new file mode 100644 index 00000000..3c8dba80 --- /dev/null +++ b/document_page/test/document_page_test00.yml @@ -0,0 +1,54 @@ +- + 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) + + diff --git a/document_page/web/__init__.py b/document_page/web/__init__.py new file mode 100644 index 00000000..6fb28f7f --- /dev/null +++ b/document_page/web/__init__.py @@ -0,0 +1,4 @@ +import widgets +import controllers + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/controllers/__init__.py b/document_page/web/controllers/__init__.py new file mode 100644 index 00000000..e1edf0f0 --- /dev/null +++ b/document_page/web/controllers/__init__.py @@ -0,0 +1,3 @@ +import wiki + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/controllers/wiki.py b/document_page/web/controllers/wiki.py new file mode 100644 index 00000000..2f147827 --- /dev/null +++ b/document_page/web/controllers/wiki.py @@ -0,0 +1,65 @@ +############################################################################### +# +# Copyright (C) 2007-TODAY Tiny ERP Pvt Ltd. All Rights Reserved. +# +# $Id$ +# +# Developed by Tiny (http://openerp.com) and Axelor (http://axelor.com). +# +# The OpenERP web client is distributed under the "OpenERP Public License". +# It's based on Mozilla Public License Version (MPL) 1.1 with following +# restrictions: +# +# - All names, links and logos of Tiny, OpenERP and Axelor must be +# kept as in original distribution without any changes in all software +# screens, especially in start-up page and the software header, even if +# the application source code has been changed or updated or code has been +# added. +# +# - All distributions of the software must keep source code with OEPL. +# +# - All integrations to any other software must keep source code with OEPL. +# +# If you need commercial licence to remove this kind of restriction please +# contact us. +# +# You can see the MPL licence at: http://www.mozilla.org/MPL/MPL-1.1.html +# +############################################################################### +import base64 + +import cherrypy + +import openobject +from openobject.tools import expose + +from openerp.controllers import SecuredController + + +class WikiView(SecuredController): + _cp_path = "/wiki/wiki" + + def get_attachment(self, **kwargs): + attachments = openobject.rpc.RPCProxy('ir.attachment') + file_name = kwargs.get('file').replace("'", '').strip() + id = kwargs.get('id').strip() + + ids = attachments.search([('datas_fname', '=', file_name), + ('res_model', '=', 'wiki.wiki'), + ('res_id', '=', id)]) + + res = attachments.read(ids, ['datas'])[0].get('datas') + return res, file_name + + @expose(content_type='application/octet') + def getImage(self, *kw, **kws): + res, _ = self.get_attachment(**kws) + return base64.decodestring(res) + + @expose(content_type='application/octet') + def getfile(self, *kw, **kws): + res, file_name = self.get_attachment(**kws) + cherrypy.response.headers['Content-Disposition'] = 'filename="%s"' % (file_name,) + return base64.decodestring(res) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/locales/bg.po b/document_page/web/locales/bg.po new file mode 100644 index 00000000..d331ed5d --- /dev/null +++ b/document_page/web/locales/bg.po @@ -0,0 +1,22 @@ +# Bulgarian 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-02-11 01:13+0000\n" +"Last-Translator: Dimitar Markov \n" +"Language-Team: Bulgarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" +"X-Generator: Launchpad (build 12351)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Съдържание" diff --git a/document_page/web/locales/ca.po b/document_page/web/locales/ca.po new file mode 100644 index 00000000..a946dab8 --- /dev/null +++ b/document_page/web/locales/ca.po @@ -0,0 +1,22 @@ +# Catalan 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-03-12 20:33+0000\n" +"Last-Translator: mgaja (GrupoIsep.com) \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-13 06:16+0000\n" +"X-Generator: Launchpad (build 12559)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Índex" diff --git a/document_page/web/locales/da.po b/document_page/web/locales/da.po new file mode 100644 index 00000000..35d12ed6 --- /dev/null +++ b/document_page/web/locales/da.po @@ -0,0 +1,22 @@ +# Danish 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-04-29 12:05+0000\n" +"Last-Translator: Hans Henrik Gabelgaard \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-04-30 06:08+0000\n" +"X-Generator: Launchpad (build 12758)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Indholdsfortegnelse" diff --git a/document_page/web/locales/de.po b/document_page/web/locales/de.po new file mode 100644 index 00000000..8718cd97 --- /dev/null +++ b/document_page/web/locales/de.po @@ -0,0 +1,22 @@ +# German 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-02-11 11:54+0000\n" +"Last-Translator: Ferdinand @ Camptocamp \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" +"X-Generator: Launchpad (build 12351)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Inhaltsverzeichnis" diff --git a/document_page/web/locales/de_DE/LC_MESSAGES/javascript.po b/document_page/web/locales/de_DE/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..ea8fd699 --- /dev/null +++ b/document_page/web/locales/de_DE/LC_MESSAGES/javascript.po @@ -0,0 +1,20 @@ +# German (Germany) translations for PROJECT. +# Copyright (C) 2009 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2009-11-18 17:21+0530\n" +"PO-Revision-Date: 2010-08-02 17:53+0530\n" +"Last-Translator: FULL NAME \n" +"Language-Team: de_DE \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + diff --git a/document_page/web/locales/de_DE/LC_MESSAGES/messages.po b/document_page/web/locales/de_DE/LC_MESSAGES/messages.po new file mode 100644 index 00000000..79b06791 --- /dev/null +++ b/document_page/web/locales/de_DE/LC_MESSAGES/messages.po @@ -0,0 +1,24 @@ +# German (Germany) translations for PROJECT. +# Copyright (C) 2009 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2009-11-18 17:21+0530\n" +"PO-Revision-Date: 2010-08-02 17:53+0530\n" +"Last-Translator: FULL NAME \n" +"Language-Team: de_DE \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "" + diff --git a/document_page/web/locales/es_CR.po b/document_page/web/locales/es_CR.po new file mode 100644 index 00000000..d64a49bc --- /dev/null +++ b/document_page/web/locales/es_CR.po @@ -0,0 +1,23 @@ +# Translations template for PROJECT. +# Copyright (C) 2010 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2012-02-08 03:00-0600\n" +"Last-Translator: Carlos Vásquez - CLEARCORP \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "" + diff --git a/document_page/web/locales/es_ES/LC_MESSAGES/javascript.po b/document_page/web/locales/es_ES/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..0c44218f --- /dev/null +++ b/document_page/web/locales/es_ES/LC_MESSAGES/javascript.po @@ -0,0 +1,20 @@ +# Spanish (Spain) translations for PROJECT. +# Copyright (C) 2009 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2009-11-18 17:21+0530\n" +"PO-Revision-Date: 2010-08-02 17:53+0530\n" +"Last-Translator: FULL NAME \n" +"Language-Team: es_ES \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + diff --git a/document_page/web/locales/es_ES/LC_MESSAGES/messages.po b/document_page/web/locales/es_ES/LC_MESSAGES/messages.po new file mode 100644 index 00000000..72f8c72b --- /dev/null +++ b/document_page/web/locales/es_ES/LC_MESSAGES/messages.po @@ -0,0 +1,24 @@ +# Spanish (Spain) translations for PROJECT. +# Copyright (C) 2009 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2009-11-18 17:21+0530\n" +"PO-Revision-Date: 2010-08-02 17:53+0530\n" +"Last-Translator: FULL NAME \n" +"Language-Team: es_ES \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "" + diff --git a/document_page/web/locales/es_PY.po b/document_page/web/locales/es_PY.po new file mode 100644 index 00000000..c76f7a33 --- /dev/null +++ b/document_page/web/locales/es_PY.po @@ -0,0 +1,22 @@ +# Spanish (Paraguay) 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-03-21 16:31+0000\n" +"Last-Translator: fadel \n" +"Language-Team: Spanish (Paraguay) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-22 06:23+0000\n" +"X-Generator: Launchpad (build 12559)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Tabla de Contenido" diff --git a/document_page/web/locales/fr.po b/document_page/web/locales/fr.po new file mode 100644 index 00000000..18a1611d --- /dev/null +++ b/document_page/web/locales/fr.po @@ -0,0 +1,22 @@ +# French 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-02-11 20:16+0000\n" +"Last-Translator: lolivier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" +"X-Generator: Launchpad (build 12351)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Table des matières" diff --git a/document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po b/document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..31f9c5ed --- /dev/null +++ b/document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po @@ -0,0 +1,20 @@ +# French (France) translations for PROJECT. +# Copyright (C) 2009 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2009-11-18 17:21+0530\n" +"PO-Revision-Date: 2010-08-02 17:53+0530\n" +"Last-Translator: FULL NAME \n" +"Language-Team: fr_FR \n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + diff --git a/document_page/web/locales/fr_FR/LC_MESSAGES/messages.po b/document_page/web/locales/fr_FR/LC_MESSAGES/messages.po new file mode 100644 index 00000000..181738f7 --- /dev/null +++ b/document_page/web/locales/fr_FR/LC_MESSAGES/messages.po @@ -0,0 +1,24 @@ +# French (France) translations for PROJECT. +# Copyright (C) 2009 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2009-11-18 17:21+0530\n" +"PO-Revision-Date: 2010-08-02 17:53+0530\n" +"Last-Translator: FULL NAME \n" +"Language-Team: fr_FR \n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "" + diff --git a/document_page/web/locales/gl.po b/document_page/web/locales/gl.po new file mode 100644 index 00000000..645a5607 --- /dev/null +++ b/document_page/web/locales/gl.po @@ -0,0 +1,22 @@ +# Galician 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-03-02 23:19+0000\n" +"Last-Translator: Santi (Pexego) \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-03 06:01+0000\n" +"X-Generator: Launchpad (build 12351)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Índice" diff --git a/document_page/web/locales/javascript.pot b/document_page/web/locales/javascript.pot new file mode 100644 index 00000000..725ce7a4 --- /dev/null +++ b/document_page/web/locales/javascript.pot @@ -0,0 +1,19 @@ +# Translations template for PROJECT. +# Copyright (C) 2010 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2010. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + diff --git a/document_page/web/locales/messages.pot b/document_page/web/locales/messages.pot new file mode 100644 index 00000000..16c76567 --- /dev/null +++ b/document_page/web/locales/messages.pot @@ -0,0 +1,23 @@ +# Translations template for PROJECT. +# Copyright (C) 2010 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2010. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel None\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "" + diff --git a/document_page/web/locales/ru.po b/document_page/web/locales/ru.po new file mode 100644 index 00000000..6c609b49 --- /dev/null +++ b/document_page/web/locales/ru.po @@ -0,0 +1,22 @@ +# Russian 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-03-16 00:17+0000\n" +"Last-Translator: Stanislav Hanzhin \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-17 06:12+0000\n" +"X-Generator: Launchpad (build 12559)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Содержание" diff --git a/document_page/web/locales/sk.po b/document_page/web/locales/sk.po new file mode 100644 index 00000000..f101cf69 --- /dev/null +++ b/document_page/web/locales/sk.po @@ -0,0 +1,22 @@ +# Slovak 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-02-21 13:05+0000\n" +"Last-Translator: Radoslav Sloboda \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-02-22 14:27+0000\n" +"X-Generator: Launchpad (build 12351)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "Obsah" diff --git a/document_page/web/locales/tr.po b/document_page/web/locales/tr.po new file mode 100644 index 00000000..baa56e0f --- /dev/null +++ b/document_page/web/locales/tr.po @@ -0,0 +1,22 @@ +# Turkish 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 , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-08-02 17:52+0530\n" +"PO-Revision-Date: 2011-02-08 21:20+0000\n" +"Last-Translator: Ahmet Altınışık \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-02-09 06:02+0000\n" +"X-Generator: Launchpad (build 12177)\n" + +#: widgets/wikimarkup/__init__.py:1981 +msgid "Table of Contents" +msgstr "İçindekiler" diff --git a/document_page/web/static/css/wiki.css b/document_page/web/static/css/wiki.css new file mode 100644 index 00000000..51a64935 --- /dev/null +++ b/document_page/web/static/css/wiki.css @@ -0,0 +1,32 @@ +.wikiwidget #toc { + border:1px solid #aaaaaa; + background-color:#f9f9f9; + padding:5px; +} + +h1, h2, h3, h4, h5, h6 { + color: black; + background: none; + font-weight: normal; + margin: 0; + padding-top: .5em; + padding-bottom: .17em; + border-bottom: 1px solid #aaa; +} +h1 { font-size: 188%; } +h2 { font-size: 150%; } +h3, h4, h5, h6 { + border-bottom: none; +} +h3 { font-size: 132%; } +h4 { font-size: 116%; } +h5 { font-size: 100%; } +h6 { font-size: 80%; } + +pre { + background-color:#F9F9F9; + border:1px dashed #2F6FAB; + color:black; + line-height:1.1em; + padding:1em; +} diff --git a/document_page/web/widgets/__init__.py b/document_page/web/widgets/__init__.py new file mode 100644 index 00000000..4b2c273d --- /dev/null +++ b/document_page/web/widgets/__init__.py @@ -0,0 +1,3 @@ +from wiki import WikiWidget + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/rss/__init__.py b/document_page/web/widgets/rss/__init__.py new file mode 100644 index 00000000..ff95e8bd --- /dev/null +++ b/document_page/web/widgets/rss/__init__.py @@ -0,0 +1,3 @@ +import feedparser + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/rss/feedparser.py b/document_page/web/widgets/rss/feedparser.py new file mode 100755 index 00000000..35cbb975 --- /dev/null +++ b/document_page/web/widgets/rss/feedparser.py @@ -0,0 +1,2860 @@ +#!/usr/bin/env python +"""Universal feed parser + +Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds + +Visit http://feedparser.org/ for the latest version +Visit http://feedparser.org/docs/ for the latest documentation + +Required: Python 2.1 or later +Recommended: Python 2.3 or later +Recommended: CJKCodecs and iconv_codec +""" + +__version__ = "4.1"# + "$Revision: 1.92 $"[11:15] + "-cvs" +__license__ = """Copyright (c) 2002-2006, Mark Pilgrim, All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE.""" +__author__ = "Mark Pilgrim " +__contributors__ = ["Jason Diamond ", + "John Beimler ", + "Fazal Majid ", + "Aaron Swartz ", + "Kevin Marks "] +_debug = 0 + +# HTTP "User-Agent" header to send to servers when downloading feeds. +# If you are embedding feedparser in a larger application, you should +# change this to your application name and URL. +USER_AGENT = "UniversalFeedParser/%s +http://feedparser.org/" % __version__ + +# HTTP "Accept" header to send to servers when downloading feeds. If you don't +# want to send an Accept header, set this to None. +ACCEPT_HEADER = "application/atom+xml,application/rdf+xml,application/rss+xml,application/x-netcdf,application/xml;q=0.9,text/xml;q=0.2,*/*;q=0.1" + +# List of preferred XML parsers, by SAX driver name. These will be tried first, +# but if they're not installed, Python will keep searching through its own list +# of pre-installed parsers until it finds one that supports everything we need. +PREFERRED_XML_PARSERS = ["drv_libxml2"] + +# If you want feedparser to automatically run HTML markup through HTML Tidy, set +# this to 1. Requires mxTidy +# or utidylib . +TIDY_MARKUP = 0 + +# List of Python interfaces for HTML Tidy, in order of preference. Only useful +# if TIDY_MARKUP = 1 +PREFERRED_TIDY_INTERFACES = ["uTidy", "mxTidy"] + +# ---------- required modules (should come with any Python distribution) ---------- +import sgmllib, re, sys, copy, urlparse, time, rfc822, types, cgi, urllib, urllib2 +try: + from cStringIO import StringIO as _StringIO +except: + from StringIO import StringIO as _StringIO + +# ---------- optional modules (feedparser will work without these, but with reduced functionality) ---------- + +# gzip is included with most Python distributions, but may not be available if you compiled your own +try: + import gzip +except: + gzip = None +try: + import zlib +except: + zlib = None + +# If a real XML parser is available, feedparser will attempt to use it. feedparser has +# been tested with the built-in SAX parser, PyXML, and libxml2. On platforms where the +# Python distribution does not come with an XML parser (such as Mac OS X 10.2 and some +# versions of FreeBSD), feedparser will quietly fall back on regex-based parsing. +try: + import xml.sax + xml.sax.make_parser(PREFERRED_XML_PARSERS) # test for valid parsers + from xml.sax.saxutils import escape as _xmlescape + _XML_AVAILABLE = 1 +except: + _XML_AVAILABLE = 0 + def _xmlescape(data): + data = data.replace('&', '&') + data = data.replace('>', '>') + data = data.replace('<', '<') + return data + +# base64 support for Atom feeds that contain embedded binary data +try: + import base64, binascii +except: + base64 = binascii = None + +# cjkcodecs and iconv_codec provide support for more character encodings. +# Both are available from http://cjkpython.i18n.org/ +try: + import cjkcodecs.aliases +except: + pass +try: + import iconv_codec +except: + pass + +# chardet library auto-detects character encodings +# Download from http://chardet.feedparser.org/ +try: + import chardet + if _debug: + import chardet.constants + chardet.constants._debug = 1 +except: + chardet = None + +# ---------- don't touch these ---------- +class ThingsNobodyCaresAboutButMe(Exception): pass +class CharacterEncodingOverride(ThingsNobodyCaresAboutButMe): pass +class CharacterEncodingUnknown(ThingsNobodyCaresAboutButMe): pass +class NonXMLContentType(ThingsNobodyCaresAboutButMe): pass +class UndeclaredNamespace(Exception): pass + +sgmllib.tagfind = re.compile('[a-zA-Z][-_.:a-zA-Z0-9]*') +sgmllib.special = re.compile('' % (tag, ''.join([' %s="%s"' % t for t in attrs])), escape=0) + + # match namespaces + if tag.find(':') <> -1: + prefix, suffix = tag.split(':', 1) + else: + prefix, suffix = '', tag + prefix = self.namespacemap.get(prefix, prefix) + if prefix: + prefix = prefix + '_' + + # special hack for better tracking of empty textinput/image elements in illformed feeds + if (not prefix) and tag not in ('title', 'link', 'description', 'name'): + self.intextinput = 0 + if (not prefix) and tag not in ('title', 'link', 'description', 'url', 'href', 'width', 'height'): + self.inimage = 0 + + # call special handler (if defined) or default handler + methodname = '_start_' + prefix + suffix + try: + method = getattr(self, methodname) + return method(attrsD) + except AttributeError: + return self.push(prefix + suffix, 1) + + def unknown_endtag(self, tag): + if _debug: sys.stderr.write('end %s\n' % tag) + # match namespaces + if tag.find(':') <> -1: + prefix, suffix = tag.split(':', 1) + else: + prefix, suffix = '', tag + prefix = self.namespacemap.get(prefix, prefix) + if prefix: + prefix = prefix + '_' + + # call special handler (if defined) or default handler + methodname = '_end_' + prefix + suffix + try: + method = getattr(self, methodname) + method() + except AttributeError: + self.pop(prefix + suffix) + + # track inline content + if self.incontent and self.contentparams.has_key('type') and not self.contentparams.get('type', 'xml').endswith('xml'): + # element declared itself as escaped markup, but it isn't really + self.contentparams['type'] = 'application/xhtml+xml' + if self.incontent and self.contentparams.get('type') == 'application/xhtml+xml': + tag = tag.split(':')[-1] + self.handle_data('' % tag, escape=0) + + # track xml:base and xml:lang going out of scope + if self.basestack: + self.basestack.pop() + if self.basestack and self.basestack[-1]: + self.baseuri = self.basestack[-1] + if self.langstack: + self.langstack.pop() + if self.langstack: # and (self.langstack[-1] is not None): + self.lang = self.langstack[-1] + + def handle_charref(self, ref): + # called for each character reference, e.g. for ' ', ref will be '160' + if not self.elementstack: return + ref = ref.lower() + if ref in ('34', '38', '39', '60', '62', 'x22', 'x26', 'x27', 'x3c', 'x3e'): + text = '&#%s;' % ref + else: + if ref[0] == 'x': + c = int(ref[1:], 16) + else: + c = int(ref) + text = unichr(c).encode('utf-8') + self.elementstack[-1][2].append(text) + + def handle_entityref(self, ref): + # called for each entity reference, e.g. for '©', ref will be 'copy' + if not self.elementstack: return + if _debug: sys.stderr.write('entering handle_entityref with %s\n' % ref) + if ref in ('lt', 'gt', 'quot', 'amp', 'apos'): + text = '&%s;' % ref + else: + # entity resolution graciously donated by Aaron Swartz + def name2cp(k): + import htmlentitydefs + if hasattr(htmlentitydefs, 'name2codepoint'): # requires Python 2.3 + return htmlentitydefs.name2codepoint[k] + k = htmlentitydefs.entitydefs[k] + if k.startswith('&#') and k.endswith(';'): + return int(k[2:-1]) # not in latin-1 + return ord(k) + try: name2cp(ref) + except KeyError: text = '&%s;' % ref + else: text = unichr(name2cp(ref)).encode('utf-8') + self.elementstack[-1][2].append(text) + + def handle_data(self, text, escape=1): + # called for each block of plain text, i.e. outside of any tag and + # not containing any character or entity references + if not self.elementstack: return + if escape and self.contentparams.get('type') == 'application/xhtml+xml': + text = _xmlescape(text) + self.elementstack[-1][2].append(text) + + def handle_comment(self, text): + # called for each comment, e.g. + pass + + def handle_pi(self, text): + # called for each processing instruction, e.g. + pass + + def handle_decl(self, text): + pass + + def parse_declaration(self, i): + # override internal declaration handler to handle CDATA blocks + if _debug: sys.stderr.write('entering parse_declaration\n') + if self.rawdata[i:i+9] == '', i) + if k == -1: k = len(self.rawdata) + self.handle_data(_xmlescape(self.rawdata[i+9:k]), 0) + return k+3 + else: + k = self.rawdata.find('>', i) + return k+1 + + def mapContentType(self, contentType): + contentType = contentType.lower() + if contentType == 'text': + contentType = 'text/plain' + elif contentType == 'html': + contentType = 'text/html' + elif contentType == 'xhtml': + contentType = 'application/xhtml+xml' + return contentType + + def trackNamespace(self, prefix, uri): + loweruri = uri.lower() + if (prefix, loweruri) == (None, 'http://my.netscape.com/rdf/simple/0.9/') and not self.version: + self.version = 'rss090' + if loweruri == 'http://purl.org/rss/1.0/' and not self.version: + self.version = 'rss10' + if loweruri == 'http://www.w3.org/2005/atom' and not self.version: + self.version = 'atom10' + if loweruri.find('backend.userland.com/rss') <> -1: + # match any backend.userland.com namespace + uri = 'http://backend.userland.com/rss' + loweruri = uri + if self._matchnamespaces.has_key(loweruri): + self.namespacemap[prefix] = self._matchnamespaces[loweruri] + self.namespacesInUse[self._matchnamespaces[loweruri]] = uri + else: + self.namespacesInUse[prefix or ''] = uri + + def resolveURI(self, uri): + return _urljoin(self.baseuri or '', uri) + + def decodeEntities(self, element, data): + return data + + def push(self, element, expectingText): + self.elementstack.append([element, expectingText, []]) + + def pop(self, element, stripWhitespace=1): + if not self.elementstack: return + if self.elementstack[-1][0] != element: return + + element, expectingText, pieces = self.elementstack.pop() + output = ''.join(pieces) + if stripWhitespace: + output = output.strip() + if not expectingText: return output + + # decode base64 content + if base64 and self.contentparams.get('base64', 0): + try: + output = base64.decodestring(output) + except binascii.Error: + pass + except binascii.Incomplete: + pass + + # resolve relative URIs + if (element in self.can_be_relative_uri) and output: + output = self.resolveURI(output) + + # decode entities within embedded markup + if not self.contentparams.get('base64', 0): + output = self.decodeEntities(element, output) + + # remove temporary cruft from contentparams + try: + del self.contentparams['mode'] + except KeyError: + pass + try: + del self.contentparams['base64'] + except KeyError: + pass + + # resolve relative URIs within embedded markup + if self.mapContentType(self.contentparams.get('type', 'text/html')) in self.html_types: + if element in self.can_contain_relative_uris: + output = _resolveRelativeURIs(output, self.baseuri, self.encoding) + + # sanitize embedded markup + if self.mapContentType(self.contentparams.get('type', 'text/html')) in self.html_types: + if element in self.can_contain_dangerous_markup: + output = _sanitizeHTML(output, self.encoding) + + if self.encoding and type(output) != type(u''): + try: + output = unicode(output, self.encoding) + except: + pass + + # categories/tags/keywords/whatever are handled in _end_category + if element == 'category': + return output + + # store output in appropriate place(s) + if self.inentry and not self.insource: + if element == 'content': + self.entries[-1].setdefault(element, []) + contentparams = copy.deepcopy(self.contentparams) + contentparams['value'] = output + self.entries[-1][element].append(contentparams) + elif element == 'link': + self.entries[-1][element] = output + if output: + self.entries[-1]['links'][-1]['href'] = output + else: + if element == 'description': + element = 'summary' + self.entries[-1][element] = output + if self.incontent: + contentparams = copy.deepcopy(self.contentparams) + contentparams['value'] = output + self.entries[-1][element + '_detail'] = contentparams + elif (self.infeed or self.insource) and (not self.intextinput) and (not self.inimage): + context = self._getContext() + if element == 'description': + element = 'subtitle' + context[element] = output + if element == 'link': + context['links'][-1]['href'] = output + elif self.incontent: + contentparams = copy.deepcopy(self.contentparams) + contentparams['value'] = output + context[element + '_detail'] = contentparams + return output + + def pushContent(self, tag, attrsD, defaultContentType, expectingText): + self.incontent += 1 + self.contentparams = FeedParserDict({ + 'type': self.mapContentType(attrsD.get('type', defaultContentType)), + 'language': self.lang, + 'base': self.baseuri}) + self.contentparams['base64'] = self._isBase64(attrsD, self.contentparams) + self.push(tag, expectingText) + + def popContent(self, tag): + value = self.pop(tag) + self.incontent -= 1 + self.contentparams.clear() + return value + + def _mapToStandardPrefix(self, name): + colonpos = name.find(':') + if colonpos <> -1: + prefix = name[:colonpos] + suffix = name[colonpos+1:] + prefix = self.namespacemap.get(prefix, prefix) + name = prefix + ':' + suffix + return name + + def _getAttribute(self, attrsD, name): + return attrsD.get(self._mapToStandardPrefix(name)) + + def _isBase64(self, attrsD, contentparams): + if attrsD.get('mode', '') == 'base64': + return 1 + if self.contentparams['type'].startswith('text/'): + return 0 + if self.contentparams['type'].endswith('+xml'): + return 0 + if self.contentparams['type'].endswith('/xml'): + return 0 + return 1 + + def _itsAnHrefDamnIt(self, attrsD): + href = attrsD.get('url', attrsD.get('uri', attrsD.get('href', None))) + if href: + try: + del attrsD['url'] + except KeyError: + pass + try: + del attrsD['uri'] + except KeyError: + pass + attrsD['href'] = href + return attrsD + + def _save(self, key, value): + context = self._getContext() + context.setdefault(key, value) + + def _start_rss(self, attrsD): + versionmap = {'0.91': 'rss091u', + '0.92': 'rss092', + '0.93': 'rss093', + '0.94': 'rss094'} + if not self.version: + attr_version = attrsD.get('version', '') + version = versionmap.get(attr_version) + if version: + self.version = version + elif attr_version.startswith('2.'): + self.version = 'rss20' + else: + self.version = 'rss' + + def _start_dlhottitles(self, attrsD): + self.version = 'hotrss' + + def _start_channel(self, attrsD): + self.infeed = 1 + self._cdf_common(attrsD) + _start_feedinfo = _start_channel + + def _cdf_common(self, attrsD): + if attrsD.has_key('lastmod'): + self._start_modified({}) + self.elementstack[-1][-1] = attrsD['lastmod'] + self._end_modified() + if attrsD.has_key('href'): + self._start_link({}) + self.elementstack[-1][-1] = attrsD['href'] + self._end_link() + + def _start_feed(self, attrsD): + self.infeed = 1 + versionmap = {'0.1': 'atom01', + '0.2': 'atom02', + '0.3': 'atom03'} + if not self.version: + attr_version = attrsD.get('version') + version = versionmap.get(attr_version) + if version: + self.version = version + else: + self.version = 'atom' + + def _end_channel(self): + self.infeed = 0 + _end_feed = _end_channel + + def _start_image(self, attrsD): + self.inimage = 1 + self.push('image', 0) + context = self._getContext() + context.setdefault('image', FeedParserDict()) + + def _end_image(self): + self.pop('image') + self.inimage = 0 + + def _start_textinput(self, attrsD): + self.intextinput = 1 + self.push('textinput', 0) + context = self._getContext() + context.setdefault('textinput', FeedParserDict()) + _start_textInput = _start_textinput + + def _end_textinput(self): + self.pop('textinput') + self.intextinput = 0 + _end_textInput = _end_textinput + + def _start_author(self, attrsD): + self.inauthor = 1 + self.push('author', 1) + _start_managingeditor = _start_author + _start_dc_author = _start_author + _start_dc_creator = _start_author + _start_itunes_author = _start_author + + def _end_author(self): + self.pop('author') + self.inauthor = 0 + self._sync_author_detail() + _end_managingeditor = _end_author + _end_dc_author = _end_author + _end_dc_creator = _end_author + _end_itunes_author = _end_author + + def _start_itunes_owner(self, attrsD): + self.inpublisher = 1 + self.push('publisher', 0) + + def _end_itunes_owner(self): + self.pop('publisher') + self.inpublisher = 0 + self._sync_author_detail('publisher') + + def _start_contributor(self, attrsD): + self.incontributor = 1 + context = self._getContext() + context.setdefault('contributors', []) + context['contributors'].append(FeedParserDict()) + self.push('contributor', 0) + + def _end_contributor(self): + self.pop('contributor') + self.incontributor = 0 + + def _start_dc_contributor(self, attrsD): + self.incontributor = 1 + context = self._getContext() + context.setdefault('contributors', []) + context['contributors'].append(FeedParserDict()) + self.push('name', 0) + + def _end_dc_contributor(self): + self._end_name() + self.incontributor = 0 + + def _start_name(self, attrsD): + self.push('name', 0) + _start_itunes_name = _start_name + + def _end_name(self): + value = self.pop('name') + if self.inpublisher: + self._save_author('name', value, 'publisher') + elif self.inauthor: + self._save_author('name', value) + elif self.incontributor: + self._save_contributor('name', value) + elif self.intextinput: + context = self._getContext() + context['textinput']['name'] = value + _end_itunes_name = _end_name + + def _start_width(self, attrsD): + self.push('width', 0) + + def _end_width(self): + value = self.pop('width') + try: + value = int(value) + except: + value = 0 + if self.inimage: + context = self._getContext() + context['image']['width'] = value + + def _start_height(self, attrsD): + self.push('height', 0) + + def _end_height(self): + value = self.pop('height') + try: + value = int(value) + except: + value = 0 + if self.inimage: + context = self._getContext() + context['image']['height'] = value + + def _start_url(self, attrsD): + self.push('href', 1) + _start_homepage = _start_url + _start_uri = _start_url + + def _end_url(self): + value = self.pop('href') + if self.inauthor: + self._save_author('href', value) + elif self.incontributor: + self._save_contributor('href', value) + elif self.inimage: + context = self._getContext() + context['image']['href'] = value + elif self.intextinput: + context = self._getContext() + context['textinput']['link'] = value + _end_homepage = _end_url + _end_uri = _end_url + + def _start_email(self, attrsD): + self.push('email', 0) + _start_itunes_email = _start_email + + def _end_email(self): + value = self.pop('email') + if self.inpublisher: + self._save_author('email', value, 'publisher') + elif self.inauthor: + self._save_author('email', value) + elif self.incontributor: + self._save_contributor('email', value) + _end_itunes_email = _end_email + + def _getContext(self): + if self.insource: + context = self.sourcedata + elif self.inentry: + context = self.entries[-1] + else: + context = self.feeddata + return context + + def _save_author(self, key, value, prefix='author'): + context = self._getContext() + context.setdefault(prefix + '_detail', FeedParserDict()) + context[prefix + '_detail'][key] = value + self._sync_author_detail() + + def _save_contributor(self, key, value): + context = self._getContext() + context.setdefault('contributors', [FeedParserDict()]) + context['contributors'][-1][key] = value + + def _sync_author_detail(self, key='author'): + context = self._getContext() + detail = context.get('%s_detail' % key) + if detail: + name = detail.get('name') + email = detail.get('email') + if name and email: + context[key] = '%s (%s)' % (name, email) + elif name: + context[key] = name + elif email: + context[key] = email + else: + author = context.get(key) + if not author: return + emailmatch = re.search(r'''(([a-zA-Z0-9\_\-\.\+]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?))''', author) + if not emailmatch: return + email = emailmatch.group(0) + # probably a better way to do the following, but it passes all the tests + author = author.replace(email, '') + author = author.replace('()', '') + author = author.strip() + if author and (author[0] == '('): + author = author[1:] + if author and (author[-1] == ')'): + author = author[:-1] + author = author.strip() + context.setdefault('%s_detail' % key, FeedParserDict()) + context['%s_detail' % key]['name'] = author + context['%s_detail' % key]['email'] = email + + def _start_subtitle(self, attrsD): + self.pushContent('subtitle', attrsD, 'text/plain', 1) + _start_tagline = _start_subtitle + _start_itunes_subtitle = _start_subtitle + + def _end_subtitle(self): + self.popContent('subtitle') + _end_tagline = _end_subtitle + _end_itunes_subtitle = _end_subtitle + + def _start_rights(self, attrsD): + self.pushContent('rights', attrsD, 'text/plain', 1) + _start_dc_rights = _start_rights + _start_copyright = _start_rights + + def _end_rights(self): + self.popContent('rights') + _end_dc_rights = _end_rights + _end_copyright = _end_rights + + def _start_item(self, attrsD): + self.entries.append(FeedParserDict()) + self.push('item', 0) + self.inentry = 1 + self.guidislink = 0 + id = self._getAttribute(attrsD, 'rdf:about') + if id: + context = self._getContext() + context['id'] = id + self._cdf_common(attrsD) + _start_entry = _start_item + _start_product = _start_item + + def _end_item(self): + self.pop('item') + self.inentry = 0 + _end_entry = _end_item + + def _start_dc_language(self, attrsD): + self.push('language', 1) + _start_language = _start_dc_language + + def _end_dc_language(self): + self.lang = self.pop('language') + _end_language = _end_dc_language + + def _start_dc_publisher(self, attrsD): + self.push('publisher', 1) + _start_webmaster = _start_dc_publisher + + def _end_dc_publisher(self): + self.pop('publisher') + self._sync_author_detail('publisher') + _end_webmaster = _end_dc_publisher + + def _start_published(self, attrsD): + self.push('published', 1) + _start_dcterms_issued = _start_published + _start_issued = _start_published + + def _end_published(self): + value = self.pop('published') + self._save('published_parsed', _parse_date(value)) + _end_dcterms_issued = _end_published + _end_issued = _end_published + + def _start_updated(self, attrsD): + self.push('updated', 1) + _start_modified = _start_updated + _start_dcterms_modified = _start_updated + _start_pubdate = _start_updated + _start_dc_date = _start_updated + + def _end_updated(self): + value = self.pop('updated') + parsed_value = _parse_date(value) + self._save('updated_parsed', parsed_value) + _end_modified = _end_updated + _end_dcterms_modified = _end_updated + _end_pubdate = _end_updated + _end_dc_date = _end_updated + + def _start_created(self, attrsD): + self.push('created', 1) + _start_dcterms_created = _start_created + + def _end_created(self): + value = self.pop('created') + self._save('created_parsed', _parse_date(value)) + _end_dcterms_created = _end_created + + def _start_expirationdate(self, attrsD): + self.push('expired', 1) + + def _end_expirationdate(self): + self._save('expired_parsed', _parse_date(self.pop('expired'))) + + def _start_cc_license(self, attrsD): + self.push('license', 1) + value = self._getAttribute(attrsD, 'rdf:resource') + if value: + self.elementstack[-1][2].append(value) + self.pop('license') + + def _start_creativecommons_license(self, attrsD): + self.push('license', 1) + + def _end_creativecommons_license(self): + self.pop('license') + + def _addTag(self, term, scheme, label): + context = self._getContext() + tags = context.setdefault('tags', []) + if (not term) and (not scheme) and (not label): return + value = FeedParserDict({'term': term, 'scheme': scheme, 'label': label}) + if value not in tags: + tags.append(FeedParserDict({'term': term, 'scheme': scheme, 'label': label})) + + def _start_category(self, attrsD): + if _debug: sys.stderr.write('entering _start_category with %s\n' % repr(attrsD)) + term = attrsD.get('term') + scheme = attrsD.get('scheme', attrsD.get('domain')) + label = attrsD.get('label') + self._addTag(term, scheme, label) + self.push('category', 1) + _start_dc_subject = _start_category + _start_keywords = _start_category + + def _end_itunes_keywords(self): + for term in self.pop('itunes_keywords').split(): + self._addTag(term, 'http://www.itunes.com/', None) + + def _start_itunes_category(self, attrsD): + self._addTag(attrsD.get('text'), 'http://www.itunes.com/', None) + self.push('category', 1) + + def _end_category(self): + value = self.pop('category') + if not value: return + context = self._getContext() + tags = context['tags'] + if value and len(tags) and not tags[-1]['term']: + tags[-1]['term'] = value + else: + self._addTag(value, None, None) + _end_dc_subject = _end_category + _end_keywords = _end_category + _end_itunes_category = _end_category + + def _start_cloud(self, attrsD): + self._getContext()['cloud'] = FeedParserDict(attrsD) + + def _start_link(self, attrsD): + attrsD.setdefault('rel', 'alternate') + attrsD.setdefault('type', 'text/html') + attrsD = self._itsAnHrefDamnIt(attrsD) + if attrsD.has_key('href'): + attrsD['href'] = self.resolveURI(attrsD['href']) + expectingText = self.infeed or self.inentry or self.insource + context = self._getContext() + context.setdefault('links', []) + context['links'].append(FeedParserDict(attrsD)) + if attrsD['rel'] == 'enclosure': + self._start_enclosure(attrsD) + if attrsD.has_key('href'): + expectingText = 0 + if (attrsD.get('rel') == 'alternate') and (self.mapContentType(attrsD.get('type')) in self.html_types): + context['link'] = attrsD['href'] + else: + self.push('link', expectingText) + _start_producturl = _start_link + + def _end_link(self): + value = self.pop('link') + context = self._getContext() + if self.intextinput: + context['textinput']['link'] = value + if self.inimage: + context['image']['link'] = value + _end_producturl = _end_link + + def _start_guid(self, attrsD): + self.guidislink = (attrsD.get('ispermalink', 'true') == 'true') + self.push('id', 1) + + def _end_guid(self): + value = self.pop('id') + self._save('guidislink', self.guidislink and not self._getContext().has_key('link')) + if self.guidislink: + # guid acts as link, but only if 'ispermalink' is not present or is 'true', + # and only if the item doesn't already have a link element + self._save('link', value) + + def _start_title(self, attrsD): + self.pushContent('title', attrsD, 'text/plain', self.infeed or self.inentry or self.insource) + _start_dc_title = _start_title + _start_media_title = _start_title + + def _end_title(self): + value = self.popContent('title') + context = self._getContext() + if self.intextinput: + context['textinput']['title'] = value + elif self.inimage: + context['image']['title'] = value + _end_dc_title = _end_title + _end_media_title = _end_title + + def _start_description(self, attrsD): + context = self._getContext() + if context.has_key('summary'): + self._summaryKey = 'content' + self._start_content(attrsD) + else: + self.pushContent('description', attrsD, 'text/html', self.infeed or self.inentry or self.insource) + + def _start_abstract(self, attrsD): + self.pushContent('description', attrsD, 'text/plain', self.infeed or self.inentry or self.insource) + + def _end_description(self): + if self._summaryKey == 'content': + self._end_content() + else: + value = self.popContent('description') + context = self._getContext() + if self.intextinput: + context['textinput']['description'] = value + elif self.inimage: + context['image']['description'] = value + self._summaryKey = None + _end_abstract = _end_description + + def _start_info(self, attrsD): + self.pushContent('info', attrsD, 'text/plain', 1) + _start_feedburner_browserfriendly = _start_info + + def _end_info(self): + self.popContent('info') + _end_feedburner_browserfriendly = _end_info + + def _start_generator(self, attrsD): + if attrsD: + attrsD = self._itsAnHrefDamnIt(attrsD) + if attrsD.has_key('href'): + attrsD['href'] = self.resolveURI(attrsD['href']) + self._getContext()['generator_detail'] = FeedParserDict(attrsD) + self.push('generator', 1) + + def _end_generator(self): + value = self.pop('generator') + context = self._getContext() + if context.has_key('generator_detail'): + context['generator_detail']['name'] = value + + def _start_admin_generatoragent(self, attrsD): + self.push('generator', 1) + value = self._getAttribute(attrsD, 'rdf:resource') + if value: + self.elementstack[-1][2].append(value) + self.pop('generator') + self._getContext()['generator_detail'] = FeedParserDict({'href': value}) + + def _start_admin_errorreportsto(self, attrsD): + self.push('errorreportsto', 1) + value = self._getAttribute(attrsD, 'rdf:resource') + if value: + self.elementstack[-1][2].append(value) + self.pop('errorreportsto') + + def _start_summary(self, attrsD): + context = self._getContext() + if context.has_key('summary'): + self._summaryKey = 'content' + self._start_content(attrsD) + else: + self._summaryKey = 'summary' + self.pushContent(self._summaryKey, attrsD, 'text/plain', 1) + _start_itunes_summary = _start_summary + + def _end_summary(self): + if self._summaryKey == 'content': + self._end_content() + else: + self.popContent(self._summaryKey or 'summary') + self._summaryKey = None + _end_itunes_summary = _end_summary + + def _start_enclosure(self, attrsD): + attrsD = self._itsAnHrefDamnIt(attrsD) + self._getContext().setdefault('enclosures', []).append(FeedParserDict(attrsD)) + href = attrsD.get('href') + if href: + context = self._getContext() + if not context.get('id'): + context['id'] = href + + def _start_source(self, attrsD): + self.insource = 1 + + def _end_source(self): + self.insource = 0 + self._getContext()['source'] = copy.deepcopy(self.sourcedata) + self.sourcedata.clear() + + def _start_content(self, attrsD): + self.pushContent('content', attrsD, 'text/plain', 1) + src = attrsD.get('src') + if src: + self.contentparams['src'] = src + self.push('content', 1) + + def _start_prodlink(self, attrsD): + self.pushContent('content', attrsD, 'text/html', 1) + + def _start_body(self, attrsD): + self.pushContent('content', attrsD, 'application/xhtml+xml', 1) + _start_xhtml_body = _start_body + + def _start_content_encoded(self, attrsD): + self.pushContent('content', attrsD, 'text/html', 1) + _start_fullitem = _start_content_encoded + + def _end_content(self): + copyToDescription = self.mapContentType(self.contentparams.get('type')) in (['text/plain'] + self.html_types) + value = self.popContent('content') + if copyToDescription: + self._save('description', value) + _end_body = _end_content + _end_xhtml_body = _end_content + _end_content_encoded = _end_content + _end_fullitem = _end_content + _end_prodlink = _end_content + + def _start_itunes_image(self, attrsD): + self.push('itunes_image', 0) + self._getContext()['image'] = FeedParserDict({'href': attrsD.get('href')}) + _start_itunes_link = _start_itunes_image + + def _end_itunes_block(self): + value = self.pop('itunes_block', 0) + self._getContext()['itunes_block'] = (value == 'yes') and 1 or 0 + + def _end_itunes_explicit(self): + value = self.pop('itunes_explicit', 0) + self._getContext()['itunes_explicit'] = (value == 'yes') and 1 or 0 + +if _XML_AVAILABLE: + class _StrictFeedParser(_FeedParserMixin, xml.sax.handler.ContentHandler): + def __init__(self, baseuri, baselang, encoding): + if _debug: sys.stderr.write('trying StrictFeedParser\n') + xml.sax.handler.ContentHandler.__init__(self) + _FeedParserMixin.__init__(self, baseuri, baselang, encoding) + self.bozo = 0 + self.exc = None + + def startPrefixMapping(self, prefix, uri): + self.trackNamespace(prefix, uri) + + def startElementNS(self, name, qname, attrs): + namespace, localname = name + lowernamespace = str(namespace or '').lower() + if lowernamespace.find('backend.userland.com/rss') <> -1: + # match any backend.userland.com namespace + namespace = 'http://backend.userland.com/rss' + lowernamespace = namespace + if qname and qname.find(':') > 0: + givenprefix = qname.split(':')[0] + else: + givenprefix = None + prefix = self._matchnamespaces.get(lowernamespace, givenprefix) + if givenprefix and (prefix == None or (prefix == '' and lowernamespace == '')) and not self.namespacesInUse.has_key(givenprefix): + raise UndeclaredNamespace, "'%s' is not associated with a namespace" % givenprefix + if prefix: + localname = prefix + ':' + localname + localname = str(localname).lower() + if _debug: sys.stderr.write('startElementNS: qname = %s, namespace = %s, givenprefix = %s, prefix = %s, attrs = %s, localname = %s\n' % (qname, namespace, givenprefix, prefix, attrs.items(), localname)) + + # qname implementation is horribly broken in Python 2.1 (it + # doesn't report any), and slightly broken in Python 2.2 (it + # doesn't report the xml: namespace). So we match up namespaces + # with a known list first, and then possibly override them with + # the qnames the SAX parser gives us (if indeed it gives us any + # at all). Thanks to MatejC for helping me test this and + # tirelessly telling me that it didn't work yet. + attrsD = {} + for (namespace, attrlocalname), attrvalue in attrs._attrs.items(): + lowernamespace = (namespace or '').lower() + prefix = self._matchnamespaces.get(lowernamespace, '') + if prefix: + attrlocalname = prefix + ':' + attrlocalname + attrsD[str(attrlocalname).lower()] = attrvalue + for qname in attrs.getQNames(): + attrsD[str(qname).lower()] = attrs.getValueByQName(qname) + self.unknown_starttag(localname, attrsD.items()) + + def characters(self, text): + self.handle_data(text) + + def endElementNS(self, name, qname): + namespace, localname = name + lowernamespace = str(namespace or '').lower() + if qname and qname.find(':') > 0: + givenprefix = qname.split(':')[0] + else: + givenprefix = '' + prefix = self._matchnamespaces.get(lowernamespace, givenprefix) + if prefix: + localname = prefix + ':' + localname + localname = str(localname).lower() + self.unknown_endtag(localname) + + def error(self, exc): + self.bozo = 1 + self.exc = exc + + def fatalError(self, exc): + self.error(exc) + raise exc + +class _BaseHTMLProcessor(sgmllib.SGMLParser): + elements_no_end_tag = ['area', 'base', 'basefont', 'br', 'col', 'frame', 'hr', + 'img', 'input', 'isindex', 'link', 'meta', 'param'] + + def __init__(self, encoding): + self.encoding = encoding + if _debug: sys.stderr.write('entering BaseHTMLProcessor, encoding=%s\n' % self.encoding) + sgmllib.SGMLParser.__init__(self) + + def reset(self): + self.pieces = [] + sgmllib.SGMLParser.reset(self) + + def _shorttag_replace(self, match): + tag = match.group(1) + if tag in self.elements_no_end_tag: + return '<' + tag + ' />' + else: + return '<' + tag + '>' + + def feed(self, data): + data = re.compile(r'', self._shorttag_replace, data) # bug [ 1399464 ] Bad regexp for _shorttag_replace + data = re.sub(r'<([^<\s]+?)\s*/>', self._shorttag_replace, data) + data = data.replace(''', "'") + data = data.replace('"', '"') + if self.encoding and type(data) == type(u''): + data = data.encode(self.encoding) + sgmllib.SGMLParser.feed(self, data) + + def normalize_attrs(self, attrs): + # utility method to be called by descendants + attrs = [(k.lower(), v) for k, v in attrs] + attrs = [(k, k in ('rel', 'type') and v.lower() or v) for k, v in attrs] + return attrs + + def unknown_starttag(self, tag, attrs): + # called for each start tag + # attrs is a list of (attr, value) tuples + # e.g. for
    , tag='pre', attrs=[('class', 'screen')]
    +        if _debug: sys.stderr.write('_BaseHTMLProcessor, unknown_starttag, tag=%s\n' % tag)
    +        uattrs = []
    +        # thanks to Kevin Marks for this breathtaking hack to deal with (valid) high-bit attribute values in UTF-8 feeds
    +        for key, value in attrs:
    +            if type(value) != type(u''):
    +                value = unicode(value, self.encoding)
    +            uattrs.append((unicode(key, self.encoding), value))
    +        strattrs = u''.join([u' %s="%s"' % (key, value) for key, value in uattrs]).encode(self.encoding)
    +        if tag in self.elements_no_end_tag:
    +            self.pieces.append('<%(tag)s%(strattrs)s />' % locals())
    +        else:
    +            self.pieces.append('<%(tag)s%(strattrs)s>' % locals())
    +
    +    def unknown_endtag(self, tag):
    +        # called for each end tag, e.g. for 
    , tag will be 'pre' + # Reconstruct the original end tag. + if tag not in self.elements_no_end_tag: + self.pieces.append("" % locals()) + + def handle_charref(self, ref): + # called for each character reference, e.g. for ' ', ref will be '160' + # Reconstruct the original character reference. + self.pieces.append('&#%(ref)s;' % locals()) + + def handle_entityref(self, ref): + # called for each entity reference, e.g. for '©', ref will be 'copy' + # Reconstruct the original entity reference. + self.pieces.append('&%(ref)s;' % locals()) + + def handle_data(self, text): + # called for each block of plain text, i.e. outside of any tag and + # not containing any character or entity references + # Store the original text verbatim. + if _debug: sys.stderr.write('_BaseHTMLProcessor, handle_text, text=%s\n' % text) + self.pieces.append(text) + + def handle_comment(self, text): + # called for each HTML comment, e.g. + # Reconstruct the original comment. + self.pieces.append('' % locals()) + + def handle_pi(self, text): + # called for each processing instruction, e.g. + # Reconstruct original processing instruction. + self.pieces.append('' % locals()) + + def handle_decl(self, text): + # called for the DOCTYPE, if present, e.g. + # + # Reconstruct original DOCTYPE + self.pieces.append('' % locals()) + + _new_declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9:]*\s*').match + def _scan_name(self, i, declstartpos): + rawdata = self.rawdata + n = len(rawdata) + if i == n: + return None, -1 + m = self._new_declname_match(rawdata, i) + if m: + s = m.group() + name = s.strip() + if (i + len(s)) == n: + return None, -1 # end of buffer + return name.lower(), m.end() + else: + self.handle_data(rawdata) +# self.updatepos(declstartpos, i) + return None, -1 + + def output(self): + '''Return processed HTML as a single string''' + return ''.join([str(p) for p in self.pieces]) + +class _LooseFeedParser(_FeedParserMixin, _BaseHTMLProcessor): + def __init__(self, baseuri, baselang, encoding): + sgmllib.SGMLParser.__init__(self) + _FeedParserMixin.__init__(self, baseuri, baselang, encoding) + + def decodeEntities(self, element, data): + data = data.replace('<', '<') + data = data.replace('<', '<') + data = data.replace('>', '>') + data = data.replace('>', '>') + data = data.replace('&', '&') + data = data.replace('&', '&') + data = data.replace('"', '"') + data = data.replace('"', '"') + data = data.replace(''', ''') + data = data.replace(''', ''') + if self.contentparams.has_key('type') and not self.contentparams.get('type', 'xml').endswith('xml'): + data = data.replace('<', '<') + data = data.replace('>', '>') + data = data.replace('&', '&') + data = data.replace('"', '"') + data = data.replace(''', "'") + return data + +class _RelativeURIResolver(_BaseHTMLProcessor): + relative_uris = [('a', 'href'), + ('applet', 'codebase'), + ('area', 'href'), + ('blockquote', 'cite'), + ('body', 'background'), + ('del', 'cite'), + ('form', 'action'), + ('frame', 'longdesc'), + ('frame', 'src'), + ('iframe', 'longdesc'), + ('iframe', 'src'), + ('head', 'profile'), + ('img', 'longdesc'), + ('img', 'src'), + ('img', 'usemap'), + ('input', 'src'), + ('input', 'usemap'), + ('ins', 'cite'), + ('link', 'href'), + ('object', 'classid'), + ('object', 'codebase'), + ('object', 'data'), + ('object', 'usemap'), + ('q', 'cite'), + ('script', 'src')] + + def __init__(self, baseuri, encoding): + _BaseHTMLProcessor.__init__(self, encoding) + self.baseuri = baseuri + + def resolveURI(self, uri): + return _urljoin(self.baseuri, uri) + + def unknown_starttag(self, tag, attrs): + attrs = self.normalize_attrs(attrs) + attrs = [(key, ((tag, key) in self.relative_uris) and self.resolveURI(value) or value) for key, value in attrs] + _BaseHTMLProcessor.unknown_starttag(self, tag, attrs) + +def _resolveRelativeURIs(htmlSource, baseURI, encoding): + if _debug: sys.stderr.write('entering _resolveRelativeURIs\n') + p = _RelativeURIResolver(baseURI, encoding) + p.feed(htmlSource) + return p.output() + +class _HTMLSanitizer(_BaseHTMLProcessor): + acceptable_elements = ['a', 'abbr', 'acronym', 'address', 'area', 'b', 'big', + 'blockquote', 'br', 'button', 'caption', 'center', 'cite', 'code', 'col', + 'colgroup', 'dd', 'del', 'dfn', 'dir', 'div', 'dl', 'dt', 'em', 'fieldset', + 'font', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'input', + 'ins', 'kbd', 'label', 'legend', 'li', 'map', 'menu', 'ol', 'optgroup', + 'option', 'p', 'pre', 'q', 's', 'samp', 'select', 'small', 'span', 'strike', + 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', + 'thead', 'tr', 'tt', 'u', 'ul', 'var'] + + acceptable_attributes = ['abbr', 'accept', 'accept-charset', 'accesskey', + 'action', 'align', 'alt', 'axis', 'border', 'cellpadding', 'cellspacing', + 'char', 'charoff', 'charset', 'checked', 'cite', 'class', 'clear', 'cols', + 'colspan', 'color', 'compact', 'coords', 'datetime', 'dir', 'disabled', + 'enctype', 'for', 'frame', 'headers', 'height', 'href', 'hreflang', 'hspace', + 'id', 'ismap', 'label', 'lang', 'longdesc', 'maxlength', 'media', 'method', + 'multiple', 'name', 'nohref', 'noshade', 'nowrap', 'prompt', 'readonly', + 'rel', 'rev', 'rows', 'rowspan', 'rules', 'scope', 'selected', 'shape', 'size', + 'span', 'src', 'start', 'summary', 'tabindex', 'target', 'title', 'type', + 'usemap', 'valign', 'value', 'vspace', 'width'] + + unacceptable_elements_with_end_tag = ['script', 'applet'] + + def reset(self): + _BaseHTMLProcessor.reset(self) + self.unacceptablestack = 0 + + def unknown_starttag(self, tag, attrs): + if not tag in self.acceptable_elements: + if tag in self.unacceptable_elements_with_end_tag: + self.unacceptablestack += 1 + return + attrs = self.normalize_attrs(attrs) + attrs = [(key, value) for key, value in attrs if key in self.acceptable_attributes] + _BaseHTMLProcessor.unknown_starttag(self, tag, attrs) + + def unknown_endtag(self, tag): + if not tag in self.acceptable_elements: + if tag in self.unacceptable_elements_with_end_tag: + self.unacceptablestack -= 1 + return + _BaseHTMLProcessor.unknown_endtag(self, tag) + + def handle_pi(self, text): + pass + + def handle_decl(self, text): + pass + + def handle_data(self, text): + if not self.unacceptablestack: + _BaseHTMLProcessor.handle_data(self, text) + +def _sanitizeHTML(htmlSource, encoding): + p = _HTMLSanitizer(encoding) + p.feed(htmlSource) + data = p.output() + if TIDY_MARKUP: + # loop through list of preferred Tidy interfaces looking for one that's installed, + # then set up a common _tidy function to wrap the interface-specific API. + _tidy = None + for tidy_interface in PREFERRED_TIDY_INTERFACES: + try: + if tidy_interface == "uTidy": + from tidy import parseString as _utidy + def _tidy(data, **kwargs): + return str(_utidy(data, **kwargs)) + break + elif tidy_interface == "mxTidy": + from mx.Tidy import Tidy as _mxtidy + def _tidy(data, **kwargs): + nerrors, nwarnings, data, errordata = _mxtidy.tidy(data, **kwargs) + return data + break + except: + pass + if _tidy: + utf8 = type(data) == type(u'') + if utf8: + data = data.encode('utf-8') + data = _tidy(data, output_xhtml=1, numeric_entities=1, wrap=0, char_encoding="utf8") + if utf8: + data = unicode(data, 'utf-8') + if data.count(''): + data = data.split('>', 1)[1] + if data.count('= '2.3.3' + assert base64 != None + user, passw = base64.decodestring(req.headers['Authorization'].split(' ')[1]).split(':') + realm = re.findall('realm="([^"]*)"', headers['WWW-Authenticate'])[0] + self.add_password(realm, host, user, passw) + retry = self.http_error_auth_reqed('www-authenticate', host, req, headers) + self.reset_retry_count() + return retry + except: + return self.http_error_default(req, fp, code, msg, headers) + +def _open_resource(url_file_stream_or_string, etag, modified, agent, referrer, handlers): + """URL, filename, or string --> stream + + This function lets you define parsers that take any input source + (URL, pathname to local or network file, or actual data as a string) + and deal with it in a uniform manner. Returned object is guaranteed + to have all the basic stdio read methods (read, readline, readlines). + Just .close() the object when you're done with it. + + If the etag argument is supplied, it will be used as the value of an + If-None-Match request header. + + If the modified argument is supplied, it must be a tuple of 9 integers + as returned by gmtime() in the standard Python time module. This MUST + be in GMT (Greenwich Mean Time). The formatted date/time will be used + as the value of an If-Modified-Since request header. + + If the agent argument is supplied, it will be used as the value of a + User-Agent request header. + + If the referrer argument is supplied, it will be used as the value of a + Referer[sic] request header. + + If handlers is supplied, it is a list of handlers used to build a + urllib2 opener. + """ + + if hasattr(url_file_stream_or_string, 'read'): + return url_file_stream_or_string + + if url_file_stream_or_string == '-': + return sys.stdin + + if urlparse.urlparse(url_file_stream_or_string)[0] in ('http', 'https', 'ftp'): + if not agent: + agent = USER_AGENT + # test for inline user:password for basic auth + auth = None + if base64: + urltype, rest = urllib.splittype(url_file_stream_or_string) + realhost, rest = urllib.splithost(rest) + if realhost: + user_passwd, realhost = urllib.splituser(realhost) + if user_passwd: + url_file_stream_or_string = '%s://%s%s' % (urltype, realhost, rest) + auth = base64.encodestring(user_passwd).strip() + # try to open with urllib2 (to use optional headers) + request = urllib2.Request(url_file_stream_or_string) + request.add_header('User-Agent', agent) + if etag: + request.add_header('If-None-Match', etag) + if modified: + # format into an RFC 1123-compliant timestamp. We can't use + # time.strftime() since the %a and %b directives can be affected + # by the current locale, but RFC 2616 states that dates must be + # in English. + short_weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] + months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] + request.add_header('If-Modified-Since', '%s, %02d %s %04d %02d:%02d:%02d GMT' % (short_weekdays[modified[6]], modified[2], months[modified[1] - 1], modified[0], modified[3], modified[4], modified[5])) + if referrer: + request.add_header('Referer', referrer) + if gzip and zlib: + request.add_header('Accept-encoding', 'gzip, deflate') + elif gzip: + request.add_header('Accept-encoding', 'gzip') + elif zlib: + request.add_header('Accept-encoding', 'deflate') + else: + request.add_header('Accept-encoding', '') + if auth: + request.add_header('Authorization', 'Basic %s' % auth) + if ACCEPT_HEADER: + request.add_header('Accept', ACCEPT_HEADER) + request.add_header('A-IM', 'feed') # RFC 3229 support + opener = apply(urllib2.build_opener, tuple([_FeedURLHandler()] + handlers)) + opener.addheaders = [] # RMK - must clear so we only send our custom User-Agent + try: + return opener.open(request) + finally: + opener.close() # JohnD + + # try to open with native open function (if url_file_stream_or_string is a filename) + try: + return open(url_file_stream_or_string) + except: + pass + + # treat url_file_stream_or_string as string + return _StringIO(str(url_file_stream_or_string)) + +_date_handlers = [] +def registerDateHandler(func): + '''Register a date handler function (takes string, returns 9-tuple date in GMT)''' + _date_handlers.insert(0, func) + +# ISO-8601 date parsing routines written by Fazal Majid. +# The ISO 8601 standard is very convoluted and irregular - a full ISO 8601 +# parser is beyond the scope of feedparser and would be a worthwhile addition +# to the Python library. +# A single regular expression cannot parse ISO 8601 date formats into groups +# as the standard is highly irregular (for instance is 030104 2003-01-04 or +# 0301-04-01), so we use templates instead. +# Please note the order in templates is significant because we need a +# greedy match. +_iso8601_tmpl = ['YYYY-?MM-?DD', 'YYYY-MM', 'YYYY-?OOO', + 'YY-?MM-?DD', 'YY-?OOO', 'YYYY', + '-YY-?MM', '-OOO', '-YY', + '--MM-?DD', '--MM', + '---DD', + 'CC', ''] +_iso8601_re = [ + tmpl.replace( + 'YYYY', r'(?P\d{4})').replace( + 'YY', r'(?P\d\d)').replace( + 'MM', r'(?P[01]\d)').replace( + 'DD', r'(?P[0123]\d)').replace( + 'OOO', r'(?P[0123]\d\d)').replace( + 'CC', r'(?P\d\d$)') + + r'(T?(?P\d{2}):(?P\d{2})' + + r'(:(?P\d{2}))?' + + r'(?P[+-](?P\d{2})(:(?P\d{2}))?|Z)?)?' + for tmpl in _iso8601_tmpl] +del tmpl +_iso8601_matches = [re.compile(regex).match for regex in _iso8601_re] +del regex +def _parse_date_iso8601(dateString): + '''Parse a variety of ISO-8601-compatible formats like 20040105''' + m = None + for _iso8601_match in _iso8601_matches: + m = _iso8601_match(dateString) + if m: break + if not m: return + if m.span() == (0, 0): return + params = m.groupdict() + ordinal = params.get('ordinal', 0) + if ordinal: + ordinal = int(ordinal) + else: + ordinal = 0 + year = params.get('year', '--') + if not year or year == '--': + year = time.gmtime()[0] + elif len(year) == 2: + # ISO 8601 assumes current century, i.e. 93 -> 2093, NOT 1993 + year = 100 * int(time.gmtime()[0] / 100) + int(year) + else: + year = int(year) + month = params.get('month', '-') + if not month or month == '-': + # ordinals are NOT normalized by mktime, we simulate them + # by setting month=1, day=ordinal + if ordinal: + month = 1 + else: + month = time.gmtime()[1] + month = int(month) + day = params.get('day', 0) + if not day: + # see above + if ordinal: + day = ordinal + elif params.get('century', 0) or \ + params.get('year', 0) or params.get('month', 0): + day = 1 + else: + day = time.gmtime()[2] + else: + day = int(day) + # special case of the century - is the first year of the 21st century + # 2000 or 2001 ? The debate goes on... + if 'century' in params.keys(): + year = (int(params['century']) - 1) * 100 + 1 + # in ISO 8601 most fields are optional + for field in ['hour', 'minute', 'second', 'tzhour', 'tzmin']: + if not params.get(field, None): + params[field] = 0 + hour = int(params.get('hour', 0)) + minute = int(params.get('minute', 0)) + second = int(params.get('second', 0)) + # weekday is normalized by mktime(), we can ignore it + weekday = 0 + # daylight savings is complex, but not needed for feedparser's purposes + # as time zones, if specified, include mention of whether it is active + # (e.g. PST vs. PDT, CET). Using -1 is implementation-dependent and + # and most implementations have DST bugs + daylight_savings_flag = 0 + tm = [year, month, day, hour, minute, second, weekday, + ordinal, daylight_savings_flag] + # ISO 8601 time zone adjustments + tz = params.get('tz') + if tz and tz != 'Z': + if tz[0] == '-': + tm[3] += int(params.get('tzhour', 0)) + tm[4] += int(params.get('tzmin', 0)) + elif tz[0] == '+': + tm[3] -= int(params.get('tzhour', 0)) + tm[4] -= int(params.get('tzmin', 0)) + else: + return None + # Python's time.mktime() is a wrapper around the ANSI C mktime(3c) + # which is guaranteed to normalize d/m/y/h/m/s. + # Many implementations have bugs, but we'll pretend they don't. + return time.localtime(time.mktime(tm)) +registerDateHandler(_parse_date_iso8601) + +# 8-bit date handling routines written by ytrewq1. +_korean_year = u'\ub144' # b3e2 in euc-kr +_korean_month = u'\uc6d4' # bff9 in euc-kr +_korean_day = u'\uc77c' # c0cf in euc-kr +_korean_am = u'\uc624\uc804' # bfc0 c0fc in euc-kr +_korean_pm = u'\uc624\ud6c4' # bfc0 c8c4 in euc-kr + +_korean_onblog_date_re = \ + re.compile('(\d{4})%s\s+(\d{2})%s\s+(\d{2})%s\s+(\d{2}):(\d{2}):(\d{2})' % \ + (_korean_year, _korean_month, _korean_day)) +_korean_nate_date_re = \ + re.compile(u'(\d{4})-(\d{2})-(\d{2})\s+(%s|%s)\s+(\d{,2}):(\d{,2}):(\d{,2})' % \ + (_korean_am, _korean_pm)) +def _parse_date_onblog(dateString): + '''Parse a string according to the OnBlog 8-bit date format''' + m = _korean_onblog_date_re.match(dateString) + if not m: return + w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s:%(second)s%(zonediff)s' % \ + {'year': m.group(1), 'month': m.group(2), 'day': m.group(3),\ + 'hour': m.group(4), 'minute': m.group(5), 'second': m.group(6),\ + 'zonediff': '+09:00'} + if _debug: sys.stderr.write('OnBlog date parsed as: %s\n' % w3dtfdate) + return _parse_date_w3dtf(w3dtfdate) +registerDateHandler(_parse_date_onblog) + +def _parse_date_nate(dateString): + '''Parse a string according to the Nate 8-bit date format''' + m = _korean_nate_date_re.match(dateString) + if not m: return + hour = int(m.group(5)) + ampm = m.group(4) + if (ampm == _korean_pm): + hour += 12 + hour = str(hour) + if len(hour) == 1: + hour = '0' + hour + w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s:%(second)s%(zonediff)s' % \ + {'year': m.group(1), 'month': m.group(2), 'day': m.group(3),\ + 'hour': hour, 'minute': m.group(6), 'second': m.group(7),\ + 'zonediff': '+09:00'} + if _debug: sys.stderr.write('Nate date parsed as: %s\n' % w3dtfdate) + return _parse_date_w3dtf(w3dtfdate) +registerDateHandler(_parse_date_nate) + +_mssql_date_re = \ + re.compile('(\d{4})-(\d{2})-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})(\.\d+)?') +def _parse_date_mssql(dateString): + '''Parse a string according to the MS SQL date format''' + m = _mssql_date_re.match(dateString) + if not m: return + w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s:%(second)s%(zonediff)s' % \ + {'year': m.group(1), 'month': m.group(2), 'day': m.group(3),\ + 'hour': m.group(4), 'minute': m.group(5), 'second': m.group(6),\ + 'zonediff': '+09:00'} + if _debug: sys.stderr.write('MS SQL date parsed as: %s\n' % w3dtfdate) + return _parse_date_w3dtf(w3dtfdate) +registerDateHandler(_parse_date_mssql) + +# Unicode strings for Greek date strings +_greek_months = \ + { \ + u'\u0399\u03b1\u03bd': u'Jan', # c9e1ed in iso-8859-7 + u'\u03a6\u03b5\u03b2': u'Feb', # d6e5e2 in iso-8859-7 + u'\u039c\u03ac\u03ce': u'Mar', # ccdcfe in iso-8859-7 + u'\u039c\u03b1\u03ce': u'Mar', # cce1fe in iso-8859-7 + u'\u0391\u03c0\u03c1': u'Apr', # c1f0f1 in iso-8859-7 + u'\u039c\u03ac\u03b9': u'May', # ccdce9 in iso-8859-7 + u'\u039c\u03b1\u03ca': u'May', # cce1fa in iso-8859-7 + u'\u039c\u03b1\u03b9': u'May', # cce1e9 in iso-8859-7 + u'\u0399\u03bf\u03cd\u03bd': u'Jun', # c9effded in iso-8859-7 + u'\u0399\u03bf\u03bd': u'Jun', # c9efed in iso-8859-7 + u'\u0399\u03bf\u03cd\u03bb': u'Jul', # c9effdeb in iso-8859-7 + u'\u0399\u03bf\u03bb': u'Jul', # c9f9eb in iso-8859-7 + u'\u0391\u03cd\u03b3': u'Aug', # c1fde3 in iso-8859-7 + u'\u0391\u03c5\u03b3': u'Aug', # c1f5e3 in iso-8859-7 + u'\u03a3\u03b5\u03c0': u'Sep', # d3e5f0 in iso-8859-7 + u'\u039f\u03ba\u03c4': u'Oct', # cfeaf4 in iso-8859-7 + u'\u039d\u03bf\u03ad': u'Nov', # cdefdd in iso-8859-7 + u'\u039d\u03bf\u03b5': u'Nov', # cdefe5 in iso-8859-7 + u'\u0394\u03b5\u03ba': u'Dec', # c4e5ea in iso-8859-7 + } + +_greek_wdays = \ + { \ + u'\u039a\u03c5\u03c1': u'Sun', # caf5f1 in iso-8859-7 + u'\u0394\u03b5\u03c5': u'Mon', # c4e5f5 in iso-8859-7 + u'\u03a4\u03c1\u03b9': u'Tue', # d4f1e9 in iso-8859-7 + u'\u03a4\u03b5\u03c4': u'Wed', # d4e5f4 in iso-8859-7 + u'\u03a0\u03b5\u03bc': u'Thu', # d0e5ec in iso-8859-7 + u'\u03a0\u03b1\u03c1': u'Fri', # d0e1f1 in iso-8859-7 + u'\u03a3\u03b1\u03b2': u'Sat', # d3e1e2 in iso-8859-7 + } + +_greek_date_format_re = \ + re.compile(u'([^,]+),\s+(\d{2})\s+([^\s]+)\s+(\d{4})\s+(\d{2}):(\d{2}):(\d{2})\s+([^\s]+)') + +def _parse_date_greek(dateString): + '''Parse a string according to a Greek 8-bit date format.''' + m = _greek_date_format_re.match(dateString) + if not m: return + try: + wday = _greek_wdays[m.group(1)] + month = _greek_months[m.group(3)] + except: + return + rfc822date = '%(wday)s, %(day)s %(month)s %(year)s %(hour)s:%(minute)s:%(second)s %(zonediff)s' % \ + {'wday': wday, 'day': m.group(2), 'month': month, 'year': m.group(4),\ + 'hour': m.group(5), 'minute': m.group(6), 'second': m.group(7),\ + 'zonediff': m.group(8)} + if _debug: sys.stderr.write('Greek date parsed as: %s\n' % rfc822date) + return _parse_date_rfc822(rfc822date) +registerDateHandler(_parse_date_greek) + +# Unicode strings for Hungarian date strings +_hungarian_months = \ + { \ + u'janu\u00e1r': u'01', # e1 in iso-8859-2 + u'febru\u00e1ri': u'02', # e1 in iso-8859-2 + u'm\u00e1rcius': u'03', # e1 in iso-8859-2 + u'\u00e1prilis': u'04', # e1 in iso-8859-2 + u'm\u00e1ujus': u'05', # e1 in iso-8859-2 + u'j\u00fanius': u'06', # fa in iso-8859-2 + u'j\u00falius': u'07', # fa in iso-8859-2 + u'augusztus': u'08', + u'szeptember': u'09', + u'okt\u00f3ber': u'10', # f3 in iso-8859-2 + u'november': u'11', + u'december': u'12', + } + +_hungarian_date_format_re = \ + re.compile(u'(\d{4})-([^-]+)-(\d{,2})T(\d{,2}):(\d{2})((\+|-)(\d{,2}:\d{2}))') + +def _parse_date_hungarian(dateString): + '''Parse a string according to a Hungarian 8-bit date format.''' + m = _hungarian_date_format_re.match(dateString) + if not m: return + try: + month = _hungarian_months[m.group(2)] + day = m.group(3) + if len(day) == 1: + day = '0' + day + hour = m.group(4) + if len(hour) == 1: + hour = '0' + hour + except: + return + w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s%(zonediff)s' % \ + {'year': m.group(1), 'month': month, 'day': day,\ + 'hour': hour, 'minute': m.group(5),\ + 'zonediff': m.group(6)} + if _debug: sys.stderr.write('Hungarian date parsed as: %s\n' % w3dtfdate) + return _parse_date_w3dtf(w3dtfdate) +registerDateHandler(_parse_date_hungarian) + +# W3DTF-style date parsing adapted from PyXML xml.utils.iso8601, written by +# Drake and licensed under the Python license. Removed all range checking +# for month, day, hour, minute, and second, since mktime will normalize +# these later +def _parse_date_w3dtf(dateString): + def __extract_date(m): + year = int(m.group('year')) + if year < 100: + year = 100 * int(time.gmtime()[0] / 100) + int(year) + if year < 1000: + return 0, 0, 0 + julian = m.group('julian') + if julian: + julian = int(julian) + month = julian / 30 + 1 + day = julian % 30 + 1 + jday = None + while jday != julian: + t = time.mktime((year, month, day, 0, 0, 0, 0, 0, 0)) + jday = time.gmtime(t)[-2] + diff = abs(jday - julian) + if jday > julian: + if diff < day: + day = day - diff + else: + month = month - 1 + day = 31 + elif jday < julian: + if day + diff < 28: + day = day + diff + else: + month = month + 1 + return year, month, day + month = m.group('month') + day = 1 + if month is None: + month = 1 + else: + month = int(month) + day = m.group('day') + if day: + day = int(day) + else: + day = 1 + return year, month, day + + def __extract_time(m): + if not m: + return 0, 0, 0 + hours = m.group('hours') + if not hours: + return 0, 0, 0 + hours = int(hours) + minutes = int(m.group('minutes')) + seconds = m.group('seconds') + if seconds: + seconds = int(seconds) + else: + seconds = 0 + return hours, minutes, seconds + + def __extract_tzd(m): + '''Return the Time Zone Designator as an offset in seconds from UTC.''' + if not m: + return 0 + tzd = m.group('tzd') + if not tzd: + return 0 + if tzd == 'Z': + return 0 + hours = int(m.group('tzdhours')) + minutes = m.group('tzdminutes') + if minutes: + minutes = int(minutes) + else: + minutes = 0 + offset = (hours*60 + minutes) * 60 + if tzd[0] == '+': + return -offset + return offset + + __date_re = ('(?P\d\d\d\d)' + '(?:(?P-|)' + '(?:(?P\d\d\d)' + '|(?P\d\d)(?:(?P=dsep)(?P\d\d))?))?') + __tzd_re = '(?P[-+](?P\d\d)(?::?(?P\d\d))|Z)' + __tzd_rx = re.compile(__tzd_re) + __time_re = ('(?P\d\d)(?P:|)(?P\d\d)' + '(?:(?P=tsep)(?P\d\d(?:[.,]\d+)?))?' + + __tzd_re) + __datetime_re = '%s(?:T%s)?' % (__date_re, __time_re) + __datetime_rx = re.compile(__datetime_re) + m = __datetime_rx.match(dateString) + if (m is None) or (m.group() != dateString): return + gmt = __extract_date(m) + __extract_time(m) + (0, 0, 0) + if gmt[0] == 0: return + return time.gmtime(time.mktime(gmt) + __extract_tzd(m) - time.timezone) +registerDateHandler(_parse_date_w3dtf) + +def _parse_date_rfc822(dateString): + '''Parse an RFC822, RFC1123, RFC2822, or asctime-style date''' + data = dateString.split() + if data[0][-1] in (',', '.') or data[0].lower() in rfc822._daynames: + del data[0] + if len(data) == 4: + s = data[3] + i = s.find('+') + if i > 0: + data[3:] = [s[:i], s[i+1:]] + else: + data.append('') + dateString = " ".join(data) + if len(data) < 5: + dateString += ' 00:00:00 GMT' + tm = rfc822.parsedate_tz(dateString) + if tm: + return time.gmtime(rfc822.mktime_tz(tm)) +# rfc822.py defines several time zones, but we define some extra ones. +# 'ET' is equivalent to 'EST', etc. +_additional_timezones = {'AT': -400, 'ET': -500, 'CT': -600, 'MT': -700, 'PT': -800} +rfc822._timezones.update(_additional_timezones) +registerDateHandler(_parse_date_rfc822) + +def _parse_date(dateString): + '''Parses a variety of date formats into a 9-tuple in GMT''' + for handler in _date_handlers: + try: + date9tuple = handler(dateString) + if not date9tuple: continue + if len(date9tuple) != 9: + if _debug: sys.stderr.write('date handler function must return 9-tuple\n') + raise ValueError + map(int, date9tuple) + return date9tuple + except Exception, e: + if _debug: sys.stderr.write('%s raised %s\n' % (handler.__name__, repr(e))) + pass + return None + +def _getCharacterEncoding(http_headers, xml_data): + '''Get the character encoding of the XML document + + http_headers is a dictionary + xml_data is a raw string (not Unicode) + + This is so much trickier than it sounds, it's not even funny. + According to RFC 3023 ('XML Media Types'), if the HTTP Content-Type + is application/xml, application/*+xml, + application/xml-external-parsed-entity, or application/xml-dtd, + the encoding given in the charset parameter of the HTTP Content-Type + takes precedence over the encoding given in the XML prefix within the + document, and defaults to 'utf-8' if neither are specified. But, if + the HTTP Content-Type is text/xml, text/*+xml, or + text/xml-external-parsed-entity, the encoding given in the XML prefix + within the document is ALWAYS IGNORED and only the encoding given in + the charset parameter of the HTTP Content-Type header should be + respected, and it defaults to 'us-ascii' if not specified. + + Furthermore, discussion on the atom-syntax mailing list with the + author of RFC 3023 leads me to the conclusion that any document + served with a Content-Type of text/* and no charset parameter + must be treated as us-ascii. (We now do this.) And also that it + must always be flagged as non-well-formed. (We now do this too.) + + If Content-Type is unspecified (input was local file or non-HTTP source) + or unrecognized (server just got it totally wrong), then go by the + encoding given in the XML prefix of the document and default to + 'iso-8859-1' as per the HTTP specification (RFC 2616). + + Then, assuming we didn't find a character encoding in the HTTP headers + (and the HTTP Content-type allowed us to look in the body), we need + to sniff the first few bytes of the XML data and try to determine + whether the encoding is ASCII-compatible. Section F of the XML + specification shows the way here: + http://www.w3.org/TR/REC-xml/#sec-guessing-no-ext-info + + If the sniffed encoding is not ASCII-compatible, we need to make it + ASCII compatible so that we can sniff further into the XML declaration + to find the encoding attribute, which will tell us the true encoding. + + Of course, none of this guarantees that we will be able to parse the + feed in the declared character encoding (assuming it was declared + correctly, which many are not). CJKCodecs and iconv_codec help a lot; + you should definitely install them if you can. + http://cjkpython.i18n.org/ + ''' + + def _parseHTTPContentType(content_type): + '''takes HTTP Content-Type header and returns (content type, charset) + + If no charset is specified, returns (content type, '') + If no content type is specified, returns ('', '') + Both return parameters are guaranteed to be lowercase strings + ''' + content_type = content_type or '' + content_type, params = cgi.parse_header(content_type) + return content_type, params.get('charset', '').replace("'", '') + + sniffed_xml_encoding = '' + xml_encoding = '' + true_encoding = '' + http_content_type, http_encoding = _parseHTTPContentType(http_headers.get('content-type')) + # Must sniff for non-ASCII-compatible character encodings before + # searching for XML declaration. This heuristic is defined in + # section F of the XML specification: + # http://www.w3.org/TR/REC-xml/#sec-guessing-no-ext-info + try: + if xml_data[:4] == '\x4c\x6f\xa7\x94': + # EBCDIC + xml_data = _ebcdic_to_ascii(xml_data) + elif xml_data[:4] == '\x00\x3c\x00\x3f': + # UTF-16BE + sniffed_xml_encoding = 'utf-16be' + xml_data = unicode(xml_data, 'utf-16be').encode('utf-8') + elif (len(xml_data) >= 4) and (xml_data[:2] == '\xfe\xff') and (xml_data[2:4] != '\x00\x00'): + # UTF-16BE with BOM + sniffed_xml_encoding = 'utf-16be' + xml_data = unicode(xml_data[2:], 'utf-16be').encode('utf-8') + elif xml_data[:4] == '\x3c\x00\x3f\x00': + # UTF-16LE + sniffed_xml_encoding = 'utf-16le' + xml_data = unicode(xml_data, 'utf-16le').encode('utf-8') + elif (len(xml_data) >= 4) and (xml_data[:2] == '\xff\xfe') and (xml_data[2:4] != '\x00\x00'): + # UTF-16LE with BOM + sniffed_xml_encoding = 'utf-16le' + xml_data = unicode(xml_data[2:], 'utf-16le').encode('utf-8') + elif xml_data[:4] == '\x00\x00\x00\x3c': + # UTF-32BE + sniffed_xml_encoding = 'utf-32be' + xml_data = unicode(xml_data, 'utf-32be').encode('utf-8') + elif xml_data[:4] == '\x3c\x00\x00\x00': + # UTF-32LE + sniffed_xml_encoding = 'utf-32le' + xml_data = unicode(xml_data, 'utf-32le').encode('utf-8') + elif xml_data[:4] == '\x00\x00\xfe\xff': + # UTF-32BE with BOM + sniffed_xml_encoding = 'utf-32be' + xml_data = unicode(xml_data[4:], 'utf-32be').encode('utf-8') + elif xml_data[:4] == '\xff\xfe\x00\x00': + # UTF-32LE with BOM + sniffed_xml_encoding = 'utf-32le' + xml_data = unicode(xml_data[4:], 'utf-32le').encode('utf-8') + elif xml_data[:3] == '\xef\xbb\xbf': + # UTF-8 with BOM + sniffed_xml_encoding = 'utf-8' + xml_data = unicode(xml_data[3:], 'utf-8').encode('utf-8') + else: + # ASCII-compatible + pass + xml_encoding_match = re.compile('^<\?.*encoding=[\'"](.*?)[\'"].*\?>').match(xml_data) + except: + xml_encoding_match = None + if xml_encoding_match: + xml_encoding = xml_encoding_match.groups()[0].lower() + if sniffed_xml_encoding and (xml_encoding in ('iso-10646-ucs-2', 'ucs-2', 'csunicode', 'iso-10646-ucs-4', 'ucs-4', 'csucs4', 'utf-16', 'utf-32', 'utf_16', 'utf_32', 'utf16', 'u16')): + xml_encoding = sniffed_xml_encoding + acceptable_content_type = 0 + application_content_types = ('application/xml', 'application/xml-dtd', 'application/xml-external-parsed-entity') + text_content_types = ('text/xml', 'text/xml-external-parsed-entity') + if (http_content_type in application_content_types) or \ + (http_content_type.startswith('application/') and http_content_type.endswith('+xml')): + acceptable_content_type = 1 + true_encoding = http_encoding or xml_encoding or 'utf-8' + elif (http_content_type in text_content_types) or \ + (http_content_type.startswith('text/')) and http_content_type.endswith('+xml'): + acceptable_content_type = 1 + true_encoding = http_encoding or 'us-ascii' + elif http_content_type.startswith('text/'): + true_encoding = http_encoding or 'us-ascii' + elif http_headers and (not http_headers.has_key('content-type')): + true_encoding = xml_encoding or 'iso-8859-1' + else: + true_encoding = xml_encoding or 'utf-8' + return true_encoding, http_encoding, xml_encoding, sniffed_xml_encoding, acceptable_content_type + +def _toUTF8(data, encoding): + '''Changes an XML data stream on the fly to specify a new encoding + + data is a raw sequence of bytes (not Unicode) that is presumed to be in %encoding already + encoding is a string recognized by encodings.aliases + ''' + if _debug: sys.stderr.write('entering _toUTF8, trying encoding %s\n' % encoding) + # strip Byte Order Mark (if present) + if (len(data) >= 4) and (data[:2] == '\xfe\xff') and (data[2:4] != '\x00\x00'): + if _debug: + sys.stderr.write('stripping BOM\n') + if encoding != 'utf-16be': + sys.stderr.write('trying utf-16be instead\n') + encoding = 'utf-16be' + data = data[2:] + elif (len(data) >= 4) and (data[:2] == '\xff\xfe') and (data[2:4] != '\x00\x00'): + if _debug: + sys.stderr.write('stripping BOM\n') + if encoding != 'utf-16le': + sys.stderr.write('trying utf-16le instead\n') + encoding = 'utf-16le' + data = data[2:] + elif data[:3] == '\xef\xbb\xbf': + if _debug: + sys.stderr.write('stripping BOM\n') + if encoding != 'utf-8': + sys.stderr.write('trying utf-8 instead\n') + encoding = 'utf-8' + data = data[3:] + elif data[:4] == '\x00\x00\xfe\xff': + if _debug: + sys.stderr.write('stripping BOM\n') + if encoding != 'utf-32be': + sys.stderr.write('trying utf-32be instead\n') + encoding = 'utf-32be' + data = data[4:] + elif data[:4] == '\xff\xfe\x00\x00': + if _debug: + sys.stderr.write('stripping BOM\n') + if encoding != 'utf-32le': + sys.stderr.write('trying utf-32le instead\n') + encoding = 'utf-32le' + data = data[4:] + newdata = unicode(data, encoding) + if _debug: sys.stderr.write('successfully converted %s data to unicode\n' % encoding) + declmatch = re.compile('^<\?xml[^>]*?>') + newdecl = '''''' + if declmatch.search(newdata): + newdata = declmatch.sub(newdecl, newdata) + else: + newdata = newdecl + u'\n' + newdata + return newdata.encode('utf-8') + +def _stripDoctype(data): + '''Strips DOCTYPE from XML document, returns (rss_version, stripped_data) + + rss_version may be 'rss091n' or None + stripped_data is the same XML document, minus the DOCTYPE + ''' + entity_pattern = re.compile(r']*?)>', re.MULTILINE) + data = entity_pattern.sub('', data) + doctype_pattern = re.compile(r']*?)>', re.MULTILINE) + doctype_results = doctype_pattern.findall(data) + doctype = doctype_results and doctype_results[0] or '' + if doctype.lower().count('netscape'): + version = 'rss091n' + else: + version = None + data = doctype_pattern.sub('', data) + return version, data + +def parse(url_file_stream_or_string, etag=None, modified=None, agent=None, referrer=None, handlers=[]): + '''Parse a feed from a URL, file, stream, or string''' + result = FeedParserDict() + result['feed'] = FeedParserDict() + result['entries'] = [] + if _XML_AVAILABLE: + result['bozo'] = 0 + if type(handlers) == types.InstanceType: + handlers = [handlers] + try: + f = _open_resource(url_file_stream_or_string, etag, modified, agent, referrer, handlers) + data = f.read() + except Exception, e: + result['bozo'] = 1 + result['bozo_exception'] = e + data = '' + f = None + + # if feed is gzip-compressed, decompress it + if f and data and hasattr(f, 'headers'): + if gzip and f.headers.get('content-encoding', '') == 'gzip': + try: + data = gzip.GzipFile(fileobj=_StringIO(data)).read() + except Exception, e: + # Some feeds claim to be gzipped but they're not, so + # we get garbage. Ideally, we should re-request the + # feed without the 'Accept-encoding: gzip' header, + # but we don't. + result['bozo'] = 1 + result['bozo_exception'] = e + data = '' + elif zlib and f.headers.get('content-encoding', '') == 'deflate': + try: + data = zlib.decompress(data, -zlib.MAX_WBITS) + except Exception, e: + result['bozo'] = 1 + result['bozo_exception'] = e + data = '' + + # save HTTP headers + if hasattr(f, 'info'): + info = f.info() + result['etag'] = info.getheader('ETag') + last_modified = info.getheader('Last-Modified') + if last_modified: + result['modified'] = _parse_date(last_modified) + if hasattr(f, 'url'): + result['href'] = f.url + result['status'] = 200 + if hasattr(f, 'status'): + result['status'] = f.status + if hasattr(f, 'headers'): + result['headers'] = f.headers.dict + if hasattr(f, 'close'): + f.close() + + # there are four encodings to keep track of: + # - http_encoding is the encoding declared in the Content-Type HTTP header + # - xml_encoding is the encoding declared in the ; changed +# project name +#2.5 - 7/25/2003 - MAP - changed to Python license (all contributors agree); +# removed unnecessary urllib code -- urllib2 should always be available anyway; +# return actual url, status, and full HTTP headers (as result['url'], +# result['status'], and result['headers']) if parsing a remote feed over HTTP -- +# this should pass all the HTTP tests at ; +# added the latest namespace-of-the-week for RSS 2.0 +#2.5.1 - 7/26/2003 - RMK - clear opener.addheaders so we only send our custom +# User-Agent (otherwise urllib2 sends two, which confuses some servers) +#2.5.2 - 7/28/2003 - MAP - entity-decode inline xml properly; added support for +# inline and as used in some RSS 2.0 feeds +#2.5.3 - 8/6/2003 - TvdV - patch to track whether we're inside an image or +# textInput, and also to return the character encoding (if specified) +#2.6 - 1/1/2004 - MAP - dc:author support (MarekK); fixed bug tracking +# nested divs within content (JohnD); fixed missing sys import (JohanS); +# fixed regular expression to capture XML character encoding (Andrei); +# added support for Atom 0.3-style links; fixed bug with textInput tracking; +# added support for cloud (MartijnP); added support for multiple +# category/dc:subject (MartijnP); normalize content model: 'description' gets +# description (which can come from description, summary, or full content if no +# description), 'content' gets dict of base/language/type/value (which can come +# from content:encoded, xhtml:body, content, or fullitem); +# fixed bug matching arbitrary Userland namespaces; added xml:base and xml:lang +# tracking; fixed bug tracking unknown tags; fixed bug tracking content when +# element is not in default namespace (like Pocketsoap feed); +# resolve relative URLs in link, guid, docs, url, comments, wfw:comment, +# wfw:commentRSS; resolve relative URLs within embedded HTML markup in +# description, xhtml:body, content, content:encoded, title, subtitle, +# summary, info, tagline, and copyright; added support for pingback and +# trackback namespaces +#2.7 - 1/5/2004 - MAP - really added support for trackback and pingback +# namespaces, as opposed to 2.6 when I said I did but didn't really; +# sanitize HTML markup within some elements; added mxTidy support (if +# installed) to tidy HTML markup within some elements; fixed indentation +# bug in _parse_date (FazalM); use socket.setdefaulttimeout if available +# (FazalM); universal date parsing and normalization (FazalM): 'created', modified', +# 'issued' are parsed into 9-tuple date format and stored in 'created_parsed', +# 'modified_parsed', and 'issued_parsed'; 'date' is duplicated in 'modified' +# and vice-versa; 'date_parsed' is duplicated in 'modified_parsed' and vice-versa +#2.7.1 - 1/9/2004 - MAP - fixed bug handling " and '. fixed memory +# leak not closing url opener (JohnD); added dc:publisher support (MarekK); +# added admin:errorReportsTo support (MarekK); Python 2.1 dict support (MarekK) +#2.7.4 - 1/14/2004 - MAP - added workaround for improperly formed
    tags in +# encoded HTML (skadz); fixed unicode handling in normalize_attrs (ChrisL); +# fixed relative URI processing for guid (skadz); added ICBM support; added +# base64 support +#2.7.5 - 1/15/2004 - MAP - added workaround for malformed DOCTYPE (seen on many +# blogspot.com sites); added _debug variable +#2.7.6 - 1/16/2004 - MAP - fixed bug with StringIO importing +#3.0b3 - 1/23/2004 - MAP - parse entire feed with real XML parser (if available); +# added several new supported namespaces; fixed bug tracking naked markup in +# description; added support for enclosure; added support for source; re-added +# support for cloud which got dropped somehow; added support for expirationDate +#3.0b4 - 1/26/2004 - MAP - fixed xml:lang inheritance; fixed multiple bugs tracking +# xml:base URI, one for documents that don't define one explicitly and one for +# documents that define an outer and an inner xml:base that goes out of scope +# before the end of the document +#3.0b5 - 1/26/2004 - MAP - fixed bug parsing multiple links at feed level +#3.0b6 - 1/27/2004 - MAP - added feed type and version detection, result['version'] +# will be one of SUPPORTED_VERSIONS.keys() or empty string if unrecognized; +# added support for creativeCommons:license and cc:license; added support for +# full Atom content model in title, tagline, info, copyright, summary; fixed bug +# with gzip encoding (not always telling server we support it when we do) +#3.0b7 - 1/28/2004 - MAP - support Atom-style author element in author_detail +# (dictionary of 'name', 'url', 'email'); map author to author_detail if author +# contains name + email address +#3.0b8 - 1/28/2004 - MAP - added support for contributor +#3.0b9 - 1/29/2004 - MAP - fixed check for presence of dict function; added +# support for summary +#3.0b10 - 1/31/2004 - MAP - incorporated ISO-8601 date parsing routines from +# xml.util.iso8601 +#3.0b11 - 2/2/2004 - MAP - added 'rights' to list of elements that can contain +# dangerous markup; fiddled with decodeEntities (not right); liberalized +# date parsing even further +#3.0b12 - 2/6/2004 - MAP - fiddled with decodeEntities (still not right); +# added support to Atom 0.2 subtitle; added support for Atom content model +# in copyright; better sanitizing of dangerous HTML elements with end tags +# (script, frameset) +#3.0b13 - 2/8/2004 - MAP - better handling of empty HTML tags (br, hr, img, +# etc.) in embedded markup, in either HTML or XHTML form (
    ,
    ,
    ) +#3.0b14 - 2/8/2004 - MAP - fixed CDATA handling in non-wellformed feeds under +# Python 2.1 +#3.0b15 - 2/11/2004 - MAP - fixed bug resolving relative links in wfw:commentRSS; +# fixed bug capturing author and contributor URL; fixed bug resolving relative +# links in author and contributor URL; fixed bug resolvin relative links in +# generator URL; added support for recognizing RSS 1.0; passed Simon Fell's +# namespace tests, and included them permanently in the test suite with his +# permission; fixed namespace handling under Python 2.1 +#3.0b16 - 2/12/2004 - MAP - fixed support for RSS 0.90 (broken in b15) +#3.0b17 - 2/13/2004 - MAP - determine character encoding as per RFC 3023 +#3.0b18 - 2/17/2004 - MAP - always map description to summary_detail (Andrei); +# use libxml2 (if available) +#3.0b19 - 3/15/2004 - MAP - fixed bug exploding author information when author +# name was in parentheses; removed ultra-problematic mxTidy support; patch to +# workaround crash in PyXML/expat when encountering invalid entities +# (MarkMoraes); support for textinput/textInput +#3.0b20 - 4/7/2004 - MAP - added CDF support +#3.0b21 - 4/14/2004 - MAP - added Hot RSS support +#3.0b22 - 4/19/2004 - MAP - changed 'channel' to 'feed', 'item' to 'entries' in +# results dict; changed results dict to allow getting values with results.key +# as well as results[key]; work around embedded illformed HTML with half +# a DOCTYPE; work around malformed Content-Type header; if character encoding +# is wrong, try several common ones before falling back to regexes (if this +# works, bozo_exception is set to CharacterEncodingOverride); fixed character +# encoding issues in BaseHTMLProcessor by tracking encoding and converting +# from Unicode to raw strings before feeding data to sgmllib.SGMLParser; +# convert each value in results to Unicode (if possible), even if using +# regex-based parsing +#3.0b23 - 4/21/2004 - MAP - fixed UnicodeDecodeError for feeds that contain +# high-bit characters in attributes in embedded HTML in description (thanks +# Thijs van de Vossen); moved guid, date, and date_parsed to mapped keys in +# FeedParserDict; tweaked FeedParserDict.has_key to return True if asking +# about a mapped key +#3.0fc1 - 4/23/2004 - MAP - made results.entries[0].links[0] and +# results.entries[0].enclosures[0] into FeedParserDict; fixed typo that could +# cause the same encoding to be tried twice (even if it failed the first time); +# fixed DOCTYPE stripping when DOCTYPE contained entity declarations; +# better textinput and image tracking in illformed RSS 1.0 feeds +#3.0fc2 - 5/10/2004 - MAP - added and passed Sam's amp tests; added and passed +# my blink tag tests +#3.0fc3 - 6/18/2004 - MAP - fixed bug in _changeEncodingDeclaration that +# failed to parse utf-16 encoded feeds; made source into a FeedParserDict; +# duplicate admin:generatorAgent/@rdf:resource in generator_detail.url; +# added support for image; refactored parse() fallback logic to try other +# encodings if SAX parsing fails (previously it would only try other encodings +# if re-encoding failed); remove unichr madness in normalize_attrs now that +# we're properly tracking encoding in and out of BaseHTMLProcessor; set +# feed.language from root-level xml:lang; set entry.id from rdf:about; +# send Accept header +#3.0 - 6/21/2004 - MAP - don't try iso-8859-1 (can't distinguish between +# iso-8859-1 and windows-1252 anyway, and most incorrectly marked feeds are +# windows-1252); fixed regression that could cause the same encoding to be +# tried twice (even if it failed the first time) +#3.0.1 - 6/22/2004 - MAP - default to us-ascii for all text/* content types; +# recover from malformed content-type header parameter with no equals sign +# ('text/xml; charset:iso-8859-1') +#3.1 - 6/28/2004 - MAP - added and passed tests for converting HTML entities +# to Unicode equivalents in illformed feeds (aaronsw); added and +# passed tests for converting character entities to Unicode equivalents +# in illformed feeds (aaronsw); test for valid parsers when setting +# XML_AVAILABLE; make version and encoding available when server returns +# a 304; add handlers parameter to pass arbitrary urllib2 handlers (like +# digest auth or proxy support); add code to parse username/password +# out of url and send as basic authentication; expose downloading-related +# exceptions in bozo_exception (aaronsw); added __contains__ method to +# FeedParserDict (aaronsw); added publisher_detail (aaronsw) +#3.2 - 7/3/2004 - MAP - use cjkcodecs and iconv_codec if available; always +# convert feed to UTF-8 before passing to XML parser; completely revamped +# logic for determining character encoding and attempting XML parsing +# (much faster); increased default timeout to 20 seconds; test for presence +# of Location header on redirects; added tests for many alternate character +# encodings; support various EBCDIC encodings; support UTF-16BE and +# UTF16-LE with or without a BOM; support UTF-8 with a BOM; support +# UTF-32BE and UTF-32LE with or without a BOM; fixed crashing bug if no +# XML parsers are available; added support for 'Content-encoding: deflate'; +# send blank 'Accept-encoding: ' header if neither gzip nor zlib modules +# are available +#3.3 - 7/15/2004 - MAP - optimize EBCDIC to ASCII conversion; fix obscure +# problem tracking xml:base and xml:lang if element declares it, child +# doesn't, first grandchild redeclares it, and second grandchild doesn't; +# refactored date parsing; defined public registerDateHandler so callers +# can add support for additional date formats at runtime; added support +# for OnBlog, Nate, MSSQL, Greek, and Hungarian dates (ytrewq1); added +# zopeCompatibilityHack() which turns FeedParserDict into a regular +# dictionary, required for Zope compatibility, and also makes command- +# line debugging easier because pprint module formats real dictionaries +# better than dictionary-like objects; added NonXMLContentType exception, +# which is stored in bozo_exception when a feed is served with a non-XML +# media type such as 'text/plain'; respect Content-Language as default +# language if not xml:lang is present; cloud dict is now FeedParserDict; +# generator dict is now FeedParserDict; better tracking of xml:lang, +# including support for xml:lang='' to unset the current language; +# recognize RSS 1.0 feeds even when RSS 1.0 namespace is not the default +# namespace; don't overwrite final status on redirects (scenarios: +# redirecting to a URL that returns 304, redirecting to a URL that +# redirects to another URL with a different type of redirect); add +# support for HTTP 303 redirects +#4.0 - MAP - support for relative URIs in xml:base attribute; fixed +# encoding issue with mxTidy (phopkins); preliminary support for RFC 3229; +# support for Atom 1.0; support for iTunes extensions; new 'tags' for +# categories/keywords/etc. as array of dict +# {'term': term, 'scheme': scheme, 'label': label} to match Atom 1.0 +# terminology; parse RFC 822-style dates with no time; lots of other +# bug fixes +#4.1 - MAP - removed socket timeout; added support for chardet library + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/templates/wiki.mako b/document_page/web/widgets/templates/wiki.mako new file mode 100644 index 00000000..54976a8c --- /dev/null +++ b/document_page/web/widgets/templates/wiki.mako @@ -0,0 +1,23 @@ +% if editable and not inline: + + +% endif + +% if editable and inline: + +% endif + +% if editable and error: + ${error} +% endif + +% if not editable and value: +
    ${data|n}
    +% endif + diff --git a/document_page/web/widgets/wiki.py b/document_page/web/widgets/wiki.py new file mode 100644 index 00000000..ccf2a758 --- /dev/null +++ b/document_page/web/widgets/wiki.py @@ -0,0 +1,224 @@ +############################################################################### +# +# Copyright (C) 2007-TODAY Tiny ERP Pvt Ltd. All Rights Reserved. +# +# $Id$ +# +# Developed by Tiny (http://openerp.com) and Axelor (http://axelor.com). +# +# The OpenERP web client is distributed under the "OpenERP Public License". +# It's based on Mozilla Public License Version (MPL) 1.1 with following +# restrictions: +# +# - All names, links and logos of Tiny, OpenERP and Axelor must be +# kept as in original distribution without any changes in all software +# screens, especially in start-up page and the software header, even if +# the application source code has been changed or updated or code has been +# added. +# +# - All distributions of the software must keep source code with OEPL. +# +# - All integrations to any other software must keep source code with OEPL. +# +# If you need commercial licence to remove this kind of restriction please +# contact us. +# +# You can see the MPL licence at: http://www.mozilla.org/MPL/MPL-1.1.html +# +############################################################################### + +import re + +import cherrypy +import wikimarkup + +from openobject import rpc +from openobject.widgets import CSSLink + + +from openerp.widgets import register_widget +from openerp.widgets.form import Text + + +_image = re.compile(r'img:(.*)\.(.*)', re.UNICODE) +_rss = re.compile(r'rss:(.*)\.(.*)', re.UNICODE) +_attach = re.compile(r'attach:(.*)\.(.*)', re.UNICODE) +_internalLinks = re.compile(r'\[\[.*\]\]', re.UNICODE) +_edit = re.compile(r'edit:(.*)\|(.*)', re.UNICODE) +_view = re.compile(r'view:(.*)\|(.*)', re.UNICODE) + +class WikiParser(wikimarkup.Parser): + + def parse(self, text, id): + text = text.replace(' ', 'n-b-s-p') + text = text.replace('&', 'n-a-m-p') + text = text.replace('&','&') + text = text.replace('n-b-s-p', ' ') + text = text.replace('n-a-m-p', '&') + text = text.replace('', '
    ')
    +        text = text.replace('', '
    ') + + text = wikimarkup.to_unicode(text) + text = self.strip(text) + + text = super(WikiParser, self).parse(text) + text = self.addImage(text, id) + text = self.attachDoc(text, id) + text = self.recordLink(text) + text = self.viewRecordLink(text) + text = self.addInternalLinks(text) + #TODO : already implemented but we will implement it later after releasing the 5.0 + #text = self.addRss(text, id) + return text + + def viewRecordLink(self, text): + def record(path): + record = path.group().replace('view:','').split("|") + model = record[0] + text = record[1].replace('\r','').strip() + label = "View Record" + if len(record) > 2: + label = record[2] + proxy = rpc.RPCProxy(model) + ids = proxy.name_search(text, [], 'ilike', {}) + if len(ids): + id = ids[0][0] + else: + try: + id = int(text) + except: + id = 0 + return "[[/openerp/form/view?model=%s&id=%d | %s]]" % (model, id, label) + + bits = _view.sub(record, text) + return bits + + def addRss(self, text, id): + def addrss(path): + rssurl = path.group().replace('rss:','') + import rss.feedparser as feedparser + data = feedparser.parse(rssurl) + values = "

    %s


    " % (data.feed.title) + values += "%s
    " % (data.channel.description) + for entry in data['entries']: + values += "

    %s


    " % (entry.link, entry.title) + values += "%s
    " % (entry.summary) + + return values + + bits = _rss.sub(addrss, text) + return bits + + def attachDoc(self, text, id): + def document(path): + file = path.group().replace('attach:','') + if file.startswith('http') or file.startswith('ftp'): + return "Download File" % (file) + else: + proxy = rpc.RPCProxy('ir.attachment') + ids = proxy.search([('datas_fname','=',file.strip()), ('res_model','=','wiki.wiki'), ('res_id','=',id)]) + if len(ids) > 0: + return "%s" % (file, id, file) + else: + return """Attach : %s """ % (id, file) + bits = _attach.sub(document, text) + return bits + + def addImage(self, text, id): + def image(path): + file = path.group().replace('img:','') + if file.startswith('http') or file.startswith('ftp'): + return "" % (file) + else: + proxy = rpc.RPCProxy('ir.attachment') + ids = proxy.search([('datas_fname','=',file.strip()), ('res_model','=','wiki.wiki'), ('res_id','=',id)]) + if len(ids) > 0: + return "" % (file, id) + else: + return """Attach : %s """ % (id, file) + #"[[/attachment/?model=wiki.wiki&id=%d | Attach:%s]]" % (id, file) + bits = _image.sub(image, text) + return bits + + def recordLink(self, text): + def record(path): + record = path.group().replace('edit:','').split("|") + model = record[0] + text = record[1].replace('\r','').strip() + label = "Edit Record" + if len(record) > 2: + label = record[2] + proxy = rpc.RPCProxy(model) + ids = proxy.name_search(text, [], '=', {}) + if len(ids): + id = ids[0][0] + else: + try: + id = int(text) + except: + id = 0 + return "[[/openerp/form/edit?model=%s&id=%d | %s]]" % (model, id, label) + + bits = _edit.sub(record, text) + return bits + + def addInternalLinks(self, text): + proxy = rpc.RPCProxy('wiki.wiki') + + def link(path): + link = path.group().replace('[','').replace('[','').replace(']','').replace(']','').split("|") + name_to_search = link[0].strip() + mids = proxy.search([('name','ilike', name_to_search)]) + link_str = "" + if mids: + if len(link) == 2: + link_str = "%s" % (mids[0], link[1]) + elif len(link) == 1: + link_str = "%s" % (mids[0], link[0]) + else: + if len(link) == 2: + link_str = "%s" % (link[0], link[1]) + elif len(link) == 1: + link_str = "%s" % (link[0]) + + return link_str + + bits = _internalLinks.sub(link, text) + return bits + +def wiki2html(text, showToc, id): + p = WikiParser(show_toc=showToc) + return p.parse(text, id) + +class WikiWidget(Text): + template = "/wiki/widgets/templates/wiki.mako" + + params = ["data"] + + css = [CSSLink("wiki", "css/wiki.css")] + + data = None + + def set_value(self, value): + super(WikiWidget, self).set_value(value) + + if value: + toc = True + id = False + if hasattr(cherrypy.request, 'terp_record'): + params = cherrypy.request.terp_params + if params._terp_model == 'wiki.wiki': + proxy = rpc.RPCProxy('wiki.wiki') + toc = proxy.read([params.id], ['toc'])[0]['toc'] + id = params.id + + text = value+'\n\n' + html = wiki2html(text, toc, id) + + self.data = html + +register_widget(WikiWidget, ["text_wiki"]) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/wikimarkup/__init__.py b/document_page/web/widgets/wikimarkup/__init__.py new file mode 100644 index 00000000..f5fe67fa --- /dev/null +++ b/document_page/web/widgets/wikimarkup/__init__.py @@ -0,0 +1,2146 @@ +# coding: latin1 +""" +MediaWiki-style markup + +Copyright (C) 2008 David Cramer + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +""" + +import re, random, locale +from base64 import b64encode, b64decode + +# a few patterns we use later + +MW_COLON_STATE_TEXT = 0 +MW_COLON_STATE_TAG = 1 +MW_COLON_STATE_TAGSTART = 2 +MW_COLON_STATE_CLOSETAG = 3 +MW_COLON_STATE_TAGSLASH = 4 +MW_COLON_STATE_COMMENT = 5 +MW_COLON_STATE_COMMENTDASH = 6 +MW_COLON_STATE_COMMENTDASHDASH = 7 + +_attributePat = re.compile(ur'''(?:^|\s)([A-Za-z0-9]+)(?:\s*=\s*(?:"([^<"]*)"|'([^<']*)'|([a-zA-Z0-9!#$%&()*,\-./:;<>?@[\]^_`{|}~]+)|#([0-9a-fA-F]+)))''', re.UNICODE) +_space = re.compile(ur'\s+', re.UNICODE) +_closePrePat = re.compile(u"]*?)(/?>)([^<]*)$', re.UNICODE) + +_htmlpairs = ( # Tags that must be closed + u'b', u'del', u'i', u'ins', u'u', u'font', u'big', u'small', u'sub', u'sup', u'h1', + u'h2', u'h3', u'h4', u'h5', u'h6', u'cite', u'code', u'em', u's', + u'strike', u'strong', u'tt', u'var', u'div', u'center', + u'blockquote', u'ol', u'ul', u'dl', u'table', u'caption', u'pre', + u'ruby', u'rt' , u'rb' , u'rp', u'p', u'span', u'u', +) +_htmlsingle = ( + u'br', u'hr', u'li', u'dt', u'dd', u'img', +) +_htmlsingleonly = ( # Elements that cannot have close tags + u'br', u'hr', u'img', +) +_htmlnest = ( # Tags that can be nested--?? + u'table', u'tr', u'td', u'th', u'div', u'blockquote', u'ol', u'ul', + u'dl', u'font', u'big', u'small', u'sub', u'sup', u'span', u'img', +) +_tabletags = ( # Can only appear inside table + u'td', u'th', u'tr', +) +_htmllist = ( # Tags used by list + u'ul', u'ol', +) +_listtags = ( # Tags that can appear in a list + u'li', +) +_htmlsingleallowed = _htmlsingle + _tabletags +_htmlelements = _htmlsingle + _htmlpairs + _htmlnest + +_htmlEntities = { + u'Aacute': 193, u'aacute': 225, u'Acirc': 194, u'acirc': 226, u'acute': 180, + u'AElig': 198, u'aelig': 230, u'Agrave': 192, u'agrave': 224, u'alefsym': 8501, + u'Alpha': 913, u'alpha': 945, u'amp': 38, u'and': 8743, u'ang': 8736, u'Aring': 197, + u'aring': 229, + u'asymp': 8776, + u'Atilde': 195, + u'atilde': 227, + u'Auml': 196, + u'auml': 228, + u'bdquo': 8222, + u'Beta': 914, + u'beta': 946, + u'brvbar': 166, + u'bull': 8226, + u'cap': 8745, + u'Ccedil': 199, + u'ccedil': 231, + u'cedil': 184, + u'cent': 162, + u'Chi': 935, + u'chi': 967, + u'circ': 710, + u'clubs': 9827, + u'cong': 8773, + u'copy': 169, + u'crarr': 8629, + u'cup': 8746, + u'curren': 164, + u'dagger': 8224, + u'Dagger': 8225, + u'darr': 8595, + u'dArr': 8659, + u'deg': 176, + u'Delta': 916, + u'delta': 948, + u'diams': 9830, + u'divide': 247, + u'Eacute': 201, + u'eacute': 233, + u'Ecirc': 202, + u'ecirc': 234, + u'Egrave': 200, + u'egrave': 232, + u'empty': 8709, + u'emsp': 8195, + u'ensp': 8194, + u'Epsilon': 917, + u'epsilon': 949, + u'equiv': 8801, + u'Eta': 919, + u'eta': 951, + u'ETH': 208, + u'eth': 240, + u'Euml': 203, + u'euml': 235, + u'euro': 8364, + u'exist': 8707, + u'fnof': 402, + u'forall': 8704, + u'frac12': 189, + u'frac14': 188, + u'frac34': 190, + u'frasl': 8260, + u'Gamma': 915, + u'gamma': 947, + u'ge': 8805, + u'gt': 62, + u'harr': 8596, + u'hArr': 8660, + u'hearts': 9829, + u'hellip': 8230, + u'Iacute': 205, + u'iacute': 237, + u'Icirc': 206, + u'icirc': 238, + u'iexcl': 161, + u'Igrave': 204, + u'igrave': 236, + u'image': 8465, + u'infin': 8734, + u'int': 8747, + u'Iota': 921, + u'iota': 953, + u'iquest': 191, + u'isin': 8712, + u'Iuml': 207, + u'iuml': 239, + u'Kappa': 922, + u'kappa': 954, + u'Lambda': 923, + u'lambda': 955, + u'lang': 9001, + u'laquo': 171, + u'larr': 8592, + u'lArr': 8656, + u'lceil': 8968, + u'ldquo': 8220, + u'le': 8804, + u'lfloor': 8970, + u'lowast': 8727, + u'loz': 9674, + u'lrm': 8206, + u'lsaquo': 8249, + u'lsquo': 8216, + u'lt': 60, + u'macr': 175, + u'mdash': 8212, + u'micro': 181, + u'middot': 183, + u'minus': 8722, + u'Mu': 924, + u'mu': 956, + u'nabla': 8711, + u'nbsp': 160, + u'ndash': 8211, + u'ne': 8800, + u'ni': 8715, + u'not': 172, + u'notin': 8713, + u'nsub': 8836, + u'Ntilde': 209, + u'ntilde': 241, + u'Nu': 925, + u'nu': 957, + u'Oacute': 211, + u'oacute': 243, + u'Ocirc': 212, + u'ocirc': 244, + u'OElig': 338, + u'oelig': 339, + u'Ograve': 210, + u'ograve': 242, + u'oline': 8254, + u'Omega': 937, + u'omega': 969, + u'Omicron': 927, + u'omicron': 959, + u'oplus': 8853, + u'or': 8744, + u'ordf': 170, + u'ordm': 186, + u'Oslash': 216, + u'oslash': 248, + u'Otilde': 213, + u'otilde': 245, + u'otimes': 8855, + u'Ouml': 214, + u'ouml': 246, + u'para': 182, + u'part': 8706, + u'permil': 8240, + u'perp': 8869, + u'Phi': 934, + u'phi': 966, + u'Pi': 928, + u'pi': 960, + u'piv': 982, + u'plusmn': 177, + u'pound': 163, + u'prime': 8242, + u'Prime': 8243, + u'prod': 8719, + u'prop': 8733, + u'Psi': 936, + u'psi': 968, + u'quot': 34, + u'radic': 8730, + u'rang': 9002, + u'raquo': 187, + u'rarr': 8594, + u'rArr': 8658, + u'rceil': 8969, + u'rdquo': 8221, + u'real': 8476, + u'reg': 174, + u'rfloor': 8971, + u'Rho': 929, + u'rho': 961, + u'rlm': 8207, + u'rsaquo': 8250, + u'rsquo': 8217, + u'sbquo': 8218, + u'Scaron': 352, + u'scaron': 353, + u'sdot': 8901, + u'sect': 167, + u'shy': 173, + u'Sigma': 931, + u'sigma': 963, + u'sigmaf': 962, + u'sim': 8764, + u'spades': 9824, + u'sub': 8834, + u'sube': 8838, + u'sum': 8721, + u'sup': 8835, + u'sup1': 185, + u'sup2': 178, + u'sup3': 179, + u'supe': 8839, + u'szlig': 223, + u'Tau': 932, + u'tau': 964, + u'there4': 8756, + u'Theta': 920, + u'theta': 952, + u'thetasym': 977, + u'thinsp': 8201, + u'THORN': 222, + u'thorn': 254, + u'tilde': 732, + u'times': 215, + u'trade': 8482, + u'Uacute': 218, + u'uacute': 250, + u'uarr': 8593, + u'uArr': 8657, + u'Ucirc': 219, + u'ucirc': 251, + u'Ugrave': 217, + u'ugrave': 249, + u'uml': 168, + u'upsih': 978, + u'Upsilon': 933, + u'upsilon': 965, + u'Uuml': 220, + u'uuml': 252, + u'weierp': 8472, + u'Xi': 926, + u'xi': 958, + u'Yacute': 221, + u'yacute': 253, + u'yen': 165, + u'Yuml': 376, + u'yuml': 255, + u'Zeta': 918, + u'zeta': 950, + u'zwj': 8205, + u'zwnj': 8204 +} + +_charRefsPat = re.compile(ur'''(&([A-Za-z0-9]+);|&#([0-9]+);|&#[xX]([0-9A-Za-z]+);|(&))''', re.UNICODE) +_cssCommentPat = re.compile(ur'''\*.*?\*''', re.UNICODE) +_toUTFPat = re.compile(ur'''\\([0-9A-Fa-f]{1,6})[\s]?''', re.UNICODE) +_hackPat = re.compile(ur'''(expression|tps*://|url\s*\().*''', re.UNICODE | re.IGNORECASE) +_hrPat = re.compile(u'''^-----*''', re.UNICODE | re.MULTILINE) +_h1Pat = re.compile(u'^=(.+)=\s*$', re.UNICODE | re.MULTILINE) +_h2Pat = re.compile(u'^==(.+)==\s*$', re.UNICODE | re.MULTILINE) +_h3Pat = re.compile(u'^===(.+)===\s*$', re.UNICODE | re.MULTILINE) +_h4Pat = re.compile(u'^====(.+)====\s*$', re.UNICODE | re.MULTILINE) +_h5Pat = re.compile(u'^=====(.+)=====\s*$', re.UNICODE | re.MULTILINE) +_h6Pat = re.compile(u'^======(.+)======\s*$', re.UNICODE | re.MULTILINE) +_quotePat = re.compile(u"""(''+)""", re.UNICODE) +_removePat = re.compile(ur'\b(' + ur'|'.join((u"a", u"an", u"as", u"at", u"before", u"but", u"by", u"for", u"from", + u"is", u"in", u"into", u"like", u"of", u"off", u"on", u"onto", u"per", + u"since", u"than", u"the", u"this", u"that", u"to", u"up", u"via", + u"with")) + ur')\b', re.UNICODE | re.IGNORECASE) +_nonWordSpaceDashPat = re.compile(ur'[^\w\s\-\./]', re.UNICODE) +_multiSpacePat = re.compile(ur'[\s\-_\./]+', re.UNICODE) +_spacePat = re.compile(ur' ', re.UNICODE) +_linkPat = re.compile(ur'^(?:([A-Za-z0-9]+):)?([^\|]+)(?:\|([^\n]+?))?\]\](.*)$', re.UNICODE | re.DOTALL) +_bracketedLinkPat = re.compile(ur'(?:\[((?:mailto:|irc://|https?://|ftp://|/)[^<>\]\[' + u"\x00-\x20\x7f" + ur']*)\s*(.*?)\])', re.UNICODE) +_protocolPat = re.compile(ur'(\b(?:mailto:|irc://|https?://|ftp://))', re.UNICODE) +_specialUrlPat = re.compile(ur'^([^<>\]\[' + u"\x00-\x20\x7f" + ur']+)(.*)$', re.UNICODE) +_protocolsPat = re.compile(ur'^(mailto:|irc://|https?://|ftp://)$', re.UNICODE) +_controlCharsPat = re.compile(ur'[\]\[<>"' + u"\\x00-\\x20\\x7F" + ur']]', re.UNICODE) +_hostnamePat = re.compile(ur'^([^:]+:)(//[^/]+)?(.*)$', re.UNICODE) +_stripPat = re.compile(u'\\s|\u00ad|\u1806|\u200b|\u2060|\ufeff|\u03f4|\u034f|\u180b|\u180c|\u180d|\u200c|\u200d|[\ufe00-\ufe0f]', re.UNICODE) +_zomgPat = re.compile(ur'^(:*)\{\|(.*)$', re.UNICODE) +_headerPat = re.compile(ur"<[Hh]([1-6])(.*?)>(.*?)", re.UNICODE) +_templateSectionPat = re.compile(ur"", re.UNICODE) +_tagPat = re.compile(ur"<.*?>", re.UNICODE) +_startRegexHash = {} +_endRegexHash = {} +_endCommentPat = re.compile(ur'(-->)', re.UNICODE) +_extractTagsAndParams_n = 1 +_guillemetLeftPat = re.compile(ur'(.) (\?|:|;|!|\302\273)', re.UNICODE) +_guillemetRightPat = re.compile(ur'(\302\253) ', re.UNICODE) + +def setupAttributeWhitelist(): + common = ( u'id', u'class', u'lang', u'dir', u'title', u'style' ) + block = common + (u'align',) + tablealign = ( u'align', u'char', u'charoff', u'valign' ) + tablecell = ( u'abbr', + u'axis', + u'headers', + u'scope', + u'rowspan', + u'colspan', + u'nowrap', # deprecated + u'width', # deprecated + u'height', # deprecated + u'bgcolor' # deprecated + ) + return { + u'div': block, + u'center': common, # deprecated + u'span': block, # ?? + u'h1': block, + u'h2': block, + u'h3': block, + u'h4': block, + u'h5': block, + u'h6': block, + u'em': common, + u'strong': common, + u'cite': common, + u'code': common, + u'var': common, + u'img': common + (u'src', u'alt', u'width', u'height',), + u'blockquote': common + (u'cite',), + u'sub': common, + u'sup': common, + u'p': block, + u'br': (u'id', u'class', u'title', u'style', u'clear',), + u'pre': common + (u'width',), + u'ins': common + (u'cite', u'datetime'), + u'del': common + (u'cite', u'datetime'), + u'ul': common + (u'type',), + u'ol': common + (u'type', u'start'), + u'li': common + (u'type', u'value'), + u'dl': common, + u'dd': common, + u'dt': common, + u'table': common + ( u'summary', u'width', u'border', u'frame', + u'rules', u'cellspacing', u'cellpadding', + u'align', u'bgcolor', + ), + u'caption': common + (u'align',), + u'thead': common + tablealign, + u'tfoot': common + tablealign, + u'tbody': common + tablealign, + u'colgroup': common + ( u'span', u'width' ) + tablealign, + u'col': common + ( u'span', u'width' ) + tablealign, + u'tr': common + ( u'bgcolor', ) + tablealign, + u'td': common + tablecell + tablealign, + u'th': common + tablecell + tablealign, + u'tt': common, + u'b': common, + u'i': common, + u'big': common, + u'small': common, + u'strike': common, + u's': common, + u'u': common, + u'font': common + ( u'size', u'color', u'face' ), + u'hr': common + ( u'noshade', u'size', u'width' ), + u'ruby': common, + u'rb': common, + u'rt': common, #array_merge( $common, array( 'rbspan' ) ), + u'rp': common, + } +_whitelist = setupAttributeWhitelist() +_page_cache = {} +env = {} + +def registerTagHook(tag, function): + mTagHooks[tag] = function + +class BaseParser(object): + def __init__(self): + self.uniq_prefix = u"\x07UNIQ" + unicode(random.randint(1, 1000000000)) + self.strip_state = {} + self.arg_stack = [] + self.env = env + self.keep_env = (env != {}) + + def __del__(self): + if not self.keep_env: + global env + env = {} + + ''' Used to store objects in the environment + used to prevent recursive imports ''' + def store_object(self, namespace, key, value=True): + # Store the item to not reprocess it + if namespace not in self.env: + self.env[namespace] = {} + self.env[namespace][key] = value + + def has_object(self, namespace, key): + if namespace not in self.env: + self.env[namespace] = {} + if hasattr(self, 'count'): + data = self.env[namespace] + test = key in data + self.count = True + return key in self.env[namespace] + + def retrieve_object(self, namespace, key, default=None): + if not self.env.get(namespace): + self.env[namespace] = {} + return self.env[namespace].get(key, default) + + def parse(self, text): + utf8 = isinstance(text, str) + text = to_unicode(text) + if text[-1:] != u'\n': + text = text + u'\n' + taggedNewline = True + else: + taggedNewline = False + + text = self.strip(text) + text = self.removeHtmlTags(text) + text = self.parseHorizontalRule(text) + text = self.parseAllQuotes(text) + text = self.replaceExternalLinks(text) + text = self.unstrip(text) + text = self.fixtags(text) + text = self.doBlockLevels(text, True) + text = self.unstripNoWiki(text) + text = text.split(u'\n') + text = u'\n'.join(text) + if taggedNewline and text[-1:] == u'\n': + text = text[:-1] + if utf8: + return text.encode("utf-8") + return text + + def strip(self, text, stripcomments=False, dontstrip=[]): + render = True + + commentState = {} + + elements = ['nowiki',] + mTagHooks.keys() + if True: #wgRawHtml + elements.append('html') + + # Removing $dontstrip tags from $elements list (currently only 'gallery', fixing bug 2700) + for k in dontstrip: + if k in elements: + del elements[k] + + matches = {} + text = self.extractTagsAndParams(elements, text, matches) + + for marker in matches: + element, content, params, tag = matches[marker] + if render: + tagName = element.lower() + if tagName == u'!--': + # comment + output = tag + if tag[-3:] != u'-->': + output += "-->" + elif tagName == u'html': + output = content + elif tagName == u'nowiki': + output = content.replace(u'&', u'&').replace(u'<', u'<').replace(u'>', u'>') + else: + if tagName in mTagHooks: + output = mTagHooks[tagName](self, content, params) + else: + output = content.replace(u'&', u'&').replace(u'<', u'<').replace(u'>', u'>') + else: + # Just stripping tags; keep the source + output = tag + + # Unstrip the output, because unstrip() is no longer recursive so + # it won't do it itself + output = self.unstrip(output) + + if not stripcomments and element == u'!--': + commentState[marker] = output + elif element == u'html' or element == u'nowiki': + if 'nowiki' not in self.strip_state: + self.strip_state['nowiki'] = {} + self.strip_state['nowiki'][marker] = output + else: + if 'general' not in self.strip_state: + self.strip_state['general'] = {} + self.strip_state['general'][marker] = output + + # Unstrip comments unless explicitly told otherwise. + # (The comments are always stripped prior to this point, so as to + # not invoke any extension tags / parser hooks contained within + # a comment.) + if not stripcomments: + # Put them all back and forget them + for k in commentState: + v = commentState[k] + text = text.replace(k, v) + + return text + + def removeHtmlTags(self, text): + """convert bad tags into HTML identities""" + sb = [] + text = self.removeHtmlComments(text) + bits = text.split(u'<') + sb.append(bits.pop(0)) + tagstack = [] + tablestack = tagstack + for x in bits: + m = _tagPattern.match(x) + if not m: + continue + slash, t, params, brace, rest = m.groups() + t = t.lower() + badtag = False + if t in _htmlelements: + # Check our stack + if slash: + # Closing a tag... + if t in _htmlsingleonly or len(tagstack) == 0: + badtag = True + else: + ot = tagstack.pop() + if ot != t: + if ot in _htmlsingleallowed: + # Pop all elements with an optional close tag + # and see if we find a match below them + optstack = [] + optstack.append(ot) + while True: + if len(tagstack) == 0: + break + ot = tagstack.pop() + if ot == t or ot not in _htmlsingleallowed: + break + optstack.append(ot) + if t != ot: + # No match. Push the optinal elements back again + badtag = True + tagstack += reversed(optstack) + else: + tagstack.append(ot) + #
  • can be nested in
      or
        , skip those cases: + if ot not in _htmllist and t in _listtags: + badtag = True + elif t == u'table': + if len(tablestack) == 0: + bagtag = True + else: + tagstack = tablestack.pop() + newparams = u'' + else: + # Keep track for later + if t in _tabletags and u'table' not in tagstack: + badtag = True + elif t in tagstack and t not in _htmlnest: + badtag = True + # Is it a self-closed htmlpair? (bug 5487) + elif brace == u'/>' and t in _htmlpairs: + badTag = True + elif t in _htmlsingleonly: + # Hack to force empty tag for uncloseable elements + brace = u'/>' + elif t in _htmlsingle: + # Hack to not close $htmlsingle tags + brace = None + else: + if t == u'table': + tablestack.append(tagstack) + tagstack = [] + tagstack.append(t) + newparams = self.fixTagAttributes(params, t) + if not badtag: + rest = rest.replace(u'>', u'>') + if brace == u'/>': + close = u' /' + else: + close = u'' + sb.append(u'<') + sb.append(slash) + sb.append(t) + sb.append(newparams) + sb.append(close) + sb.append(u'>') + sb.append(rest) + continue + sb.append(u'<') + sb.append(x.replace(u'>', u'>')) + + # Close off any remaining tags + while tagstack: + t = tagstack.pop() + sb.append(u'\n') + if t == u'table': + if not tablestack: + break + tagstack = tablestack.pop() + + return u''.join(sb) + + def removeHtmlComments(self, text): + """remove comments from given text""" + sb = [] + start = text.find(u'', start) + if end == -1: + break + end += 3 + + spaceStart = max(0, start-1) + spaceEnd = end + while text[spaceStart] == u' ' and spaceStart > 0: + spaceStart -= 1 + while text[spaceEnd] == u' ': + spaceEnd += 1 + + if text[spaceStart] == u'\n' and text[spaceEnd] == u'\n': + sb.append(text[last:spaceStart]) + sb.append(u'\n') + last = spaceEnd+1 + else: + sb.append(text[last:spaceStart+1]) + last = spaceEnd + + start = text.find(u'' + + return result, mDTopen + + def nextItem(self, char, mDTopen): + if char == u'*' or char == '#': + return u'
      1. ', None + elif char == u':' or char == u';': + close = u'' + if mDTopen: + close = '' + if char == u';': + return close + u'
        ', True + else: + return close + u'
        ', False + return u'' + + def closeList(self, char, mDTopen): + if char == u'*': + return u'
    \n' + elif char == u'#': + return u'
  • \n' + elif char == u':': + if mDTopen: + return u'\n' + else: + return u'\n' + else: + return u'' + + def findColonNoLinks(self, text, before, after): + try: + pos = text.search(':') + except: + return False + + lt = text.find('<') + if lt == -1 or lt > pos: + # Easy; no tag nesting to worry about + before = text[0:pos] + after = text[0:pos+1] + return before, after, pos + + # Ugly state machine to walk through avoiding tags. + state = MW_COLON_STATE_TEXT; + stack = 0; + i = 0 + while i < len(text): + c = text[i]; + + if state == 0: # MW_COLON_STATE_TEXT: + if text[i] == '<': + # Could be either a tag or an tag + state = MW_COLON_STATE_TAGSTART + elif text[i] == ':': + if stack == 0: + # we found it + return text[0:i], text[i+1], i + else: + # Skip ahead looking for something interesting + try: + colon = text.search(':', i) + except: + return False + lt = text.find('<', i) + if stack == 0: + if lt == -1 or colon < lt: + # we found it + return text[0:colon], text[colon+1], i + if lt == -1: + break + # Skip ahead to next tag start + i = lt + state = MW_COLON_STATE_TAGSTART + elif state == 1: # MW_COLON_STATE_TAG: + # In a + if text[i] == '>': + stack += 1 + state = MW_COLON_STATE_TEXT + elif text[i] == '/': + state = MW_COLON_STATE_TAGSLASH + elif state == 2: # MW_COLON_STATE_TAGSTART: + if text[i] == '/': + state = MW_COLON_STATE_CLOSETAG + elif text[i] == '!': + state = MW_COLON_STATE_COMMENT + elif text[i] == '>': + # Illegal early close? This shouldn't happen D: + state = MW_COLON_STATE_TEXT + else: + state = MW_COLON_STATE_TAG + elif state == 3: # MW_COLON_STATE_CLOSETAG: + # In a + if text[i] == '>': + stack -= 1 + if stack < 0: + return False + state = MW_COLON_STATE_TEXT + elif state == MW_COLON_STATE_TAGSLASH: + if text[i] == '>': + # Yes, a self-closed tag + state = MW_COLON_STATE_TEXT + else: + # Probably we're jumping the gun, and this is an attribute + state = MW_COLON_STATE_TAG + elif state == 5: # MW_COLON_STATE_COMMENT: + if text[i] == '-': + state = MW_COLON_STATE_COMMENTDASH + elif state == MW_COLON_STATE_COMMENTDASH: + if text[i] == '-': + state = MW_COLON_STATE_COMMENTDASHDASH + else: + state = MW_COLON_STATE_COMMENT + elif state == MW_COLON_STATE_COMMENTDASHDASH: + if text[i] == '>': + state = MW_COLON_STATE_TEXT + else: + state = MW_COLON_STATE_COMMENT + else: + raise + if stack > 0: + return False + return False + + def doBlockLevels(self, text, linestart): + # Parsing through the text line by line. The main thing + # happening here is handling of block-level elements p, pre, + # and making lists from lines starting with * # : etc. + lastPrefix = u'' + mDTopen = inBlockElem = False + prefixLength = 0 + paragraphStack = False + _closeMatchPat = re.compile(ur"( 0: + tmpOutput, tmpMDTopen = self.nextItem(pref[commonPrefixLength-1], mDTopen) + output.append(tmpOutput) + if tmpMDTopen is not None: + mDTopen = tmpMDTopen + + while prefixLength > commonPrefixLength: + char = pref[commonPrefixLength:commonPrefixLength+1] + tmpOutput, tmpMDTOpen = self.openList(char, mLastSection) + if tmpMDTOpen: + mDTopen = True + output.append(tmpOutput) + mLastSection = u'' + mInPre = False + + if char == u';': + # FIXME: This is dupe of code above + term = t2 = u'' + z = self.findColonNoLinks(t, term, t2) + if z != False: + term, t2 = z[1:2] + t = t2 + output.append(term) + tmpOutput, tmpMDTopen = self.nextItem(u':', mDTopen) + output.append(tmpOutput) + if tmpMDTopen is not None: + mDTopen = tmpMDTopen + + commonPrefixLength += 1 + + lastPrefix = pref2 + + if prefixLength == 0: + # No prefix (not in list)--go to paragraph mode + # XXX: use a stack for nestable elements like span, table and div + openmatch = _openMatchPat.search(t) + closematch = _closeMatchPat.search(t) + if openmatch or closematch: + paragraphStack = False + output.append(self.closeParagraph(mLastSection)) + mLastSection = u'' + if preCloseMatch: + mInPre = False + if preOpenMatch: + mInPre = True + inBlockElem = bool(not closematch) + elif not inBlockElem and not mInPre: + if t[0:1] == u' ' and (mLastSection == u'pre' or t.strip() != u''): + # pre + if mLastSection != u'pre': + paragraphStack = False + output.append(self.closeParagraph(u'') + u'
    ')
    +							mInPre = False
    +							mLastSection = u'pre'
    +						t = t[1:]
    +					else:
    +						# paragraph
    +						if t.strip() == u'':
    +							if paragraphStack:
    +								output.append(paragraphStack + u'
    ') + paragraphStack = False + mLastSection = u'p' + else: + if mLastSection != u'p': + output.append(self.closeParagraph(mLastSection)) + mLastSection = u'' + mInPre = False + paragraphStack = u'

    ' + else: + paragraphStack = u'

    ' + else: + if paragraphStack: + output.append(paragraphStack) + paragraphStack = False + mLastSection = u'p' + elif mLastSection != u'p': + output.append(self.closeParagraph(mLastSection) + u'

    ') + mLastSection = u'p' + mInPre = False + + # somewhere above we forget to get out of pre block (bug 785) + if preCloseMatch and mInPre: + mInPre = False + + if paragraphStack == False: + output.append(t + u"\n") + + while prefixLength: + output.append(self.closeList(pref2[prefixLength-1], mDTopen)) + mDTopen = False + prefixLength -= 1 + + if mLastSection != u'': + output.append(u'') + mLastSection = u'' + + return ''.join(output) + +class Parser(BaseParser): + def __init__(self, show_toc=True): + super(Parser, self).__init__() + self.show_toc = show_toc + + def parse(self, text): + utf8 = isinstance(text, str) + text = to_unicode(text) + if text[-1:] != u'\n': + text = text + u'\n' + taggedNewline = True + else: + taggedNewline = False + + text = self.strip(text) + text = self.removeHtmlTags(text) + text = self.doTableStuff(text) + text = self.parseHorizontalRule(text) + text = self.checkTOC(text) + text = self.parseHeaders(text) + text = self.parseAllQuotes(text) + text = self.replaceExternalLinks(text) + if not self.show_toc and text.find(u"") == -1: + self.show_toc = False + text = self.formatHeadings(text, True) + text = self.unstrip(text) + text = self.fixtags(text) + text = self.doBlockLevels(text, True) + text = self.unstripNoWiki(text) + text = text.split(u'\n') + text = u'\n'.join(text) + if taggedNewline and text[-1:] == u'\n': + text = text[:-1] + if utf8: + return text.encode("utf-8") + return text + + def checkTOC(self, text): + if text.find(u"__NOTOC__") != -1: + text = text.replace(u"__NOTOC__", u"") + self.show_toc = False + if text.find(u"__TOC__") != -1: + text = text.replace(u"__TOC__", u"") + self.show_toc = True + return text + + def doTableStuff(self, text): + t = text.split(u"\n") + td = [] # Is currently a td tag open? + ltd = [] # Was it TD or TH? + tr = [] # Is currently a tr tag open? + ltr = [] # tr attributes + has_opened_tr = [] # Did this table open a element? + indent_level = 0 # indent level of the table + + for k, x in zip(range(len(t)), t): + x = x.strip() + fc = x[0:1] + matches = _zomgPat.match(x) + if matches: + indent_level = len(matches.group(1)) + + attributes = self.unstripForHTML(matches.group(2)) + + t[k] = u'

    '*indent_level + u'' + td.append(False) + ltd.append(u'') + tr.append(False) + ltr.append(u'') + has_opened_tr.append(False) + elif len(td) == 0: + pass + elif u'|}' == x[0:2]: + z = u"" + x[2:] + l = ltd.pop() + if not has_opened_tr.pop(): + z = u"" + z + if tr.pop(): + z = u"" + z + if td.pop(): + z = u'' + z + ltr.pop() + t[k] = z + u'
    '*indent_level + elif u'|-' == x[0:2]: # Allows for |------------- + x = x[1:] + while x != u'' and x[0:1] == '-': + x = x[1:] + z = '' + l = ltd.pop() + has_opened_tr.pop() + has_opened_tr.append(True) + if tr.pop(): + z = u'' + z + if td.pop(): + z = u'' + z + ltr.pop() + t[k] = z + tr.append(False) + td.append(False) + ltd.append(u'') + attributes = self.unstripForHTML(x) + ltr.append(self.fixTagAttributes(attributes, u'tr')) + elif u'|' == fc or u'!' == fc or u'|+' == x[0:2]: # Caption + # x is a table row + if u'|+' == x[0:2]: + fc = u'+' + x = x[1:] + x = x[1:] + if fc == u'!': + x = x.replace(u'!!', u'||') + # Split up multiple cells on the same line. + # FIXME: This can result in improper nesting of tags processed + # by earlier parser steps, but should avoid splitting up eg + # attribute values containing literal "||". + x = x.split(u'||') + + t[k] = u'' + + # Loop through each table cell + for theline in x: + z = '' + if fc != u'+': + tra = ltr.pop() + if not tr.pop(): + z = u'\n' + tr.append(True) + ltr.append(u'') + has_opened_tr.pop() + has_opened_tr.append(True) + l = ltd.pop() + if td.pop(): + z = u'' + z + if fc == u'|': + l = u'td' + elif fc == u'!': + l = u'th' + elif fc == u'+': + l = u'caption' + else: + l = u'' + ltd.append(l) + + #Cell parameters + y = theline.split(u'|', 1) + # Note that a '|' inside an invalid link should not + # be mistaken as delimiting cell parameters + if y[0].find(u'[[') != -1: + y = [theline] + + if len(y) == 1: + y = z + u"<" + l + u">" + y[0] + else: + attributes = self.unstripForHTML(y[0]) + y = z + u"<" + l + self.fixTagAttributes(attributes, l) + u">" + y[1] + + t[k] += y + td.append(True) + + while len(td) > 0: + l = ltd.pop() + if td.pop(): + t.append(u'') + if tr.pop(): + t.append(u'') + if not has_opened_tr.pop(): + t.append(u'') + t.append(u'') + + text = u'\n'.join(t) + # special case: don't return empty table + if text == u"\n\n
    ": + text = u'' + + return text + + def formatHeadings(self, text, isMain): + """ + This function accomplishes several tasks: + 1) Auto-number headings if that option is enabled + 2) Add an [edit] link to sections for logged in users who have enabled the option + 3) Add a Table of contents on the top for users who have enabled the option + 4) Auto-anchor headings + + It loops through all headlines, collects the necessary data, then splits up the + string and re-inserts the newly formatted headlines. + """ + doNumberHeadings = False + showEditLink = True # Can User Edit + + if text.find(u"__NOEDITSECTION__") != -1: + showEditLink = False + text = text.replace(u"__NOEDITSECTION__", u"") + + # Get all headlines for numbering them and adding funky stuff like [edit] + # links - this is for later, but we need the number of headlines right now + matches = _headerPat.findall(text) + numMatches = len(matches) + + # if there are fewer than 4 headlines in the article, do not show TOC + # unless it's been explicitly enabled. + enoughToc = self.show_toc and (numMatches >= 4 or text.find(u"") != -1) + + # Allow user to stipulate that a page should have a "new section" + # link added via __NEWSECTIONLINK__ + showNewSection = False + if text.find(u"__NEWSECTIONLINK__") != -1: + showNewSection = True + text = text.replace(u"__NEWSECTIONLINK__", u"") + # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML, + # override above conditions and always show TOC above first header + if text.find(u"__FORCETOC__") != -1: + self.show_toc = True + enoughToc = True + text = text.replace(u"__FORCETOC__", u"") + # Never ever show TOC if no headers + if numMatches < 1: + enoughToc = False + + # headline counter + headlineCount = 0 + sectionCount = 0 # headlineCount excluding template sections + + # Ugh .. the TOC should have neat indentation levels which can be + # passed to the skin functions. These are determined here + toc = [] + head = {} + sublevelCount = {} + levelCount = {} + toclevel = 0 + level = 0 + prevlevel = 0 + toclevel = 0 + prevtoclevel = 0 + refers = {} + refcount = {} + wgMaxTocLevel = 5 + + for match in matches: + headline = match[2] + istemplate = False + templatetitle = u'' + templatesection = 0 + numbering = [] + + m = _templateSectionPat.search(headline) + if m: + istemplate = True + templatetitle = b64decode(m[0]) + templatesection = 1 + int(b64decode(m[1])) + headline = _templateSectionPat.sub(u'', headline) + + if toclevel: + prevlevel = level + prevtoclevel = toclevel + + level = matches[headlineCount][0] + + if doNumberHeadings or enoughToc: + if level > prevlevel: + toclevel += 1 + sublevelCount[toclevel] = 0 + if toclevel < wgMaxTocLevel: + toc.append(u'\n
      ') + elif level < prevlevel and toclevel > 1: + # Decrease TOC level, find level to jump to + + if toclevel == 2 and level < levelCount[1]: + toclevel = 1 + else: + for i in range(toclevel, 0, -1): + if levelCount[i] == level: + # Found last matching level + toclevel = i + break + elif levelCount[i] < level: + toclevel = i + 1 + break + if toclevel < wgMaxTocLevel: + toc.append(u"\n") + toc.append(u"
    \n\n" * max(prevtoclevel - toclevel, 0)) + else: + if toclevel < wgMaxTocLevel: + toc.append(u"\n") + + levelCount[toclevel] = level + + # count number of headlines for each level + sublevelCount[toclevel] += 1 + for i in range(1, toclevel+1): + if sublevelCount[i]: + numbering.append(to_unicode(sublevelCount[i])) + + # The canonized header is a version of the header text safe to use for links + # Avoid insertion of weird stuff like by expanding the relevant sections + canonized_headline = self.unstrip(headline) + canonized_headline = self.unstripNoWiki(canonized_headline) + + # -- don't know what to do with this yet. + # Remove link placeholders by the link text. + # + # turns into + # link text with suffix + # $canonized_headline = preg_replace( '//e', + # "\$this->mLinkHolders['texts'][\$1]", + # $canonized_headline ); + # $canonized_headline = preg_replace( '//e', + # "\$this->mInterwikiLinkHolders['texts'][\$1]", + # $canonized_headline ); + + # strip out HTML + canonized_headline = _tagPat.sub(u'', canonized_headline) + tocline = canonized_headline.strip() + # Save headline for section edit hint before it's escaped + headline_hint = tocline + canonized_headline = self.escapeId(tocline) + refers[headlineCount] = canonized_headline + + # count how many in assoc. array so we can track dupes in anchors + if canonized_headline not in refers: + refers[canonized_headline] = 1 + else: + refers[canonized_headline] += 1 + refcount[headlineCount] = refers[canonized_headline] + + numbering = '.'.join(numbering) + + # Don't number the heading if it is the only one (looks silly) + if doNumberHeadings and numMatches > 1: + # the two are different if the line contains a link + headline = numbering + u' ' + headline + + # Create the anchor for linking from the TOC to the section + anchor = canonized_headline; + if refcount[headlineCount] > 1: + anchor += u'_' + unicode(refcount[headlineCount]) + + if enoughToc: + toc.append(u'\n
  • ') + toc.append(numbering) + toc.append(u' ') + toc.append(tocline) + toc.append(u'') + + # if showEditLink and (not istemplate or templatetitle != u""): + # if not head[headlineCount]: + # head[headlineCount] = u'' + # + # if istemplate: + # head[headlineCount] += sk.editSectionLinkForOther(templatetile, templatesection) + # else: + # head[headlineCount] += sk.editSectionLink(mTitle, sectionCount+1, headline_hint) + + # give headline the correct tag + if headlineCount not in head: + head[headlineCount] = [] + h = head[headlineCount] + h.append(u'') + h.append(matches[headlineCount][1].strip()) + h.append(headline.strip()) + h.append(u'') + + headlineCount += 1 + + if not istemplate: + sectionCount += 1 + + if enoughToc: + if toclevel < wgMaxTocLevel: + toc.append(u"
  • \n") + toc.append(u"\n\n" * max(0, toclevel - 1)) + #TODO: use gettext + #toc.insert(0, u'

    ' + _('Table of Contents') + '

    ') + toc.insert(0, u'

    Table of Contents

    ') + toc.append(u'\n
    ') + + # split up and insert constructed headlines + + blocks = _headerPat.split(text) + + i = 0 + len_blocks = len(blocks) + forceTocPosition = text.find(u"") + full = [] + while i < len_blocks: + j = i/4 + full.append(blocks[i]) + if enoughToc and not i and isMain and forceTocPosition == -1: + full += toc + toc = None + if j in head and head[j]: + full += head[j] + head[j] = None + i += 4 + full = u''.join(full) + if forceTocPosition != -1: + return full.replace(u"", u''.join(toc), 1) + else: + return full + +def parse(text, showToc=True): + """Returns HTML from MediaWiki markup""" + p = Parser(show_toc=showToc) + return p.parse(text) + +def parselite(text): + """Returns HTML from MediaWiki markup ignoring + without headings""" + p = BaseParser() + return p.parse(text) + +def truncate_url(url, length=40): + if len(url) <= length: + return url + import re + pattern = r'(/[^/]+/?)$' + match = re.search(pattern, url) + if not match: + return url + l = len(match.group(1)) + domain = url.replace(match.group(1), '') + firstpart = url[0:len(url)-l] + secondpart = match.group(1) + if firstpart == firstpart[0:length-3]: + secondpart = secondpart[0:length-3] + '...' + else: + firstpart = firstpart[0:length-3] + secondpart = '...' + secondpart + t_url = firstpart+secondpart + return t_url + +def to_unicode(text, charset=None): + """Convert a `str` object to an `unicode` object. + + If `charset` is given, we simply assume that encoding for the text, + but we'll use the "replace" mode so that the decoding will always + succeed. + If `charset` is ''not'' specified, we'll make some guesses, first + trying the UTF-8 encoding, then trying the locale preferred encoding, + in "replace" mode. This differs from the `unicode` builtin, which + by default uses the locale preferred encoding, in 'strict' mode, + and is therefore prompt to raise `UnicodeDecodeError`s. + + Because of the "replace" mode, the original content might be altered. + If this is not what is wanted, one could map the original byte content + by using an encoding which maps each byte of the input to an unicode + character, e.g. by doing `unicode(text, 'iso-8859-1')`. + """ + if not isinstance(text, str): + if isinstance(text, Exception): + # two possibilities for storing unicode strings in exception data: + try: + # custom __str__ method on the exception (e.g. PermissionError) + return unicode(text) + except UnicodeError: + # unicode arguments given to the exception (e.g. parse_date) + return ' '.join([to_unicode(arg) for arg in text.args]) + return unicode(text) + if charset: + return unicode(text, charset, 'replace') + else: + try: + return unicode(text, 'utf-8') + except UnicodeError: + return unicode(text, locale.getpreferredencoding(), 'replace') + +# tag hooks +mTagHooks = {} + +## IMPORTANT +## Make sure all hooks output CLEAN html. Escape any user input BEFORE it's returned + +# Arguments passed: +# - wiki environment instance +# - tag content +# - dictionary of attributes + +# quote example: +# quote +from cgi import escape + +def hook_quote(env, body, attributes={}): + text = [u'
    '] + if 'cite' in attributes: + text.append(u"%s wrote:\n" % escape(attributes['cite'])) + text.append(body.strip()) + text.append(u'
    ') + return u'\n'.join(text) +registerTagHook('quote', hook_quote) + +def safe_name(name=None, remove_slashes=True): + if name is None: + return None + name = str2url(name) + if remove_slashes: + name = re.sub(r"[^a-zA-Z0-9\-_\s\.]", "", name) + else: + name = re.sub(r"[^a-zA-Z0-9\-_\s\.\/]", "", name) + name = re.sub(r"[\s\._]", "-", name) + name = re.sub(r"[-]+", "-", name) + return name.strip("-").lower() + +def str2url(str): + """ + Takes a UTF-8 string and replaces all characters with the equivalent in 7-bit + ASCII. It returns a plain ASCII string usable in URLs. + """ + try: + str = str.encode('utf-8') + except: + pass + mfrom = "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝßàáâãäåæçèéêëìíîï" + to = "AAAAAAECEEEEIIIIDNOOOOOOUUUUYSaaaaaaaceeeeiiii" + mfrom += "ñòóôõöøùúûüýÿĀāĂ㥹ĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģ" + to += "noooooouuuuyyaaaaaaccccccccddddeeeeeeeeeegggggggg" + mfrom += "ĤĥĦħĨĩĪīĬĭĮįİıĴĵĶķĸĹĺĻļĽľĿŀŁłŃńŅņŇňʼnŊŋŌōŎŏŐőŒœŔŕŖŗŘř" + to += "hhhhiiiiiiiiiijjkkkllllllllllnnnnnnnnnoooooooorrrrrr" + mfrom += "ŚśŜŝŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƂƃƄƅƇƈƉƊƐƑƒƓƔ" + to += "ssssssssttttttuuuuuuuuuuuuwwyyyzzzzzzfbbbbbccddeffgv" + mfrom += "ƖƗƘƙƚƝƞƟƠƤƦƫƬƭƮƯưƱƲƳƴƵƶǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟǠǡǢǣǤǥǦǧǨǩ" + to += "likklnnoopettttuuuuyyzzaaiioouuuuuuuuuueaaaaeeggggkk" + mfrom += "ǪǫǬǭǰǴǵǷǸǹǺǻǼǽǾǿȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȞȟȤȥȦȧȨȩ" + to += "oooojggpnnaaeeooaaaaeeeeiiiioooorrrruuuusstthhzzaaee" + mfrom += "ȪȫȬȭȮȯȰȱȲȳḀḁḂḃḄḅḆḇḈḉḊḋḌḍḎḏḐḑḒḓḔḕḖḗḘḙḚḛḜḝḞḟḠḡḢḣḤḥḦḧḨḩḪḫ" + to += "ooooooooyyaabbbbbbccddddddddddeeeeeeeeeeffgghhhhhhhhhh" + mfrom += "ḬḭḮḯḰḱḲḳḴḵḶḷḸḹḺḻḼḽḾḿṀṁṂṃṄṅṆṇṈṉṊṋṌṍṎṏṐṑṒṓṔṕṖṗṘṙṚṛṜṝṞṟ" + to += "iiiikkkkkkllllllllmmmmmmnnnnnnnnoooooooopppprrrrrrrr" + mfrom += "ṠṡṢṣṤṥṦṧṨṩṪṫṬṭṮṯṰṱṲṳṴṵṶṷṸṹṺṻṼṽṾṿẀẁẂẃẄẅẆẇẈẉẊẋẌẍẎẏẐẑẒẓẔẕ" + to += "ssssssssssttttttttuuuuuuuuuuvvvvwwwwwwwwwwxxxxxyzzzzzz" + mfrom += "ẖẗẘẙẚẛẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặẸẹẺẻẼẽẾếỀềỂểỄễỆệỈỉỊị" + to += "htwyafaaaaaaaaaaaaaaaaaaaaaaaaeeeeeeeeeeeeeeeeiiii" + mfrom += "ỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợỤụỦủỨứỪừỬửỮữỰựỲỳỴỵỶỷỸỹ" + to += "oooooooooooooooooooooooouuuuuuuuuuuuuuyyyyyyyy" + for i in zip(mfrom, to): + str = str.replace(*i) + return str + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/__init__.py b/document_page/wizard/__init__.py new file mode 100644 index 00000000..e2453464 --- /dev/null +++ b/document_page/wizard/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +import document_page_create_menu +import document_page_show_diff + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py new file mode 100644 index 00000000..3678820d --- /dev/null +++ b/document_page/wizard/document_page_create_menu.py @@ -0,0 +1,88 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +from openerp import SUPERUSER_ID +from openerp.osv import fields, osv + +class document_page_create_menu(osv.osv_memory): + """ Create Menu """ + _name = "document.page.create.menu" + _description = "Wizard Create Menu" + + _columns = { + 'menu_name': fields.char('Menu Name', size=256, required=True), + 'menu_parent_id': fields.many2one('ir.ui.menu', 'Parent Menu', required=True), + } + + def default_get(self, cr, uid, fields, context=None): + if context is None: + context = {} + res = super(document_page_create_menu,self).default_get(cr, uid, fields, context=context) + page_id = context.get('active_id') + obj_page = self.pool.get('document.page') + page = obj_page.browse(cr, uid, page_id, context=context) + res['menu_name'] = page.name + return res + + def document_page_menu_create(self, cr, uid, ids, context=None): + if context is None: + context = {} + obj_page = self.pool.get('document.page') + obj_view = self.pool.get('ir.ui.view') + obj_menu = self.pool.get('ir.ui.menu') + obj_action = self.pool.get('ir.actions.act_window') + page_id = context.get('active_id', False) + page = obj_page.browse(cr, uid, page_id, context=context) + + datas = self.browse(cr, uid, ids, context=context) + data = False + if datas: + data = datas[0] + if not data: + return {} + value = { + 'name': 'Document Page', + 'view_type': 'form', + 'view_mode': 'form,tree', + 'res_model': 'document.page', + 'view_id': False, + 'type': 'ir.actions.act_window', + 'target': 'inlineview', + } + value['domain'] = "[('parent_id','=',%d)]" % (page.id) + value['res_id'] = page.id + + action_id = obj_action.create(cr, SUPERUSER_ID, value) + # only the super user is allowed to create menu due to security rules on ir.values + menu_id = obj_menu.create(cr, SUPERUSER_ID, { + 'name': data.menu_name, + 'parent_id':data.menu_parent_id.id, + 'icon': 'STOCK_DIALOG_QUESTION', + 'action': 'ir.actions.act_window,'+ str(action_id), + }, context) + obj_page.write(cr, uid, [page_id], {'menu_id':menu_id}) + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_create_menu_view.xml b/document_page/wizard/document_page_create_menu_view.xml new file mode 100644 index 00000000..e4647179 --- /dev/null +++ b/document_page/wizard/document_page_create_menu_view.xml @@ -0,0 +1,33 @@ + + + + + + Create Menu + document.page.create.menu + +
    + + + + +
    +
    +
    +
    +
    + + + Create Menu + ir.actions.act_window + document.page.create.menu + form + form + new + + +
    +
    diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py new file mode 100644 index 00000000..0c20ee79 --- /dev/null +++ b/document_page/wizard/document_page_show_diff.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +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' + + def get_diff(self, cr, uid, context=None): + if context is None: + context = {} + history = self.pool.get('document.page.history') + ids = context.get('active_ids', []) + + diff = "" + if len(ids) == 2: + if ids[0] > ids[1]: + diff = history.getDiff(cr, uid, ids[1], ids[0]) + else: + diff = history.getDiff(cr, uid, ids[0], ids[1]) + + elif len(ids) == 1: + old = history.browse(cr, uid, ids[0]) + nids = history.search(cr, uid, [('page_id', '=', old.page_id.id)]) + nids.sort() + diff = history.getDiff(cr, uid, ids[0], nids[-1]) + else: + raise osv.except_osv(_('Warning!'), _('You need to select minimum one or maximum two history revisions!')) + return diff + + _columns = { + 'diff': fields.text('Diff', readonly=True), + } + + _defaults = { + 'diff': get_diff + } + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_show_diff_view.xml b/document_page/wizard/document_page_show_diff_view.xml new file mode 100644 index 00000000..e2d5ef1a --- /dev/null +++ b/document_page/wizard/document_page_show_diff_view.xml @@ -0,0 +1,39 @@ + + + + + + + Show Difference + wizard.document.page.history.show_diff + +
    + +
    +
    + +
    +
    + + + Difference + ir.actions.act_window + wizard.document.page.history.show_diff + form + form + new + + + + +
    +
    diff --git a/document_page/wizard/wiki_make_index.py b/document_page/wizard/wiki_make_index.py new file mode 100644 index 00000000..83dd4a3b --- /dev/null +++ b/document_page/wizard/wiki_make_index.py @@ -0,0 +1,100 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRl (). +# +# 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 . +# +############################################################################## + +from osv import fields, osv +from tools.translate import _ + +class wiki_make_index(osv.osv_memory): + """ Create Index For Selected Page """ + + _name = "wiki.make.index" + _description = "Create Index" + + def wiki_do_index(self, cr, uid, ids, context=None): + + """ Makes Index according to page hierarchy + @param cr: the current row, from the database cursor, + @param uid: the current user’s ID for security checks, + @param ids: list of wiki index’s IDs + + """ + if context is None: + context = {} + data = context and context.get('active_ids', []) or [] + + if not data: + return {'type': 'ir.actions.act_window_close'} + + for index_obj in self.browse(cr, uid, ids, context=context): + wiki_pool = self.pool.get('wiki.wiki') + cr.execute("Select id, section from wiki_wiki where id IN %s \ + order by section ", (tuple(data),)) + lst0 = cr.fetchall() + if not lst0[0][1]: + raise osv.except_osv(_('Warning!'), _('There is no section in this Page.')) + + lst = [] + s_ids = {} + + for l in lst0: + s_ids[l[1]] = l[0] + lst.append(l[1]) + + lst.sort() + val = None + def toint(x): + try: + return int(x) + except: + return 1 + + lst = map(lambda x: map(toint, x.split('.')), lst) + + result = [] + current = ['0'] + current2 = [] + + for l in lst: + for pos in range(len(l)): + if pos >= len(current): + current.append('1') + continue + if (pos == len(l) - 1) or (pos >= len(current2)) or (toint(l[pos]) > toint(current2[pos])): + current[pos] = str(toint(current[pos]) + 1) + current = current[:pos + 1] + if pos == len(l) - 1: + break + key = ('.'.join([str(x) for x in l])) + id = s_ids[key] + val = ('.'.join([str(x) for x in current[:]]), id) + + if val: + result.append(val) + current2 = l + + for rs in result: + wiki_pool.write(cr, uid, [rs[1]], {'section':rs[0]}) + + return {'type': 'ir.actions.act_window_close'} + +wiki_make_index() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/wiki_make_index_view.xml b/document_page/wizard/wiki_make_index_view.xml new file mode 100644 index 00000000..90139c3a --- /dev/null +++ b/document_page/wizard/wiki_make_index_view.xml @@ -0,0 +1,43 @@ + + + + + + + + Create Index + wiki.make.index + form + +
    + +
    +
    + + + + + Create Index + ir.actions.act_window + wiki.make.index + form + form + new + + + + + + +
    +
    diff --git a/document_page/wizard/wiki_wiki_page_open.py b/document_page/wizard/wiki_wiki_page_open.py new file mode 100644 index 00000000..215a49f2 --- /dev/null +++ b/document_page/wizard/wiki_wiki_page_open.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +from osv import osv + +class wiki_wiki_page_open(osv.osv_memory): + """ wizard Open Page """ + + _name = "wiki.wiki.page.open" + _description = "wiz open page" + + def open_wiki_page(self, cr, uid, ids, context=None): + + """ Opens Wiki Page of Group + @param cr: the current row, from the database cursor, + @param uid: the current user’s ID for security checks, + @param ids: List of open wiki page’s IDs + @return: dictionay of open wiki window on give group id + """ + if context is None: + context = {} + group_ids = context.get('active_ids', []) + for group in self.pool.get('wiki.groups').browse(cr, uid, group_ids, context=context): + value = { + 'domain': "[('group_id','=',%d)]" % (group.id), + 'name': 'Wiki Page', + 'view_type': 'form', + 'view_mode': 'form,tree', + 'res_model': 'wiki.wiki', + 'view_id': False, + 'type': 'ir.actions.act_window', + } + if group.method == 'page': + value['res_id'] = group.home.id + elif group.method == 'list': + value['view_type'] = 'form' + value['view_mode'] = 'tree,form' + elif group.method == 'tree': + view_id = self.pool.get('ir.ui.view').search(cr, uid, [('name', '=', 'wiki.wiki.tree.children')]) + value['view_id'] = view_id + value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', False)] + value['view_type'] = 'tree' + + return value + +wiki_wiki_page_open() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/wiki_wiki_page_open_view.xml b/document_page/wizard/wiki_wiki_page_open_view.xml new file mode 100644 index 00000000..49f333e4 --- /dev/null +++ b/document_page/wizard/wiki_wiki_page_open_view.xml @@ -0,0 +1,34 @@ + + + + + + + + Open Page + wiki.wiki.page.open + form + +
    +
    +
    + + + + + Open Page + ir.actions.act_window + wiki.wiki.page.open + form + form + new + +
    +
    From afc2502e97e0b5645740e04ef511a817c00bb365 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Tue, 30 Sep 2014 16:13:16 -0400 Subject: [PATCH 02/52] [FIX] PEP8 errors in Odoo code only --- document_page/__init__.py | 12 ++-- document_page/__openerp__.py | 3 +- document_page/document_page.py | 66 +++++++++++-------- .../wizard/document_page_create_menu.py | 25 ++++--- .../wizard/document_page_show_diff.py | 6 +- document_page/wizard/wiki_make_index.py | 16 +++-- document_page/wizard/wiki_wiki_page_open.py | 11 +++- 7 files changed, 82 insertions(+), 57 deletions(-) diff --git a/document_page/__init__.py b/document_page/__init__.py index 7ce5f4b6..a5aa017f 100644 --- a/document_page/__init__.py +++ b/document_page/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -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 . +# along with this program. If not, see . # ############################################################################## -import document_page -import wizard - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +from . import ( + document_page, + wizard + ) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index f08315bf..3aba6e55 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -43,6 +43,5 @@ Web pages 'installable': True, 'auto_install': False, 'images': [], - 'css' : ['static/src/css/document_page.css'], + 'css': ['static/src/css/document_page.css'], } -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/document_page.py b/document_page/document_page.py index 7f885018..bcd10742 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -22,7 +22,7 @@ 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" @@ -32,10 +32,11 @@ class document_page(osv.osv): def _get_page_index(self, cr, uid, page, link=True): index = [] for subpage in page.child_ids: - index += ["
  • "+ self._get_page_index(cr, uid, subpage) +"
  • "] + index += ["
  • " + self._get_page_index(cr, uid, subpage) + + "
  • "] r = '' if link: - r = '%s'%(page.id,page.name) + r = '%s' % (page.id, page.name) if index: r += "
      " + "".join(index) + "
    " return r @@ -44,35 +45,43 @@ class document_page(osv.osv): 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) + content = self._get_page_index(cr, uid, page, link=False) else: - content = page.content - res[page.id] = content + 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')]), + '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'), + '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), + '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', + 'type': 'content', } - def onchange_parent_id(self, cr, uid, ids, parent_id, content, context=None): + 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) @@ -102,6 +111,7 @@ class document_page(osv.osv): self.create_history(cr, uid, ids, vals, context) return result + class document_page_history(osv.osv): _name = "document.page.history" _description = "Document Page History" @@ -109,11 +119,11 @@ class document_page_history(osv.osv): _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"), + '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): @@ -126,8 +136,8 @@ class document_page_history(osv.osv): 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.')) + 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: + return diff.make_table(line1, line2, "Revision-%s" % (v1), + "Revision-%s" % (v2), context=True) diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index 3678820d..87a63c69 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -22,6 +22,7 @@ from openerp import SUPERUSER_ID from openerp.osv import fields, osv + class document_page_create_menu(osv.osv_memory): """ Create Menu """ _name = "document.page.create.menu" @@ -29,13 +30,17 @@ class document_page_create_menu(osv.osv_memory): _columns = { 'menu_name': fields.char('Menu Name', size=256, required=True), - 'menu_parent_id': fields.many2one('ir.ui.menu', 'Parent Menu', required=True), + 'menu_parent_id': fields.many2one('ir.ui.menu', 'Parent Menu', + required=True), } def default_get(self, cr, uid, fields, context=None): if context is None: context = {} - res = super(document_page_create_menu,self).default_get(cr, uid, fields, context=context) + res = super(document_page_create_menu, self).default_get(cr, uid, + fields, + context= + context) page_id = context.get('active_id') obj_page = self.pool.get('document.page') page = obj_page.browse(cr, uid, page_id, context=context) @@ -46,7 +51,6 @@ class document_page_create_menu(osv.osv_memory): if context is None: context = {} obj_page = self.pool.get('document.page') - obj_view = self.pool.get('ir.ui.view') obj_menu = self.pool.get('ir.ui.menu') obj_action = self.pool.get('ir.actions.act_window') page_id = context.get('active_id', False) @@ -71,14 +75,15 @@ class document_page_create_menu(osv.osv_memory): value['res_id'] = page.id action_id = obj_action.create(cr, SUPERUSER_ID, value) - # only the super user is allowed to create menu due to security rules on ir.values + # only the super user is allowed to create menu due to security rules + # on ir.values menu_id = obj_menu.create(cr, SUPERUSER_ID, { - 'name': data.menu_name, - 'parent_id':data.menu_parent_id.id, - 'icon': 'STOCK_DIALOG_QUESTION', - 'action': 'ir.actions.act_window,'+ str(action_id), - }, context) - obj_page.write(cr, uid, [page_id], {'menu_id':menu_id}) + 'name': data.menu_name, + 'parent_id': data.menu_parent_id.id, + 'icon': 'STOCK_DIALOG_QUESTION', + 'action': 'ir.actions.act_window,' + str(action_id), + }, context) + obj_page.write(cr, uid, [page_id], {'menu_id': menu_id}) return { 'type': 'ir.actions.client', 'tag': 'reload', diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index 0c20ee79..bc47a8ff 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -21,7 +21,7 @@ from openerp.osv import fields, osv from openerp.tools.translate import _ -import base64 + class showdiff(osv.osv_memory): """ Disp[ay Difference for History """ @@ -47,7 +47,9 @@ class showdiff(osv.osv_memory): nids.sort() diff = history.getDiff(cr, uid, ids[0], nids[-1]) else: - raise osv.except_osv(_('Warning!'), _('You need to select minimum one or maximum two history revisions!')) + raise osv.except_osv(_('Warning!'), _('You need to select minimum \ + one or maximum two history \ + revisions!')) return diff _columns = { diff --git a/document_page/wizard/wiki_make_index.py b/document_page/wizard/wiki_make_index.py index 83dd4a3b..c0a19dec 100644 --- a/document_page/wizard/wiki_make_index.py +++ b/document_page/wizard/wiki_make_index.py @@ -19,9 +19,10 @@ # ############################################################################## -from osv import fields, osv +from osv import osv from tools.translate import _ + class wiki_make_index(osv.osv_memory): """ Create Index For Selected Page """ @@ -39,17 +40,18 @@ class wiki_make_index(osv.osv_memory): if context is None: context = {} data = context and context.get('active_ids', []) or [] - + if not data: return {'type': 'ir.actions.act_window_close'} - + for index_obj in self.browse(cr, uid, ids, context=context): wiki_pool = self.pool.get('wiki.wiki') cr.execute("Select id, section from wiki_wiki where id IN %s \ order by section ", (tuple(data),)) lst0 = cr.fetchall() if not lst0[0][1]: - raise osv.except_osv(_('Warning!'), _('There is no section in this Page.')) + raise osv.except_osv(_('Warning!'), _('There is no section in\ + this Page.')) lst = [] s_ids = {} @@ -60,6 +62,7 @@ class wiki_make_index(osv.osv_memory): lst.sort() val = None + def toint(x): try: return int(x) @@ -77,7 +80,8 @@ class wiki_make_index(osv.osv_memory): if pos >= len(current): current.append('1') continue - if (pos == len(l) - 1) or (pos >= len(current2)) or (toint(l[pos]) > toint(current2[pos])): + if (pos == len(l) - 1) or (pos >= len(current2)) or \ + (toint(l[pos]) > toint(current2[pos])): current[pos] = str(toint(current[pos]) + 1) current = current[:pos + 1] if pos == len(l) - 1: @@ -91,7 +95,7 @@ class wiki_make_index(osv.osv_memory): current2 = l for rs in result: - wiki_pool.write(cr, uid, [rs[1]], {'section':rs[0]}) + wiki_pool.write(cr, uid, [rs[1]], {'section': rs[0]}) return {'type': 'ir.actions.act_window_close'} diff --git a/document_page/wizard/wiki_wiki_page_open.py b/document_page/wizard/wiki_wiki_page_open.py index 215a49f2..80bbb583 100644 --- a/document_page/wizard/wiki_wiki_page_open.py +++ b/document_page/wizard/wiki_wiki_page_open.py @@ -21,6 +21,7 @@ from osv import osv + class wiki_wiki_page_open(osv.osv_memory): """ wizard Open Page """ @@ -38,7 +39,8 @@ class wiki_wiki_page_open(osv.osv_memory): if context is None: context = {} group_ids = context.get('active_ids', []) - for group in self.pool.get('wiki.groups').browse(cr, uid, group_ids, context=context): + for group in self.pool.get('wiki.groups').browse(cr, uid, group_ids, + context=context): value = { 'domain': "[('group_id','=',%d)]" % (group.id), 'name': 'Wiki Page', @@ -54,9 +56,12 @@ class wiki_wiki_page_open(osv.osv_memory): value['view_type'] = 'form' value['view_mode'] = 'tree,form' elif group.method == 'tree': - view_id = self.pool.get('ir.ui.view').search(cr, uid, [('name', '=', 'wiki.wiki.tree.children')]) + view_id = self.pool.get('ir.ui.view').\ + search(cr, uid, [('name', '=', + 'wiki.wiki.tree.children')]) value['view_id'] = view_id - value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', False)] + value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', + False)] value['view_type'] = 'tree' return value From a43537906750adf7f747875c2d0d26a81cab7329 Mon Sep 17 00:00:00 2001 From: Giorgio Borelli Date: Tue, 11 Nov 2014 13:25:05 +0100 Subject: [PATCH 03/52] use new API --- document_page/__init__.py | 7 +- document_page/__openerp__.py | 8 +- document_page/document_page.py | 140 +++++++++++------- document_page/document_page_view.xml | 68 +++++++-- document_page/wizard/__init__.py | 5 +- .../wizard/document_page_create_menu_view.xml | 14 +- 6 files changed, 165 insertions(+), 77 deletions(-) diff --git a/document_page/__init__.py b/document_page/__init__.py index a5aa017f..d11fab84 100644 --- a/document_page/__init__.py +++ b/document_page/__init__.py @@ -18,8 +18,5 @@ # along with this program. If not, see . # ############################################################################## - -from . import ( - document_page, - wizard - ) +from . import document_page +from . import wizard diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 3aba6e55..48e0d60c 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -38,8 +38,12 @@ Web pages 'security/document_page_security.xml', 'security/ir.model.access.csv', ], - 'demo': ['document_page_demo.xml'], - 'test': ['test/document_page_test00.yml'], + 'demo': [ + 'document_page_demo.xml' + ], + 'test': [ + 'test/document_page_test00.yml' + ], 'installable': True, 'auto_install': False, 'images': [], diff --git a/document_page/document_page.py b/document_page/document_page.py index bcd10742..7aba083d 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -18,67 +18,104 @@ # along with this program. If not, see . # ############################################################################## - -from openerp.osv import fields, osv -from openerp.tools.translate import _ +from openerp import models, fields, _ +from openerp import exceptions +# , fields, api, _ import difflib -class document_page(osv.osv): +class document_page(models.Model): _name = "document.page" _description = "Document Page" _order = 'name' - def _get_page_index(self, cr, uid, page, link=True): + name = fields.Char('Title', required=True) + + type = fields.Selection( + [('content', 'Content'), ('category', 'Category')], + 'Type', + help="Page type", + default="content" + ) + + 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.Text( + string='Displayed Content', + compute='_get_display_content' + ) + + 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 + ) + + def _get_page_index(self, page, link=True): index = [] for subpage in page.child_ids: - index += ["
  • " + self._get_page_index(cr, uid, subpage) + + index += ["
  • " + self._get_page_index(subpage) + "
  • "] r = '' if link: r = '%s' % (page.id, page.name) + if index: r += "
      " + "".join(index) + "
    " 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): + def _get_display_content(self): + for page in self: if page.type == "category": - content = self._get_page_index(cr, uid, page, link=False) + display_content = self._get_page_index(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', - } + display_content = page.content + page.display_content = display_content def onchange_parent_id(self, cr, uid, ids, parent_id, content, context=None): @@ -112,19 +149,17 @@ class document_page(osv.osv): return result -class document_page_history(osv.osv): +class document_page_history(models.Model): _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"), - } + 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') @@ -136,8 +171,9 @@ class document_page_history(osv.osv): 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.')) + raise exceptions.Warning( + _('There are no changes in revisions.') + ) diff = difflib.HtmlDiff() return diff.make_table(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=True) diff --git a/document_page/document_page_view.xml b/document_page/document_page_view.xml index 2ffc9059..f05a2d52 100644 --- a/document_page/document_page_view.xml +++ b/document_page/document_page_view.xml @@ -1,8 +1,13 @@ - - + + + @@ -18,6 +23,7 @@ + document.page.list @@ -32,6 +38,7 @@ + document.page.form @@ -50,34 +57,52 @@ +
    - +
    - +
    + document.page.search document.page - + - - - + + + + + Pages @@ -94,7 +119,13 @@

    - + + + Category document.page @@ -105,7 +136,11 @@ - + @@ -134,6 +169,7 @@ + Page history @@ -141,7 +177,14 @@ form tree,form - + + + - . # ############################################################################## - -import document_page_create_menu -import document_page_show_diff +from . import document_page_create_menu +from . import document_page_show_diff # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_create_menu_view.xml b/document_page/wizard/document_page_create_menu_view.xml index e4647179..858aa0ed 100644 --- a/document_page/wizard/document_page_create_menu_view.xml +++ b/document_page/wizard/document_page_create_menu_view.xml @@ -12,15 +12,23 @@
    -
    + + - + Create Menu ir.actions.act_window document.page.create.menu From 7d311156f2b8fca697271e0c7c241399f5faa15a Mon Sep 17 00:00:00 2001 From: Giorgio Borelli Date: Tue, 11 Nov 2014 13:26:02 +0100 Subject: [PATCH 04/52] removed unused modules and view, see.: 7.0 branch on launchpad - http://bazaar.launchpad.net/~openerp/openobject-addons/7.0/files/head:/document_page/ --- document_page/data/wiki_main.xml | 39 - document_page/data/wiki_quickstart.xml | 116 - document_page/security/wiki_security.xml | 12 - document_page/web/__init__.py | 4 - document_page/web/controllers/__init__.py | 3 - document_page/web/controllers/wiki.py | 65 - document_page/web/locales/bg.po | 22 - document_page/web/locales/ca.po | 22 - document_page/web/locales/da.po | 22 - document_page/web/locales/de.po | 22 - .../locales/de_DE/LC_MESSAGES/javascript.po | 20 - .../web/locales/de_DE/LC_MESSAGES/messages.po | 24 - document_page/web/locales/es_CR.po | 23 - .../locales/es_ES/LC_MESSAGES/javascript.po | 20 - .../web/locales/es_ES/LC_MESSAGES/messages.po | 24 - document_page/web/locales/es_PY.po | 22 - document_page/web/locales/fr.po | 22 - .../locales/fr_FR/LC_MESSAGES/javascript.po | 20 - .../web/locales/fr_FR/LC_MESSAGES/messages.po | 24 - document_page/web/locales/gl.po | 22 - document_page/web/locales/javascript.pot | 19 - document_page/web/locales/messages.pot | 23 - document_page/web/locales/ru.po | 22 - document_page/web/locales/sk.po | 22 - document_page/web/locales/tr.po | 22 - document_page/web/static/css/wiki.css | 32 - document_page/web/widgets/__init__.py | 3 - document_page/web/widgets/rss/__init__.py | 3 - document_page/web/widgets/rss/feedparser.py | 2860 ----------------- document_page/web/widgets/templates/wiki.mako | 23 - document_page/web/widgets/wiki.py | 224 -- .../web/widgets/wikimarkup/__init__.py | 2146 ------------- document_page/wizard/wiki_make_index.py | 104 - document_page/wizard/wiki_make_index_view.xml | 43 - document_page/wizard/wiki_wiki_page_open.py | 71 - .../wizard/wiki_wiki_page_open_view.xml | 34 - 36 files changed, 6199 deletions(-) delete mode 100644 document_page/data/wiki_main.xml delete mode 100644 document_page/data/wiki_quickstart.xml delete mode 100644 document_page/security/wiki_security.xml delete mode 100644 document_page/web/__init__.py delete mode 100644 document_page/web/controllers/__init__.py delete mode 100644 document_page/web/controllers/wiki.py delete mode 100644 document_page/web/locales/bg.po delete mode 100644 document_page/web/locales/ca.po delete mode 100644 document_page/web/locales/da.po delete mode 100644 document_page/web/locales/de.po delete mode 100644 document_page/web/locales/de_DE/LC_MESSAGES/javascript.po delete mode 100644 document_page/web/locales/de_DE/LC_MESSAGES/messages.po delete mode 100644 document_page/web/locales/es_CR.po delete mode 100644 document_page/web/locales/es_ES/LC_MESSAGES/javascript.po delete mode 100644 document_page/web/locales/es_ES/LC_MESSAGES/messages.po delete mode 100644 document_page/web/locales/es_PY.po delete mode 100644 document_page/web/locales/fr.po delete mode 100644 document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po delete mode 100644 document_page/web/locales/fr_FR/LC_MESSAGES/messages.po delete mode 100644 document_page/web/locales/gl.po delete mode 100644 document_page/web/locales/javascript.pot delete mode 100644 document_page/web/locales/messages.pot delete mode 100644 document_page/web/locales/ru.po delete mode 100644 document_page/web/locales/sk.po delete mode 100644 document_page/web/locales/tr.po delete mode 100644 document_page/web/static/css/wiki.css delete mode 100644 document_page/web/widgets/__init__.py delete mode 100644 document_page/web/widgets/rss/__init__.py delete mode 100755 document_page/web/widgets/rss/feedparser.py delete mode 100644 document_page/web/widgets/templates/wiki.mako delete mode 100644 document_page/web/widgets/wiki.py delete mode 100644 document_page/web/widgets/wikimarkup/__init__.py delete mode 100644 document_page/wizard/wiki_make_index.py delete mode 100644 document_page/wizard/wiki_make_index_view.xml delete mode 100644 document_page/wizard/wiki_wiki_page_open.py delete mode 100644 document_page/wizard/wiki_wiki_page_open_view.xml diff --git a/document_page/data/wiki_main.xml b/document_page/data/wiki_main.xml deleted file mode 100644 index 223274ea..00000000 --- a/document_page/data/wiki_main.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - The OpenERP wiki - help, quick start, wiki, formatting - 0 - 1 - 0 - Initial Page - =The OpenERP wiki= -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] - - - - - - - diff --git a/document_page/data/wiki_quickstart.xml b/document_page/data/wiki_quickstart.xml deleted file mode 100644 index f6ae59de..00000000 --- a/document_page/data/wiki_quickstart.xml +++ /dev/null @@ -1,116 +0,0 @@ - - - - - Help - Using The Wiki - - - - Basic Wiki Editing - help, quick start, wiki, formatting - 0 - 1 - 1.1 - Initial Page - ==Basic Wiki Editing== -You can ''italicize text'' by putting 2 -apostrophes on each side. -3 apostrophes will embolden '''the text'''. -5 apostrophes will embolden and italicize -'''''the text'''''. -(4 apostrophes don't do anything -special -- there's just ''''one left -over''''.) - -You can ''italicize text'' by putting 2 -apostrophes on each side. - -3 apostrophes will embolden '''the text'''. - -5 apostrophes will embolden and italicize -'''''the text'''''. - -(4 apostrophes don't do anything special -- there's just ''''one left over''''.) - -==Links== -===Internal=== -You give the link as same as the wiki Page Title - -Go back to Main Page : [[The OpenERP wiki]] -===External=== -You can give link to the other Web page over the Internet easily [http://google.com Visit Google] -==Attachments== -===Images=== -You can get the External links easily - -img:http://images.google.co.in/intl/en_ALL/images/images_hp.gif - -==Play with OpenERP Records== -* edit:res.partner|False|Create New Partner -* edit:res.partner|China Export|Edit China Export -* edit:res.country|India|Edit Country - India - -==Working with Attachments== -* Download File : attach:document.doc - -==Unnumbered List== -* ''Unordered lists'' are easy to do: -** Start every line with a star. -*** More stars indicate a deeper level. -*: Previous item continues. -** A new line -* in a list -marks the end of the list. -*Of course you can start again. - -==Numbered List== -# ''Numbered lists'' are: -## Very organized -## Easy to follow -#: Previous item continues -A new line marks the end of the list. -# New numbering starts with 1 - -==Text Indents== -: A colon (:) indents a line or paragraph. -A newline starts a new paragraph. -: We use 1 colon to indent once. -:: We use 2 colons to indent twice. -::: 3 colons to indent 3 times, and so on. - -==Table== -<nowiki> -{| border="1" cellspacing="0" cellpadding="5" align="left" -! Web site -! Link -! Contact Email -|- -| '''OpenERP''' - ''Belgium'' -| [http://openerp.com] -| [mailto:sales AT tiny.be] -|} -</nowiki> - -{| border="1" cellspacing="0" cellpadding="5" align="left" -! Web site -! Link -! Contact Email -|- -| '''OpenERP''' - ''Belgium'' -| [http://openerp.com] -| [mailto:sales AT tiny.be] -|} -<br/> -<br/> -<br/> -<br/> -==Headings== -=1st Level Heading= -==2nd Level Heading== -===3rd Level Heading=== - - - - - - diff --git a/document_page/security/wiki_security.xml b/document_page/security/wiki_security.xml deleted file mode 100644 index ca9d34ae..00000000 --- a/document_page/security/wiki_security.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - User - - - - - - diff --git a/document_page/web/__init__.py b/document_page/web/__init__.py deleted file mode 100644 index 6fb28f7f..00000000 --- a/document_page/web/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -import widgets -import controllers - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/controllers/__init__.py b/document_page/web/controllers/__init__.py deleted file mode 100644 index e1edf0f0..00000000 --- a/document_page/web/controllers/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -import wiki - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/controllers/wiki.py b/document_page/web/controllers/wiki.py deleted file mode 100644 index 2f147827..00000000 --- a/document_page/web/controllers/wiki.py +++ /dev/null @@ -1,65 +0,0 @@ -############################################################################### -# -# Copyright (C) 2007-TODAY Tiny ERP Pvt Ltd. All Rights Reserved. -# -# $Id$ -# -# Developed by Tiny (http://openerp.com) and Axelor (http://axelor.com). -# -# The OpenERP web client is distributed under the "OpenERP Public License". -# It's based on Mozilla Public License Version (MPL) 1.1 with following -# restrictions: -# -# - All names, links and logos of Tiny, OpenERP and Axelor must be -# kept as in original distribution without any changes in all software -# screens, especially in start-up page and the software header, even if -# the application source code has been changed or updated or code has been -# added. -# -# - All distributions of the software must keep source code with OEPL. -# -# - All integrations to any other software must keep source code with OEPL. -# -# If you need commercial licence to remove this kind of restriction please -# contact us. -# -# You can see the MPL licence at: http://www.mozilla.org/MPL/MPL-1.1.html -# -############################################################################### -import base64 - -import cherrypy - -import openobject -from openobject.tools import expose - -from openerp.controllers import SecuredController - - -class WikiView(SecuredController): - _cp_path = "/wiki/wiki" - - def get_attachment(self, **kwargs): - attachments = openobject.rpc.RPCProxy('ir.attachment') - file_name = kwargs.get('file').replace("'", '').strip() - id = kwargs.get('id').strip() - - ids = attachments.search([('datas_fname', '=', file_name), - ('res_model', '=', 'wiki.wiki'), - ('res_id', '=', id)]) - - res = attachments.read(ids, ['datas'])[0].get('datas') - return res, file_name - - @expose(content_type='application/octet') - def getImage(self, *kw, **kws): - res, _ = self.get_attachment(**kws) - return base64.decodestring(res) - - @expose(content_type='application/octet') - def getfile(self, *kw, **kws): - res, file_name = self.get_attachment(**kws) - cherrypy.response.headers['Content-Disposition'] = 'filename="%s"' % (file_name,) - return base64.decodestring(res) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/locales/bg.po b/document_page/web/locales/bg.po deleted file mode 100644 index d331ed5d..00000000 --- a/document_page/web/locales/bg.po +++ /dev/null @@ -1,22 +0,0 @@ -# Bulgarian 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-02-11 01:13+0000\n" -"Last-Translator: Dimitar Markov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" -"X-Generator: Launchpad (build 12351)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Съдържание" diff --git a/document_page/web/locales/ca.po b/document_page/web/locales/ca.po deleted file mode 100644 index a946dab8..00000000 --- a/document_page/web/locales/ca.po +++ /dev/null @@ -1,22 +0,0 @@ -# Catalan 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-03-12 20:33+0000\n" -"Last-Translator: mgaja (GrupoIsep.com) \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-13 06:16+0000\n" -"X-Generator: Launchpad (build 12559)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Índex" diff --git a/document_page/web/locales/da.po b/document_page/web/locales/da.po deleted file mode 100644 index 35d12ed6..00000000 --- a/document_page/web/locales/da.po +++ /dev/null @@ -1,22 +0,0 @@ -# Danish 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-04-29 12:05+0000\n" -"Last-Translator: Hans Henrik Gabelgaard \n" -"Language-Team: Danish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-04-30 06:08+0000\n" -"X-Generator: Launchpad (build 12758)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Indholdsfortegnelse" diff --git a/document_page/web/locales/de.po b/document_page/web/locales/de.po deleted file mode 100644 index 8718cd97..00000000 --- a/document_page/web/locales/de.po +++ /dev/null @@ -1,22 +0,0 @@ -# German 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-02-11 11:54+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" -"X-Generator: Launchpad (build 12351)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Inhaltsverzeichnis" diff --git a/document_page/web/locales/de_DE/LC_MESSAGES/javascript.po b/document_page/web/locales/de_DE/LC_MESSAGES/javascript.po deleted file mode 100644 index ea8fd699..00000000 --- a/document_page/web/locales/de_DE/LC_MESSAGES/javascript.po +++ /dev/null @@ -1,20 +0,0 @@ -# German (Germany) translations for PROJECT. -# Copyright (C) 2009 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-11-18 17:21+0530\n" -"PO-Revision-Date: 2010-08-02 17:53+0530\n" -"Last-Translator: FULL NAME \n" -"Language-Team: de_DE \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - diff --git a/document_page/web/locales/de_DE/LC_MESSAGES/messages.po b/document_page/web/locales/de_DE/LC_MESSAGES/messages.po deleted file mode 100644 index 79b06791..00000000 --- a/document_page/web/locales/de_DE/LC_MESSAGES/messages.po +++ /dev/null @@ -1,24 +0,0 @@ -# German (Germany) translations for PROJECT. -# Copyright (C) 2009 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-11-18 17:21+0530\n" -"PO-Revision-Date: 2010-08-02 17:53+0530\n" -"Last-Translator: FULL NAME \n" -"Language-Team: de_DE \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "" - diff --git a/document_page/web/locales/es_CR.po b/document_page/web/locales/es_CR.po deleted file mode 100644 index d64a49bc..00000000 --- a/document_page/web/locales/es_CR.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2010 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2012-02-08 03:00-0600\n" -"Last-Translator: Carlos Vásquez - CLEARCORP \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "" - diff --git a/document_page/web/locales/es_ES/LC_MESSAGES/javascript.po b/document_page/web/locales/es_ES/LC_MESSAGES/javascript.po deleted file mode 100644 index 0c44218f..00000000 --- a/document_page/web/locales/es_ES/LC_MESSAGES/javascript.po +++ /dev/null @@ -1,20 +0,0 @@ -# Spanish (Spain) translations for PROJECT. -# Copyright (C) 2009 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-11-18 17:21+0530\n" -"PO-Revision-Date: 2010-08-02 17:53+0530\n" -"Last-Translator: FULL NAME \n" -"Language-Team: es_ES \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - diff --git a/document_page/web/locales/es_ES/LC_MESSAGES/messages.po b/document_page/web/locales/es_ES/LC_MESSAGES/messages.po deleted file mode 100644 index 72f8c72b..00000000 --- a/document_page/web/locales/es_ES/LC_MESSAGES/messages.po +++ /dev/null @@ -1,24 +0,0 @@ -# Spanish (Spain) translations for PROJECT. -# Copyright (C) 2009 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-11-18 17:21+0530\n" -"PO-Revision-Date: 2010-08-02 17:53+0530\n" -"Last-Translator: FULL NAME \n" -"Language-Team: es_ES \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "" - diff --git a/document_page/web/locales/es_PY.po b/document_page/web/locales/es_PY.po deleted file mode 100644 index c76f7a33..00000000 --- a/document_page/web/locales/es_PY.po +++ /dev/null @@ -1,22 +0,0 @@ -# Spanish (Paraguay) 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-03-21 16:31+0000\n" -"Last-Translator: fadel \n" -"Language-Team: Spanish (Paraguay) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-22 06:23+0000\n" -"X-Generator: Launchpad (build 12559)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Tabla de Contenido" diff --git a/document_page/web/locales/fr.po b/document_page/web/locales/fr.po deleted file mode 100644 index 18a1611d..00000000 --- a/document_page/web/locales/fr.po +++ /dev/null @@ -1,22 +0,0 @@ -# French 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-02-11 20:16+0000\n" -"Last-Translator: lolivier \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" -"X-Generator: Launchpad (build 12351)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Table des matières" diff --git a/document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po b/document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po deleted file mode 100644 index 31f9c5ed..00000000 --- a/document_page/web/locales/fr_FR/LC_MESSAGES/javascript.po +++ /dev/null @@ -1,20 +0,0 @@ -# French (France) translations for PROJECT. -# Copyright (C) 2009 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-11-18 17:21+0530\n" -"PO-Revision-Date: 2010-08-02 17:53+0530\n" -"Last-Translator: FULL NAME \n" -"Language-Team: fr_FR \n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - diff --git a/document_page/web/locales/fr_FR/LC_MESSAGES/messages.po b/document_page/web/locales/fr_FR/LC_MESSAGES/messages.po deleted file mode 100644 index 181738f7..00000000 --- a/document_page/web/locales/fr_FR/LC_MESSAGES/messages.po +++ /dev/null @@ -1,24 +0,0 @@ -# French (France) translations for PROJECT. -# Copyright (C) 2009 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-11-18 17:21+0530\n" -"PO-Revision-Date: 2010-08-02 17:53+0530\n" -"Last-Translator: FULL NAME \n" -"Language-Team: fr_FR \n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "" - diff --git a/document_page/web/locales/gl.po b/document_page/web/locales/gl.po deleted file mode 100644 index 645a5607..00000000 --- a/document_page/web/locales/gl.po +++ /dev/null @@ -1,22 +0,0 @@ -# Galician 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-03-02 23:19+0000\n" -"Last-Translator: Santi (Pexego) \n" -"Language-Team: Galician \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-03 06:01+0000\n" -"X-Generator: Launchpad (build 12351)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Índice" diff --git a/document_page/web/locales/javascript.pot b/document_page/web/locales/javascript.pot deleted file mode 100644 index 725ce7a4..00000000 --- a/document_page/web/locales/javascript.pot +++ /dev/null @@ -1,19 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2010 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2010. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - diff --git a/document_page/web/locales/messages.pot b/document_page/web/locales/messages.pot deleted file mode 100644 index 16c76567..00000000 --- a/document_page/web/locales/messages.pot +++ /dev/null @@ -1,23 +0,0 @@ -# Translations template for PROJECT. -# Copyright (C) 2010 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR , 2010. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel None\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "" - diff --git a/document_page/web/locales/ru.po b/document_page/web/locales/ru.po deleted file mode 100644 index 6c609b49..00000000 --- a/document_page/web/locales/ru.po +++ /dev/null @@ -1,22 +0,0 @@ -# Russian 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-03-16 00:17+0000\n" -"Last-Translator: Stanislav Hanzhin \n" -"Language-Team: Russian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-03-17 06:12+0000\n" -"X-Generator: Launchpad (build 12559)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Содержание" diff --git a/document_page/web/locales/sk.po b/document_page/web/locales/sk.po deleted file mode 100644 index f101cf69..00000000 --- a/document_page/web/locales/sk.po +++ /dev/null @@ -1,22 +0,0 @@ -# Slovak 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-02-21 13:05+0000\n" -"Last-Translator: Radoslav Sloboda \n" -"Language-Team: Slovak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-02-22 14:27+0000\n" -"X-Generator: Launchpad (build 12351)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "Obsah" diff --git a/document_page/web/locales/tr.po b/document_page/web/locales/tr.po deleted file mode 100644 index baa56e0f..00000000 --- a/document_page/web/locales/tr.po +++ /dev/null @@ -1,22 +0,0 @@ -# Turkish 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 , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-08-02 17:52+0530\n" -"PO-Revision-Date: 2011-02-08 21:20+0000\n" -"Last-Translator: Ahmet Altınışık \n" -"Language-Team: Turkish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-02-09 06:02+0000\n" -"X-Generator: Launchpad (build 12177)\n" - -#: widgets/wikimarkup/__init__.py:1981 -msgid "Table of Contents" -msgstr "İçindekiler" diff --git a/document_page/web/static/css/wiki.css b/document_page/web/static/css/wiki.css deleted file mode 100644 index 51a64935..00000000 --- a/document_page/web/static/css/wiki.css +++ /dev/null @@ -1,32 +0,0 @@ -.wikiwidget #toc { - border:1px solid #aaaaaa; - background-color:#f9f9f9; - padding:5px; -} - -h1, h2, h3, h4, h5, h6 { - color: black; - background: none; - font-weight: normal; - margin: 0; - padding-top: .5em; - padding-bottom: .17em; - border-bottom: 1px solid #aaa; -} -h1 { font-size: 188%; } -h2 { font-size: 150%; } -h3, h4, h5, h6 { - border-bottom: none; -} -h3 { font-size: 132%; } -h4 { font-size: 116%; } -h5 { font-size: 100%; } -h6 { font-size: 80%; } - -pre { - background-color:#F9F9F9; - border:1px dashed #2F6FAB; - color:black; - line-height:1.1em; - padding:1em; -} diff --git a/document_page/web/widgets/__init__.py b/document_page/web/widgets/__init__.py deleted file mode 100644 index 4b2c273d..00000000 --- a/document_page/web/widgets/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from wiki import WikiWidget - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/rss/__init__.py b/document_page/web/widgets/rss/__init__.py deleted file mode 100644 index ff95e8bd..00000000 --- a/document_page/web/widgets/rss/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -import feedparser - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/rss/feedparser.py b/document_page/web/widgets/rss/feedparser.py deleted file mode 100755 index 35cbb975..00000000 --- a/document_page/web/widgets/rss/feedparser.py +++ /dev/null @@ -1,2860 +0,0 @@ -#!/usr/bin/env python -"""Universal feed parser - -Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds - -Visit http://feedparser.org/ for the latest version -Visit http://feedparser.org/docs/ for the latest documentation - -Required: Python 2.1 or later -Recommended: Python 2.3 or later -Recommended: CJKCodecs and iconv_codec -""" - -__version__ = "4.1"# + "$Revision: 1.92 $"[11:15] + "-cvs" -__license__ = """Copyright (c) 2002-2006, Mark Pilgrim, All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE.""" -__author__ = "Mark Pilgrim " -__contributors__ = ["Jason Diamond ", - "John Beimler ", - "Fazal Majid ", - "Aaron Swartz ", - "Kevin Marks "] -_debug = 0 - -# HTTP "User-Agent" header to send to servers when downloading feeds. -# If you are embedding feedparser in a larger application, you should -# change this to your application name and URL. -USER_AGENT = "UniversalFeedParser/%s +http://feedparser.org/" % __version__ - -# HTTP "Accept" header to send to servers when downloading feeds. If you don't -# want to send an Accept header, set this to None. -ACCEPT_HEADER = "application/atom+xml,application/rdf+xml,application/rss+xml,application/x-netcdf,application/xml;q=0.9,text/xml;q=0.2,*/*;q=0.1" - -# List of preferred XML parsers, by SAX driver name. These will be tried first, -# but if they're not installed, Python will keep searching through its own list -# of pre-installed parsers until it finds one that supports everything we need. -PREFERRED_XML_PARSERS = ["drv_libxml2"] - -# If you want feedparser to automatically run HTML markup through HTML Tidy, set -# this to 1. Requires mxTidy -# or utidylib . -TIDY_MARKUP = 0 - -# List of Python interfaces for HTML Tidy, in order of preference. Only useful -# if TIDY_MARKUP = 1 -PREFERRED_TIDY_INTERFACES = ["uTidy", "mxTidy"] - -# ---------- required modules (should come with any Python distribution) ---------- -import sgmllib, re, sys, copy, urlparse, time, rfc822, types, cgi, urllib, urllib2 -try: - from cStringIO import StringIO as _StringIO -except: - from StringIO import StringIO as _StringIO - -# ---------- optional modules (feedparser will work without these, but with reduced functionality) ---------- - -# gzip is included with most Python distributions, but may not be available if you compiled your own -try: - import gzip -except: - gzip = None -try: - import zlib -except: - zlib = None - -# If a real XML parser is available, feedparser will attempt to use it. feedparser has -# been tested with the built-in SAX parser, PyXML, and libxml2. On platforms where the -# Python distribution does not come with an XML parser (such as Mac OS X 10.2 and some -# versions of FreeBSD), feedparser will quietly fall back on regex-based parsing. -try: - import xml.sax - xml.sax.make_parser(PREFERRED_XML_PARSERS) # test for valid parsers - from xml.sax.saxutils import escape as _xmlescape - _XML_AVAILABLE = 1 -except: - _XML_AVAILABLE = 0 - def _xmlescape(data): - data = data.replace('&', '&') - data = data.replace('>', '>') - data = data.replace('<', '<') - return data - -# base64 support for Atom feeds that contain embedded binary data -try: - import base64, binascii -except: - base64 = binascii = None - -# cjkcodecs and iconv_codec provide support for more character encodings. -# Both are available from http://cjkpython.i18n.org/ -try: - import cjkcodecs.aliases -except: - pass -try: - import iconv_codec -except: - pass - -# chardet library auto-detects character encodings -# Download from http://chardet.feedparser.org/ -try: - import chardet - if _debug: - import chardet.constants - chardet.constants._debug = 1 -except: - chardet = None - -# ---------- don't touch these ---------- -class ThingsNobodyCaresAboutButMe(Exception): pass -class CharacterEncodingOverride(ThingsNobodyCaresAboutButMe): pass -class CharacterEncodingUnknown(ThingsNobodyCaresAboutButMe): pass -class NonXMLContentType(ThingsNobodyCaresAboutButMe): pass -class UndeclaredNamespace(Exception): pass - -sgmllib.tagfind = re.compile('[a-zA-Z][-_.:a-zA-Z0-9]*') -sgmllib.special = re.compile('' % (tag, ''.join([' %s="%s"' % t for t in attrs])), escape=0) - - # match namespaces - if tag.find(':') <> -1: - prefix, suffix = tag.split(':', 1) - else: - prefix, suffix = '', tag - prefix = self.namespacemap.get(prefix, prefix) - if prefix: - prefix = prefix + '_' - - # special hack for better tracking of empty textinput/image elements in illformed feeds - if (not prefix) and tag not in ('title', 'link', 'description', 'name'): - self.intextinput = 0 - if (not prefix) and tag not in ('title', 'link', 'description', 'url', 'href', 'width', 'height'): - self.inimage = 0 - - # call special handler (if defined) or default handler - methodname = '_start_' + prefix + suffix - try: - method = getattr(self, methodname) - return method(attrsD) - except AttributeError: - return self.push(prefix + suffix, 1) - - def unknown_endtag(self, tag): - if _debug: sys.stderr.write('end %s\n' % tag) - # match namespaces - if tag.find(':') <> -1: - prefix, suffix = tag.split(':', 1) - else: - prefix, suffix = '', tag - prefix = self.namespacemap.get(prefix, prefix) - if prefix: - prefix = prefix + '_' - - # call special handler (if defined) or default handler - methodname = '_end_' + prefix + suffix - try: - method = getattr(self, methodname) - method() - except AttributeError: - self.pop(prefix + suffix) - - # track inline content - if self.incontent and self.contentparams.has_key('type') and not self.contentparams.get('type', 'xml').endswith('xml'): - # element declared itself as escaped markup, but it isn't really - self.contentparams['type'] = 'application/xhtml+xml' - if self.incontent and self.contentparams.get('type') == 'application/xhtml+xml': - tag = tag.split(':')[-1] - self.handle_data('' % tag, escape=0) - - # track xml:base and xml:lang going out of scope - if self.basestack: - self.basestack.pop() - if self.basestack and self.basestack[-1]: - self.baseuri = self.basestack[-1] - if self.langstack: - self.langstack.pop() - if self.langstack: # and (self.langstack[-1] is not None): - self.lang = self.langstack[-1] - - def handle_charref(self, ref): - # called for each character reference, e.g. for ' ', ref will be '160' - if not self.elementstack: return - ref = ref.lower() - if ref in ('34', '38', '39', '60', '62', 'x22', 'x26', 'x27', 'x3c', 'x3e'): - text = '&#%s;' % ref - else: - if ref[0] == 'x': - c = int(ref[1:], 16) - else: - c = int(ref) - text = unichr(c).encode('utf-8') - self.elementstack[-1][2].append(text) - - def handle_entityref(self, ref): - # called for each entity reference, e.g. for '©', ref will be 'copy' - if not self.elementstack: return - if _debug: sys.stderr.write('entering handle_entityref with %s\n' % ref) - if ref in ('lt', 'gt', 'quot', 'amp', 'apos'): - text = '&%s;' % ref - else: - # entity resolution graciously donated by Aaron Swartz - def name2cp(k): - import htmlentitydefs - if hasattr(htmlentitydefs, 'name2codepoint'): # requires Python 2.3 - return htmlentitydefs.name2codepoint[k] - k = htmlentitydefs.entitydefs[k] - if k.startswith('&#') and k.endswith(';'): - return int(k[2:-1]) # not in latin-1 - return ord(k) - try: name2cp(ref) - except KeyError: text = '&%s;' % ref - else: text = unichr(name2cp(ref)).encode('utf-8') - self.elementstack[-1][2].append(text) - - def handle_data(self, text, escape=1): - # called for each block of plain text, i.e. outside of any tag and - # not containing any character or entity references - if not self.elementstack: return - if escape and self.contentparams.get('type') == 'application/xhtml+xml': - text = _xmlescape(text) - self.elementstack[-1][2].append(text) - - def handle_comment(self, text): - # called for each comment, e.g. - pass - - def handle_pi(self, text): - # called for each processing instruction, e.g. - pass - - def handle_decl(self, text): - pass - - def parse_declaration(self, i): - # override internal declaration handler to handle CDATA blocks - if _debug: sys.stderr.write('entering parse_declaration\n') - if self.rawdata[i:i+9] == '', i) - if k == -1: k = len(self.rawdata) - self.handle_data(_xmlescape(self.rawdata[i+9:k]), 0) - return k+3 - else: - k = self.rawdata.find('>', i) - return k+1 - - def mapContentType(self, contentType): - contentType = contentType.lower() - if contentType == 'text': - contentType = 'text/plain' - elif contentType == 'html': - contentType = 'text/html' - elif contentType == 'xhtml': - contentType = 'application/xhtml+xml' - return contentType - - def trackNamespace(self, prefix, uri): - loweruri = uri.lower() - if (prefix, loweruri) == (None, 'http://my.netscape.com/rdf/simple/0.9/') and not self.version: - self.version = 'rss090' - if loweruri == 'http://purl.org/rss/1.0/' and not self.version: - self.version = 'rss10' - if loweruri == 'http://www.w3.org/2005/atom' and not self.version: - self.version = 'atom10' - if loweruri.find('backend.userland.com/rss') <> -1: - # match any backend.userland.com namespace - uri = 'http://backend.userland.com/rss' - loweruri = uri - if self._matchnamespaces.has_key(loweruri): - self.namespacemap[prefix] = self._matchnamespaces[loweruri] - self.namespacesInUse[self._matchnamespaces[loweruri]] = uri - else: - self.namespacesInUse[prefix or ''] = uri - - def resolveURI(self, uri): - return _urljoin(self.baseuri or '', uri) - - def decodeEntities(self, element, data): - return data - - def push(self, element, expectingText): - self.elementstack.append([element, expectingText, []]) - - def pop(self, element, stripWhitespace=1): - if not self.elementstack: return - if self.elementstack[-1][0] != element: return - - element, expectingText, pieces = self.elementstack.pop() - output = ''.join(pieces) - if stripWhitespace: - output = output.strip() - if not expectingText: return output - - # decode base64 content - if base64 and self.contentparams.get('base64', 0): - try: - output = base64.decodestring(output) - except binascii.Error: - pass - except binascii.Incomplete: - pass - - # resolve relative URIs - if (element in self.can_be_relative_uri) and output: - output = self.resolveURI(output) - - # decode entities within embedded markup - if not self.contentparams.get('base64', 0): - output = self.decodeEntities(element, output) - - # remove temporary cruft from contentparams - try: - del self.contentparams['mode'] - except KeyError: - pass - try: - del self.contentparams['base64'] - except KeyError: - pass - - # resolve relative URIs within embedded markup - if self.mapContentType(self.contentparams.get('type', 'text/html')) in self.html_types: - if element in self.can_contain_relative_uris: - output = _resolveRelativeURIs(output, self.baseuri, self.encoding) - - # sanitize embedded markup - if self.mapContentType(self.contentparams.get('type', 'text/html')) in self.html_types: - if element in self.can_contain_dangerous_markup: - output = _sanitizeHTML(output, self.encoding) - - if self.encoding and type(output) != type(u''): - try: - output = unicode(output, self.encoding) - except: - pass - - # categories/tags/keywords/whatever are handled in _end_category - if element == 'category': - return output - - # store output in appropriate place(s) - if self.inentry and not self.insource: - if element == 'content': - self.entries[-1].setdefault(element, []) - contentparams = copy.deepcopy(self.contentparams) - contentparams['value'] = output - self.entries[-1][element].append(contentparams) - elif element == 'link': - self.entries[-1][element] = output - if output: - self.entries[-1]['links'][-1]['href'] = output - else: - if element == 'description': - element = 'summary' - self.entries[-1][element] = output - if self.incontent: - contentparams = copy.deepcopy(self.contentparams) - contentparams['value'] = output - self.entries[-1][element + '_detail'] = contentparams - elif (self.infeed or self.insource) and (not self.intextinput) and (not self.inimage): - context = self._getContext() - if element == 'description': - element = 'subtitle' - context[element] = output - if element == 'link': - context['links'][-1]['href'] = output - elif self.incontent: - contentparams = copy.deepcopy(self.contentparams) - contentparams['value'] = output - context[element + '_detail'] = contentparams - return output - - def pushContent(self, tag, attrsD, defaultContentType, expectingText): - self.incontent += 1 - self.contentparams = FeedParserDict({ - 'type': self.mapContentType(attrsD.get('type', defaultContentType)), - 'language': self.lang, - 'base': self.baseuri}) - self.contentparams['base64'] = self._isBase64(attrsD, self.contentparams) - self.push(tag, expectingText) - - def popContent(self, tag): - value = self.pop(tag) - self.incontent -= 1 - self.contentparams.clear() - return value - - def _mapToStandardPrefix(self, name): - colonpos = name.find(':') - if colonpos <> -1: - prefix = name[:colonpos] - suffix = name[colonpos+1:] - prefix = self.namespacemap.get(prefix, prefix) - name = prefix + ':' + suffix - return name - - def _getAttribute(self, attrsD, name): - return attrsD.get(self._mapToStandardPrefix(name)) - - def _isBase64(self, attrsD, contentparams): - if attrsD.get('mode', '') == 'base64': - return 1 - if self.contentparams['type'].startswith('text/'): - return 0 - if self.contentparams['type'].endswith('+xml'): - return 0 - if self.contentparams['type'].endswith('/xml'): - return 0 - return 1 - - def _itsAnHrefDamnIt(self, attrsD): - href = attrsD.get('url', attrsD.get('uri', attrsD.get('href', None))) - if href: - try: - del attrsD['url'] - except KeyError: - pass - try: - del attrsD['uri'] - except KeyError: - pass - attrsD['href'] = href - return attrsD - - def _save(self, key, value): - context = self._getContext() - context.setdefault(key, value) - - def _start_rss(self, attrsD): - versionmap = {'0.91': 'rss091u', - '0.92': 'rss092', - '0.93': 'rss093', - '0.94': 'rss094'} - if not self.version: - attr_version = attrsD.get('version', '') - version = versionmap.get(attr_version) - if version: - self.version = version - elif attr_version.startswith('2.'): - self.version = 'rss20' - else: - self.version = 'rss' - - def _start_dlhottitles(self, attrsD): - self.version = 'hotrss' - - def _start_channel(self, attrsD): - self.infeed = 1 - self._cdf_common(attrsD) - _start_feedinfo = _start_channel - - def _cdf_common(self, attrsD): - if attrsD.has_key('lastmod'): - self._start_modified({}) - self.elementstack[-1][-1] = attrsD['lastmod'] - self._end_modified() - if attrsD.has_key('href'): - self._start_link({}) - self.elementstack[-1][-1] = attrsD['href'] - self._end_link() - - def _start_feed(self, attrsD): - self.infeed = 1 - versionmap = {'0.1': 'atom01', - '0.2': 'atom02', - '0.3': 'atom03'} - if not self.version: - attr_version = attrsD.get('version') - version = versionmap.get(attr_version) - if version: - self.version = version - else: - self.version = 'atom' - - def _end_channel(self): - self.infeed = 0 - _end_feed = _end_channel - - def _start_image(self, attrsD): - self.inimage = 1 - self.push('image', 0) - context = self._getContext() - context.setdefault('image', FeedParserDict()) - - def _end_image(self): - self.pop('image') - self.inimage = 0 - - def _start_textinput(self, attrsD): - self.intextinput = 1 - self.push('textinput', 0) - context = self._getContext() - context.setdefault('textinput', FeedParserDict()) - _start_textInput = _start_textinput - - def _end_textinput(self): - self.pop('textinput') - self.intextinput = 0 - _end_textInput = _end_textinput - - def _start_author(self, attrsD): - self.inauthor = 1 - self.push('author', 1) - _start_managingeditor = _start_author - _start_dc_author = _start_author - _start_dc_creator = _start_author - _start_itunes_author = _start_author - - def _end_author(self): - self.pop('author') - self.inauthor = 0 - self._sync_author_detail() - _end_managingeditor = _end_author - _end_dc_author = _end_author - _end_dc_creator = _end_author - _end_itunes_author = _end_author - - def _start_itunes_owner(self, attrsD): - self.inpublisher = 1 - self.push('publisher', 0) - - def _end_itunes_owner(self): - self.pop('publisher') - self.inpublisher = 0 - self._sync_author_detail('publisher') - - def _start_contributor(self, attrsD): - self.incontributor = 1 - context = self._getContext() - context.setdefault('contributors', []) - context['contributors'].append(FeedParserDict()) - self.push('contributor', 0) - - def _end_contributor(self): - self.pop('contributor') - self.incontributor = 0 - - def _start_dc_contributor(self, attrsD): - self.incontributor = 1 - context = self._getContext() - context.setdefault('contributors', []) - context['contributors'].append(FeedParserDict()) - self.push('name', 0) - - def _end_dc_contributor(self): - self._end_name() - self.incontributor = 0 - - def _start_name(self, attrsD): - self.push('name', 0) - _start_itunes_name = _start_name - - def _end_name(self): - value = self.pop('name') - if self.inpublisher: - self._save_author('name', value, 'publisher') - elif self.inauthor: - self._save_author('name', value) - elif self.incontributor: - self._save_contributor('name', value) - elif self.intextinput: - context = self._getContext() - context['textinput']['name'] = value - _end_itunes_name = _end_name - - def _start_width(self, attrsD): - self.push('width', 0) - - def _end_width(self): - value = self.pop('width') - try: - value = int(value) - except: - value = 0 - if self.inimage: - context = self._getContext() - context['image']['width'] = value - - def _start_height(self, attrsD): - self.push('height', 0) - - def _end_height(self): - value = self.pop('height') - try: - value = int(value) - except: - value = 0 - if self.inimage: - context = self._getContext() - context['image']['height'] = value - - def _start_url(self, attrsD): - self.push('href', 1) - _start_homepage = _start_url - _start_uri = _start_url - - def _end_url(self): - value = self.pop('href') - if self.inauthor: - self._save_author('href', value) - elif self.incontributor: - self._save_contributor('href', value) - elif self.inimage: - context = self._getContext() - context['image']['href'] = value - elif self.intextinput: - context = self._getContext() - context['textinput']['link'] = value - _end_homepage = _end_url - _end_uri = _end_url - - def _start_email(self, attrsD): - self.push('email', 0) - _start_itunes_email = _start_email - - def _end_email(self): - value = self.pop('email') - if self.inpublisher: - self._save_author('email', value, 'publisher') - elif self.inauthor: - self._save_author('email', value) - elif self.incontributor: - self._save_contributor('email', value) - _end_itunes_email = _end_email - - def _getContext(self): - if self.insource: - context = self.sourcedata - elif self.inentry: - context = self.entries[-1] - else: - context = self.feeddata - return context - - def _save_author(self, key, value, prefix='author'): - context = self._getContext() - context.setdefault(prefix + '_detail', FeedParserDict()) - context[prefix + '_detail'][key] = value - self._sync_author_detail() - - def _save_contributor(self, key, value): - context = self._getContext() - context.setdefault('contributors', [FeedParserDict()]) - context['contributors'][-1][key] = value - - def _sync_author_detail(self, key='author'): - context = self._getContext() - detail = context.get('%s_detail' % key) - if detail: - name = detail.get('name') - email = detail.get('email') - if name and email: - context[key] = '%s (%s)' % (name, email) - elif name: - context[key] = name - elif email: - context[key] = email - else: - author = context.get(key) - if not author: return - emailmatch = re.search(r'''(([a-zA-Z0-9\_\-\.\+]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?))''', author) - if not emailmatch: return - email = emailmatch.group(0) - # probably a better way to do the following, but it passes all the tests - author = author.replace(email, '') - author = author.replace('()', '') - author = author.strip() - if author and (author[0] == '('): - author = author[1:] - if author and (author[-1] == ')'): - author = author[:-1] - author = author.strip() - context.setdefault('%s_detail' % key, FeedParserDict()) - context['%s_detail' % key]['name'] = author - context['%s_detail' % key]['email'] = email - - def _start_subtitle(self, attrsD): - self.pushContent('subtitle', attrsD, 'text/plain', 1) - _start_tagline = _start_subtitle - _start_itunes_subtitle = _start_subtitle - - def _end_subtitle(self): - self.popContent('subtitle') - _end_tagline = _end_subtitle - _end_itunes_subtitle = _end_subtitle - - def _start_rights(self, attrsD): - self.pushContent('rights', attrsD, 'text/plain', 1) - _start_dc_rights = _start_rights - _start_copyright = _start_rights - - def _end_rights(self): - self.popContent('rights') - _end_dc_rights = _end_rights - _end_copyright = _end_rights - - def _start_item(self, attrsD): - self.entries.append(FeedParserDict()) - self.push('item', 0) - self.inentry = 1 - self.guidislink = 0 - id = self._getAttribute(attrsD, 'rdf:about') - if id: - context = self._getContext() - context['id'] = id - self._cdf_common(attrsD) - _start_entry = _start_item - _start_product = _start_item - - def _end_item(self): - self.pop('item') - self.inentry = 0 - _end_entry = _end_item - - def _start_dc_language(self, attrsD): - self.push('language', 1) - _start_language = _start_dc_language - - def _end_dc_language(self): - self.lang = self.pop('language') - _end_language = _end_dc_language - - def _start_dc_publisher(self, attrsD): - self.push('publisher', 1) - _start_webmaster = _start_dc_publisher - - def _end_dc_publisher(self): - self.pop('publisher') - self._sync_author_detail('publisher') - _end_webmaster = _end_dc_publisher - - def _start_published(self, attrsD): - self.push('published', 1) - _start_dcterms_issued = _start_published - _start_issued = _start_published - - def _end_published(self): - value = self.pop('published') - self._save('published_parsed', _parse_date(value)) - _end_dcterms_issued = _end_published - _end_issued = _end_published - - def _start_updated(self, attrsD): - self.push('updated', 1) - _start_modified = _start_updated - _start_dcterms_modified = _start_updated - _start_pubdate = _start_updated - _start_dc_date = _start_updated - - def _end_updated(self): - value = self.pop('updated') - parsed_value = _parse_date(value) - self._save('updated_parsed', parsed_value) - _end_modified = _end_updated - _end_dcterms_modified = _end_updated - _end_pubdate = _end_updated - _end_dc_date = _end_updated - - def _start_created(self, attrsD): - self.push('created', 1) - _start_dcterms_created = _start_created - - def _end_created(self): - value = self.pop('created') - self._save('created_parsed', _parse_date(value)) - _end_dcterms_created = _end_created - - def _start_expirationdate(self, attrsD): - self.push('expired', 1) - - def _end_expirationdate(self): - self._save('expired_parsed', _parse_date(self.pop('expired'))) - - def _start_cc_license(self, attrsD): - self.push('license', 1) - value = self._getAttribute(attrsD, 'rdf:resource') - if value: - self.elementstack[-1][2].append(value) - self.pop('license') - - def _start_creativecommons_license(self, attrsD): - self.push('license', 1) - - def _end_creativecommons_license(self): - self.pop('license') - - def _addTag(self, term, scheme, label): - context = self._getContext() - tags = context.setdefault('tags', []) - if (not term) and (not scheme) and (not label): return - value = FeedParserDict({'term': term, 'scheme': scheme, 'label': label}) - if value not in tags: - tags.append(FeedParserDict({'term': term, 'scheme': scheme, 'label': label})) - - def _start_category(self, attrsD): - if _debug: sys.stderr.write('entering _start_category with %s\n' % repr(attrsD)) - term = attrsD.get('term') - scheme = attrsD.get('scheme', attrsD.get('domain')) - label = attrsD.get('label') - self._addTag(term, scheme, label) - self.push('category', 1) - _start_dc_subject = _start_category - _start_keywords = _start_category - - def _end_itunes_keywords(self): - for term in self.pop('itunes_keywords').split(): - self._addTag(term, 'http://www.itunes.com/', None) - - def _start_itunes_category(self, attrsD): - self._addTag(attrsD.get('text'), 'http://www.itunes.com/', None) - self.push('category', 1) - - def _end_category(self): - value = self.pop('category') - if not value: return - context = self._getContext() - tags = context['tags'] - if value and len(tags) and not tags[-1]['term']: - tags[-1]['term'] = value - else: - self._addTag(value, None, None) - _end_dc_subject = _end_category - _end_keywords = _end_category - _end_itunes_category = _end_category - - def _start_cloud(self, attrsD): - self._getContext()['cloud'] = FeedParserDict(attrsD) - - def _start_link(self, attrsD): - attrsD.setdefault('rel', 'alternate') - attrsD.setdefault('type', 'text/html') - attrsD = self._itsAnHrefDamnIt(attrsD) - if attrsD.has_key('href'): - attrsD['href'] = self.resolveURI(attrsD['href']) - expectingText = self.infeed or self.inentry or self.insource - context = self._getContext() - context.setdefault('links', []) - context['links'].append(FeedParserDict(attrsD)) - if attrsD['rel'] == 'enclosure': - self._start_enclosure(attrsD) - if attrsD.has_key('href'): - expectingText = 0 - if (attrsD.get('rel') == 'alternate') and (self.mapContentType(attrsD.get('type')) in self.html_types): - context['link'] = attrsD['href'] - else: - self.push('link', expectingText) - _start_producturl = _start_link - - def _end_link(self): - value = self.pop('link') - context = self._getContext() - if self.intextinput: - context['textinput']['link'] = value - if self.inimage: - context['image']['link'] = value - _end_producturl = _end_link - - def _start_guid(self, attrsD): - self.guidislink = (attrsD.get('ispermalink', 'true') == 'true') - self.push('id', 1) - - def _end_guid(self): - value = self.pop('id') - self._save('guidislink', self.guidislink and not self._getContext().has_key('link')) - if self.guidislink: - # guid acts as link, but only if 'ispermalink' is not present or is 'true', - # and only if the item doesn't already have a link element - self._save('link', value) - - def _start_title(self, attrsD): - self.pushContent('title', attrsD, 'text/plain', self.infeed or self.inentry or self.insource) - _start_dc_title = _start_title - _start_media_title = _start_title - - def _end_title(self): - value = self.popContent('title') - context = self._getContext() - if self.intextinput: - context['textinput']['title'] = value - elif self.inimage: - context['image']['title'] = value - _end_dc_title = _end_title - _end_media_title = _end_title - - def _start_description(self, attrsD): - context = self._getContext() - if context.has_key('summary'): - self._summaryKey = 'content' - self._start_content(attrsD) - else: - self.pushContent('description', attrsD, 'text/html', self.infeed or self.inentry or self.insource) - - def _start_abstract(self, attrsD): - self.pushContent('description', attrsD, 'text/plain', self.infeed or self.inentry or self.insource) - - def _end_description(self): - if self._summaryKey == 'content': - self._end_content() - else: - value = self.popContent('description') - context = self._getContext() - if self.intextinput: - context['textinput']['description'] = value - elif self.inimage: - context['image']['description'] = value - self._summaryKey = None - _end_abstract = _end_description - - def _start_info(self, attrsD): - self.pushContent('info', attrsD, 'text/plain', 1) - _start_feedburner_browserfriendly = _start_info - - def _end_info(self): - self.popContent('info') - _end_feedburner_browserfriendly = _end_info - - def _start_generator(self, attrsD): - if attrsD: - attrsD = self._itsAnHrefDamnIt(attrsD) - if attrsD.has_key('href'): - attrsD['href'] = self.resolveURI(attrsD['href']) - self._getContext()['generator_detail'] = FeedParserDict(attrsD) - self.push('generator', 1) - - def _end_generator(self): - value = self.pop('generator') - context = self._getContext() - if context.has_key('generator_detail'): - context['generator_detail']['name'] = value - - def _start_admin_generatoragent(self, attrsD): - self.push('generator', 1) - value = self._getAttribute(attrsD, 'rdf:resource') - if value: - self.elementstack[-1][2].append(value) - self.pop('generator') - self._getContext()['generator_detail'] = FeedParserDict({'href': value}) - - def _start_admin_errorreportsto(self, attrsD): - self.push('errorreportsto', 1) - value = self._getAttribute(attrsD, 'rdf:resource') - if value: - self.elementstack[-1][2].append(value) - self.pop('errorreportsto') - - def _start_summary(self, attrsD): - context = self._getContext() - if context.has_key('summary'): - self._summaryKey = 'content' - self._start_content(attrsD) - else: - self._summaryKey = 'summary' - self.pushContent(self._summaryKey, attrsD, 'text/plain', 1) - _start_itunes_summary = _start_summary - - def _end_summary(self): - if self._summaryKey == 'content': - self._end_content() - else: - self.popContent(self._summaryKey or 'summary') - self._summaryKey = None - _end_itunes_summary = _end_summary - - def _start_enclosure(self, attrsD): - attrsD = self._itsAnHrefDamnIt(attrsD) - self._getContext().setdefault('enclosures', []).append(FeedParserDict(attrsD)) - href = attrsD.get('href') - if href: - context = self._getContext() - if not context.get('id'): - context['id'] = href - - def _start_source(self, attrsD): - self.insource = 1 - - def _end_source(self): - self.insource = 0 - self._getContext()['source'] = copy.deepcopy(self.sourcedata) - self.sourcedata.clear() - - def _start_content(self, attrsD): - self.pushContent('content', attrsD, 'text/plain', 1) - src = attrsD.get('src') - if src: - self.contentparams['src'] = src - self.push('content', 1) - - def _start_prodlink(self, attrsD): - self.pushContent('content', attrsD, 'text/html', 1) - - def _start_body(self, attrsD): - self.pushContent('content', attrsD, 'application/xhtml+xml', 1) - _start_xhtml_body = _start_body - - def _start_content_encoded(self, attrsD): - self.pushContent('content', attrsD, 'text/html', 1) - _start_fullitem = _start_content_encoded - - def _end_content(self): - copyToDescription = self.mapContentType(self.contentparams.get('type')) in (['text/plain'] + self.html_types) - value = self.popContent('content') - if copyToDescription: - self._save('description', value) - _end_body = _end_content - _end_xhtml_body = _end_content - _end_content_encoded = _end_content - _end_fullitem = _end_content - _end_prodlink = _end_content - - def _start_itunes_image(self, attrsD): - self.push('itunes_image', 0) - self._getContext()['image'] = FeedParserDict({'href': attrsD.get('href')}) - _start_itunes_link = _start_itunes_image - - def _end_itunes_block(self): - value = self.pop('itunes_block', 0) - self._getContext()['itunes_block'] = (value == 'yes') and 1 or 0 - - def _end_itunes_explicit(self): - value = self.pop('itunes_explicit', 0) - self._getContext()['itunes_explicit'] = (value == 'yes') and 1 or 0 - -if _XML_AVAILABLE: - class _StrictFeedParser(_FeedParserMixin, xml.sax.handler.ContentHandler): - def __init__(self, baseuri, baselang, encoding): - if _debug: sys.stderr.write('trying StrictFeedParser\n') - xml.sax.handler.ContentHandler.__init__(self) - _FeedParserMixin.__init__(self, baseuri, baselang, encoding) - self.bozo = 0 - self.exc = None - - def startPrefixMapping(self, prefix, uri): - self.trackNamespace(prefix, uri) - - def startElementNS(self, name, qname, attrs): - namespace, localname = name - lowernamespace = str(namespace or '').lower() - if lowernamespace.find('backend.userland.com/rss') <> -1: - # match any backend.userland.com namespace - namespace = 'http://backend.userland.com/rss' - lowernamespace = namespace - if qname and qname.find(':') > 0: - givenprefix = qname.split(':')[0] - else: - givenprefix = None - prefix = self._matchnamespaces.get(lowernamespace, givenprefix) - if givenprefix and (prefix == None or (prefix == '' and lowernamespace == '')) and not self.namespacesInUse.has_key(givenprefix): - raise UndeclaredNamespace, "'%s' is not associated with a namespace" % givenprefix - if prefix: - localname = prefix + ':' + localname - localname = str(localname).lower() - if _debug: sys.stderr.write('startElementNS: qname = %s, namespace = %s, givenprefix = %s, prefix = %s, attrs = %s, localname = %s\n' % (qname, namespace, givenprefix, prefix, attrs.items(), localname)) - - # qname implementation is horribly broken in Python 2.1 (it - # doesn't report any), and slightly broken in Python 2.2 (it - # doesn't report the xml: namespace). So we match up namespaces - # with a known list first, and then possibly override them with - # the qnames the SAX parser gives us (if indeed it gives us any - # at all). Thanks to MatejC for helping me test this and - # tirelessly telling me that it didn't work yet. - attrsD = {} - for (namespace, attrlocalname), attrvalue in attrs._attrs.items(): - lowernamespace = (namespace or '').lower() - prefix = self._matchnamespaces.get(lowernamespace, '') - if prefix: - attrlocalname = prefix + ':' + attrlocalname - attrsD[str(attrlocalname).lower()] = attrvalue - for qname in attrs.getQNames(): - attrsD[str(qname).lower()] = attrs.getValueByQName(qname) - self.unknown_starttag(localname, attrsD.items()) - - def characters(self, text): - self.handle_data(text) - - def endElementNS(self, name, qname): - namespace, localname = name - lowernamespace = str(namespace or '').lower() - if qname and qname.find(':') > 0: - givenprefix = qname.split(':')[0] - else: - givenprefix = '' - prefix = self._matchnamespaces.get(lowernamespace, givenprefix) - if prefix: - localname = prefix + ':' + localname - localname = str(localname).lower() - self.unknown_endtag(localname) - - def error(self, exc): - self.bozo = 1 - self.exc = exc - - def fatalError(self, exc): - self.error(exc) - raise exc - -class _BaseHTMLProcessor(sgmllib.SGMLParser): - elements_no_end_tag = ['area', 'base', 'basefont', 'br', 'col', 'frame', 'hr', - 'img', 'input', 'isindex', 'link', 'meta', 'param'] - - def __init__(self, encoding): - self.encoding = encoding - if _debug: sys.stderr.write('entering BaseHTMLProcessor, encoding=%s\n' % self.encoding) - sgmllib.SGMLParser.__init__(self) - - def reset(self): - self.pieces = [] - sgmllib.SGMLParser.reset(self) - - def _shorttag_replace(self, match): - tag = match.group(1) - if tag in self.elements_no_end_tag: - return '<' + tag + ' />' - else: - return '<' + tag + '>' - - def feed(self, data): - data = re.compile(r'', self._shorttag_replace, data) # bug [ 1399464 ] Bad regexp for _shorttag_replace - data = re.sub(r'<([^<\s]+?)\s*/>', self._shorttag_replace, data) - data = data.replace(''', "'") - data = data.replace('"', '"') - if self.encoding and type(data) == type(u''): - data = data.encode(self.encoding) - sgmllib.SGMLParser.feed(self, data) - - def normalize_attrs(self, attrs): - # utility method to be called by descendants - attrs = [(k.lower(), v) for k, v in attrs] - attrs = [(k, k in ('rel', 'type') and v.lower() or v) for k, v in attrs] - return attrs - - def unknown_starttag(self, tag, attrs): - # called for each start tag - # attrs is a list of (attr, value) tuples - # e.g. for
    , tag='pre', attrs=[('class', 'screen')]
    -        if _debug: sys.stderr.write('_BaseHTMLProcessor, unknown_starttag, tag=%s\n' % tag)
    -        uattrs = []
    -        # thanks to Kevin Marks for this breathtaking hack to deal with (valid) high-bit attribute values in UTF-8 feeds
    -        for key, value in attrs:
    -            if type(value) != type(u''):
    -                value = unicode(value, self.encoding)
    -            uattrs.append((unicode(key, self.encoding), value))
    -        strattrs = u''.join([u' %s="%s"' % (key, value) for key, value in uattrs]).encode(self.encoding)
    -        if tag in self.elements_no_end_tag:
    -            self.pieces.append('<%(tag)s%(strattrs)s />' % locals())
    -        else:
    -            self.pieces.append('<%(tag)s%(strattrs)s>' % locals())
    -
    -    def unknown_endtag(self, tag):
    -        # called for each end tag, e.g. for 
    , tag will be 'pre' - # Reconstruct the original end tag. - if tag not in self.elements_no_end_tag: - self.pieces.append("" % locals()) - - def handle_charref(self, ref): - # called for each character reference, e.g. for ' ', ref will be '160' - # Reconstruct the original character reference. - self.pieces.append('&#%(ref)s;' % locals()) - - def handle_entityref(self, ref): - # called for each entity reference, e.g. for '©', ref will be 'copy' - # Reconstruct the original entity reference. - self.pieces.append('&%(ref)s;' % locals()) - - def handle_data(self, text): - # called for each block of plain text, i.e. outside of any tag and - # not containing any character or entity references - # Store the original text verbatim. - if _debug: sys.stderr.write('_BaseHTMLProcessor, handle_text, text=%s\n' % text) - self.pieces.append(text) - - def handle_comment(self, text): - # called for each HTML comment, e.g. - # Reconstruct the original comment. - self.pieces.append('' % locals()) - - def handle_pi(self, text): - # called for each processing instruction, e.g. - # Reconstruct original processing instruction. - self.pieces.append('' % locals()) - - def handle_decl(self, text): - # called for the DOCTYPE, if present, e.g. - # - # Reconstruct original DOCTYPE - self.pieces.append('' % locals()) - - _new_declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9:]*\s*').match - def _scan_name(self, i, declstartpos): - rawdata = self.rawdata - n = len(rawdata) - if i == n: - return None, -1 - m = self._new_declname_match(rawdata, i) - if m: - s = m.group() - name = s.strip() - if (i + len(s)) == n: - return None, -1 # end of buffer - return name.lower(), m.end() - else: - self.handle_data(rawdata) -# self.updatepos(declstartpos, i) - return None, -1 - - def output(self): - '''Return processed HTML as a single string''' - return ''.join([str(p) for p in self.pieces]) - -class _LooseFeedParser(_FeedParserMixin, _BaseHTMLProcessor): - def __init__(self, baseuri, baselang, encoding): - sgmllib.SGMLParser.__init__(self) - _FeedParserMixin.__init__(self, baseuri, baselang, encoding) - - def decodeEntities(self, element, data): - data = data.replace('<', '<') - data = data.replace('<', '<') - data = data.replace('>', '>') - data = data.replace('>', '>') - data = data.replace('&', '&') - data = data.replace('&', '&') - data = data.replace('"', '"') - data = data.replace('"', '"') - data = data.replace(''', ''') - data = data.replace(''', ''') - if self.contentparams.has_key('type') and not self.contentparams.get('type', 'xml').endswith('xml'): - data = data.replace('<', '<') - data = data.replace('>', '>') - data = data.replace('&', '&') - data = data.replace('"', '"') - data = data.replace(''', "'") - return data - -class _RelativeURIResolver(_BaseHTMLProcessor): - relative_uris = [('a', 'href'), - ('applet', 'codebase'), - ('area', 'href'), - ('blockquote', 'cite'), - ('body', 'background'), - ('del', 'cite'), - ('form', 'action'), - ('frame', 'longdesc'), - ('frame', 'src'), - ('iframe', 'longdesc'), - ('iframe', 'src'), - ('head', 'profile'), - ('img', 'longdesc'), - ('img', 'src'), - ('img', 'usemap'), - ('input', 'src'), - ('input', 'usemap'), - ('ins', 'cite'), - ('link', 'href'), - ('object', 'classid'), - ('object', 'codebase'), - ('object', 'data'), - ('object', 'usemap'), - ('q', 'cite'), - ('script', 'src')] - - def __init__(self, baseuri, encoding): - _BaseHTMLProcessor.__init__(self, encoding) - self.baseuri = baseuri - - def resolveURI(self, uri): - return _urljoin(self.baseuri, uri) - - def unknown_starttag(self, tag, attrs): - attrs = self.normalize_attrs(attrs) - attrs = [(key, ((tag, key) in self.relative_uris) and self.resolveURI(value) or value) for key, value in attrs] - _BaseHTMLProcessor.unknown_starttag(self, tag, attrs) - -def _resolveRelativeURIs(htmlSource, baseURI, encoding): - if _debug: sys.stderr.write('entering _resolveRelativeURIs\n') - p = _RelativeURIResolver(baseURI, encoding) - p.feed(htmlSource) - return p.output() - -class _HTMLSanitizer(_BaseHTMLProcessor): - acceptable_elements = ['a', 'abbr', 'acronym', 'address', 'area', 'b', 'big', - 'blockquote', 'br', 'button', 'caption', 'center', 'cite', 'code', 'col', - 'colgroup', 'dd', 'del', 'dfn', 'dir', 'div', 'dl', 'dt', 'em', 'fieldset', - 'font', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'input', - 'ins', 'kbd', 'label', 'legend', 'li', 'map', 'menu', 'ol', 'optgroup', - 'option', 'p', 'pre', 'q', 's', 'samp', 'select', 'small', 'span', 'strike', - 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', - 'thead', 'tr', 'tt', 'u', 'ul', 'var'] - - acceptable_attributes = ['abbr', 'accept', 'accept-charset', 'accesskey', - 'action', 'align', 'alt', 'axis', 'border', 'cellpadding', 'cellspacing', - 'char', 'charoff', 'charset', 'checked', 'cite', 'class', 'clear', 'cols', - 'colspan', 'color', 'compact', 'coords', 'datetime', 'dir', 'disabled', - 'enctype', 'for', 'frame', 'headers', 'height', 'href', 'hreflang', 'hspace', - 'id', 'ismap', 'label', 'lang', 'longdesc', 'maxlength', 'media', 'method', - 'multiple', 'name', 'nohref', 'noshade', 'nowrap', 'prompt', 'readonly', - 'rel', 'rev', 'rows', 'rowspan', 'rules', 'scope', 'selected', 'shape', 'size', - 'span', 'src', 'start', 'summary', 'tabindex', 'target', 'title', 'type', - 'usemap', 'valign', 'value', 'vspace', 'width'] - - unacceptable_elements_with_end_tag = ['script', 'applet'] - - def reset(self): - _BaseHTMLProcessor.reset(self) - self.unacceptablestack = 0 - - def unknown_starttag(self, tag, attrs): - if not tag in self.acceptable_elements: - if tag in self.unacceptable_elements_with_end_tag: - self.unacceptablestack += 1 - return - attrs = self.normalize_attrs(attrs) - attrs = [(key, value) for key, value in attrs if key in self.acceptable_attributes] - _BaseHTMLProcessor.unknown_starttag(self, tag, attrs) - - def unknown_endtag(self, tag): - if not tag in self.acceptable_elements: - if tag in self.unacceptable_elements_with_end_tag: - self.unacceptablestack -= 1 - return - _BaseHTMLProcessor.unknown_endtag(self, tag) - - def handle_pi(self, text): - pass - - def handle_decl(self, text): - pass - - def handle_data(self, text): - if not self.unacceptablestack: - _BaseHTMLProcessor.handle_data(self, text) - -def _sanitizeHTML(htmlSource, encoding): - p = _HTMLSanitizer(encoding) - p.feed(htmlSource) - data = p.output() - if TIDY_MARKUP: - # loop through list of preferred Tidy interfaces looking for one that's installed, - # then set up a common _tidy function to wrap the interface-specific API. - _tidy = None - for tidy_interface in PREFERRED_TIDY_INTERFACES: - try: - if tidy_interface == "uTidy": - from tidy import parseString as _utidy - def _tidy(data, **kwargs): - return str(_utidy(data, **kwargs)) - break - elif tidy_interface == "mxTidy": - from mx.Tidy import Tidy as _mxtidy - def _tidy(data, **kwargs): - nerrors, nwarnings, data, errordata = _mxtidy.tidy(data, **kwargs) - return data - break - except: - pass - if _tidy: - utf8 = type(data) == type(u'') - if utf8: - data = data.encode('utf-8') - data = _tidy(data, output_xhtml=1, numeric_entities=1, wrap=0, char_encoding="utf8") - if utf8: - data = unicode(data, 'utf-8') - if data.count(''): - data = data.split('>', 1)[1] - if data.count('= '2.3.3' - assert base64 != None - user, passw = base64.decodestring(req.headers['Authorization'].split(' ')[1]).split(':') - realm = re.findall('realm="([^"]*)"', headers['WWW-Authenticate'])[0] - self.add_password(realm, host, user, passw) - retry = self.http_error_auth_reqed('www-authenticate', host, req, headers) - self.reset_retry_count() - return retry - except: - return self.http_error_default(req, fp, code, msg, headers) - -def _open_resource(url_file_stream_or_string, etag, modified, agent, referrer, handlers): - """URL, filename, or string --> stream - - This function lets you define parsers that take any input source - (URL, pathname to local or network file, or actual data as a string) - and deal with it in a uniform manner. Returned object is guaranteed - to have all the basic stdio read methods (read, readline, readlines). - Just .close() the object when you're done with it. - - If the etag argument is supplied, it will be used as the value of an - If-None-Match request header. - - If the modified argument is supplied, it must be a tuple of 9 integers - as returned by gmtime() in the standard Python time module. This MUST - be in GMT (Greenwich Mean Time). The formatted date/time will be used - as the value of an If-Modified-Since request header. - - If the agent argument is supplied, it will be used as the value of a - User-Agent request header. - - If the referrer argument is supplied, it will be used as the value of a - Referer[sic] request header. - - If handlers is supplied, it is a list of handlers used to build a - urllib2 opener. - """ - - if hasattr(url_file_stream_or_string, 'read'): - return url_file_stream_or_string - - if url_file_stream_or_string == '-': - return sys.stdin - - if urlparse.urlparse(url_file_stream_or_string)[0] in ('http', 'https', 'ftp'): - if not agent: - agent = USER_AGENT - # test for inline user:password for basic auth - auth = None - if base64: - urltype, rest = urllib.splittype(url_file_stream_or_string) - realhost, rest = urllib.splithost(rest) - if realhost: - user_passwd, realhost = urllib.splituser(realhost) - if user_passwd: - url_file_stream_or_string = '%s://%s%s' % (urltype, realhost, rest) - auth = base64.encodestring(user_passwd).strip() - # try to open with urllib2 (to use optional headers) - request = urllib2.Request(url_file_stream_or_string) - request.add_header('User-Agent', agent) - if etag: - request.add_header('If-None-Match', etag) - if modified: - # format into an RFC 1123-compliant timestamp. We can't use - # time.strftime() since the %a and %b directives can be affected - # by the current locale, but RFC 2616 states that dates must be - # in English. - short_weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] - months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] - request.add_header('If-Modified-Since', '%s, %02d %s %04d %02d:%02d:%02d GMT' % (short_weekdays[modified[6]], modified[2], months[modified[1] - 1], modified[0], modified[3], modified[4], modified[5])) - if referrer: - request.add_header('Referer', referrer) - if gzip and zlib: - request.add_header('Accept-encoding', 'gzip, deflate') - elif gzip: - request.add_header('Accept-encoding', 'gzip') - elif zlib: - request.add_header('Accept-encoding', 'deflate') - else: - request.add_header('Accept-encoding', '') - if auth: - request.add_header('Authorization', 'Basic %s' % auth) - if ACCEPT_HEADER: - request.add_header('Accept', ACCEPT_HEADER) - request.add_header('A-IM', 'feed') # RFC 3229 support - opener = apply(urllib2.build_opener, tuple([_FeedURLHandler()] + handlers)) - opener.addheaders = [] # RMK - must clear so we only send our custom User-Agent - try: - return opener.open(request) - finally: - opener.close() # JohnD - - # try to open with native open function (if url_file_stream_or_string is a filename) - try: - return open(url_file_stream_or_string) - except: - pass - - # treat url_file_stream_or_string as string - return _StringIO(str(url_file_stream_or_string)) - -_date_handlers = [] -def registerDateHandler(func): - '''Register a date handler function (takes string, returns 9-tuple date in GMT)''' - _date_handlers.insert(0, func) - -# ISO-8601 date parsing routines written by Fazal Majid. -# The ISO 8601 standard is very convoluted and irregular - a full ISO 8601 -# parser is beyond the scope of feedparser and would be a worthwhile addition -# to the Python library. -# A single regular expression cannot parse ISO 8601 date formats into groups -# as the standard is highly irregular (for instance is 030104 2003-01-04 or -# 0301-04-01), so we use templates instead. -# Please note the order in templates is significant because we need a -# greedy match. -_iso8601_tmpl = ['YYYY-?MM-?DD', 'YYYY-MM', 'YYYY-?OOO', - 'YY-?MM-?DD', 'YY-?OOO', 'YYYY', - '-YY-?MM', '-OOO', '-YY', - '--MM-?DD', '--MM', - '---DD', - 'CC', ''] -_iso8601_re = [ - tmpl.replace( - 'YYYY', r'(?P\d{4})').replace( - 'YY', r'(?P\d\d)').replace( - 'MM', r'(?P[01]\d)').replace( - 'DD', r'(?P[0123]\d)').replace( - 'OOO', r'(?P[0123]\d\d)').replace( - 'CC', r'(?P\d\d$)') - + r'(T?(?P\d{2}):(?P\d{2})' - + r'(:(?P\d{2}))?' - + r'(?P[+-](?P\d{2})(:(?P\d{2}))?|Z)?)?' - for tmpl in _iso8601_tmpl] -del tmpl -_iso8601_matches = [re.compile(regex).match for regex in _iso8601_re] -del regex -def _parse_date_iso8601(dateString): - '''Parse a variety of ISO-8601-compatible formats like 20040105''' - m = None - for _iso8601_match in _iso8601_matches: - m = _iso8601_match(dateString) - if m: break - if not m: return - if m.span() == (0, 0): return - params = m.groupdict() - ordinal = params.get('ordinal', 0) - if ordinal: - ordinal = int(ordinal) - else: - ordinal = 0 - year = params.get('year', '--') - if not year or year == '--': - year = time.gmtime()[0] - elif len(year) == 2: - # ISO 8601 assumes current century, i.e. 93 -> 2093, NOT 1993 - year = 100 * int(time.gmtime()[0] / 100) + int(year) - else: - year = int(year) - month = params.get('month', '-') - if not month or month == '-': - # ordinals are NOT normalized by mktime, we simulate them - # by setting month=1, day=ordinal - if ordinal: - month = 1 - else: - month = time.gmtime()[1] - month = int(month) - day = params.get('day', 0) - if not day: - # see above - if ordinal: - day = ordinal - elif params.get('century', 0) or \ - params.get('year', 0) or params.get('month', 0): - day = 1 - else: - day = time.gmtime()[2] - else: - day = int(day) - # special case of the century - is the first year of the 21st century - # 2000 or 2001 ? The debate goes on... - if 'century' in params.keys(): - year = (int(params['century']) - 1) * 100 + 1 - # in ISO 8601 most fields are optional - for field in ['hour', 'minute', 'second', 'tzhour', 'tzmin']: - if not params.get(field, None): - params[field] = 0 - hour = int(params.get('hour', 0)) - minute = int(params.get('minute', 0)) - second = int(params.get('second', 0)) - # weekday is normalized by mktime(), we can ignore it - weekday = 0 - # daylight savings is complex, but not needed for feedparser's purposes - # as time zones, if specified, include mention of whether it is active - # (e.g. PST vs. PDT, CET). Using -1 is implementation-dependent and - # and most implementations have DST bugs - daylight_savings_flag = 0 - tm = [year, month, day, hour, minute, second, weekday, - ordinal, daylight_savings_flag] - # ISO 8601 time zone adjustments - tz = params.get('tz') - if tz and tz != 'Z': - if tz[0] == '-': - tm[3] += int(params.get('tzhour', 0)) - tm[4] += int(params.get('tzmin', 0)) - elif tz[0] == '+': - tm[3] -= int(params.get('tzhour', 0)) - tm[4] -= int(params.get('tzmin', 0)) - else: - return None - # Python's time.mktime() is a wrapper around the ANSI C mktime(3c) - # which is guaranteed to normalize d/m/y/h/m/s. - # Many implementations have bugs, but we'll pretend they don't. - return time.localtime(time.mktime(tm)) -registerDateHandler(_parse_date_iso8601) - -# 8-bit date handling routines written by ytrewq1. -_korean_year = u'\ub144' # b3e2 in euc-kr -_korean_month = u'\uc6d4' # bff9 in euc-kr -_korean_day = u'\uc77c' # c0cf in euc-kr -_korean_am = u'\uc624\uc804' # bfc0 c0fc in euc-kr -_korean_pm = u'\uc624\ud6c4' # bfc0 c8c4 in euc-kr - -_korean_onblog_date_re = \ - re.compile('(\d{4})%s\s+(\d{2})%s\s+(\d{2})%s\s+(\d{2}):(\d{2}):(\d{2})' % \ - (_korean_year, _korean_month, _korean_day)) -_korean_nate_date_re = \ - re.compile(u'(\d{4})-(\d{2})-(\d{2})\s+(%s|%s)\s+(\d{,2}):(\d{,2}):(\d{,2})' % \ - (_korean_am, _korean_pm)) -def _parse_date_onblog(dateString): - '''Parse a string according to the OnBlog 8-bit date format''' - m = _korean_onblog_date_re.match(dateString) - if not m: return - w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s:%(second)s%(zonediff)s' % \ - {'year': m.group(1), 'month': m.group(2), 'day': m.group(3),\ - 'hour': m.group(4), 'minute': m.group(5), 'second': m.group(6),\ - 'zonediff': '+09:00'} - if _debug: sys.stderr.write('OnBlog date parsed as: %s\n' % w3dtfdate) - return _parse_date_w3dtf(w3dtfdate) -registerDateHandler(_parse_date_onblog) - -def _parse_date_nate(dateString): - '''Parse a string according to the Nate 8-bit date format''' - m = _korean_nate_date_re.match(dateString) - if not m: return - hour = int(m.group(5)) - ampm = m.group(4) - if (ampm == _korean_pm): - hour += 12 - hour = str(hour) - if len(hour) == 1: - hour = '0' + hour - w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s:%(second)s%(zonediff)s' % \ - {'year': m.group(1), 'month': m.group(2), 'day': m.group(3),\ - 'hour': hour, 'minute': m.group(6), 'second': m.group(7),\ - 'zonediff': '+09:00'} - if _debug: sys.stderr.write('Nate date parsed as: %s\n' % w3dtfdate) - return _parse_date_w3dtf(w3dtfdate) -registerDateHandler(_parse_date_nate) - -_mssql_date_re = \ - re.compile('(\d{4})-(\d{2})-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})(\.\d+)?') -def _parse_date_mssql(dateString): - '''Parse a string according to the MS SQL date format''' - m = _mssql_date_re.match(dateString) - if not m: return - w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s:%(second)s%(zonediff)s' % \ - {'year': m.group(1), 'month': m.group(2), 'day': m.group(3),\ - 'hour': m.group(4), 'minute': m.group(5), 'second': m.group(6),\ - 'zonediff': '+09:00'} - if _debug: sys.stderr.write('MS SQL date parsed as: %s\n' % w3dtfdate) - return _parse_date_w3dtf(w3dtfdate) -registerDateHandler(_parse_date_mssql) - -# Unicode strings for Greek date strings -_greek_months = \ - { \ - u'\u0399\u03b1\u03bd': u'Jan', # c9e1ed in iso-8859-7 - u'\u03a6\u03b5\u03b2': u'Feb', # d6e5e2 in iso-8859-7 - u'\u039c\u03ac\u03ce': u'Mar', # ccdcfe in iso-8859-7 - u'\u039c\u03b1\u03ce': u'Mar', # cce1fe in iso-8859-7 - u'\u0391\u03c0\u03c1': u'Apr', # c1f0f1 in iso-8859-7 - u'\u039c\u03ac\u03b9': u'May', # ccdce9 in iso-8859-7 - u'\u039c\u03b1\u03ca': u'May', # cce1fa in iso-8859-7 - u'\u039c\u03b1\u03b9': u'May', # cce1e9 in iso-8859-7 - u'\u0399\u03bf\u03cd\u03bd': u'Jun', # c9effded in iso-8859-7 - u'\u0399\u03bf\u03bd': u'Jun', # c9efed in iso-8859-7 - u'\u0399\u03bf\u03cd\u03bb': u'Jul', # c9effdeb in iso-8859-7 - u'\u0399\u03bf\u03bb': u'Jul', # c9f9eb in iso-8859-7 - u'\u0391\u03cd\u03b3': u'Aug', # c1fde3 in iso-8859-7 - u'\u0391\u03c5\u03b3': u'Aug', # c1f5e3 in iso-8859-7 - u'\u03a3\u03b5\u03c0': u'Sep', # d3e5f0 in iso-8859-7 - u'\u039f\u03ba\u03c4': u'Oct', # cfeaf4 in iso-8859-7 - u'\u039d\u03bf\u03ad': u'Nov', # cdefdd in iso-8859-7 - u'\u039d\u03bf\u03b5': u'Nov', # cdefe5 in iso-8859-7 - u'\u0394\u03b5\u03ba': u'Dec', # c4e5ea in iso-8859-7 - } - -_greek_wdays = \ - { \ - u'\u039a\u03c5\u03c1': u'Sun', # caf5f1 in iso-8859-7 - u'\u0394\u03b5\u03c5': u'Mon', # c4e5f5 in iso-8859-7 - u'\u03a4\u03c1\u03b9': u'Tue', # d4f1e9 in iso-8859-7 - u'\u03a4\u03b5\u03c4': u'Wed', # d4e5f4 in iso-8859-7 - u'\u03a0\u03b5\u03bc': u'Thu', # d0e5ec in iso-8859-7 - u'\u03a0\u03b1\u03c1': u'Fri', # d0e1f1 in iso-8859-7 - u'\u03a3\u03b1\u03b2': u'Sat', # d3e1e2 in iso-8859-7 - } - -_greek_date_format_re = \ - re.compile(u'([^,]+),\s+(\d{2})\s+([^\s]+)\s+(\d{4})\s+(\d{2}):(\d{2}):(\d{2})\s+([^\s]+)') - -def _parse_date_greek(dateString): - '''Parse a string according to a Greek 8-bit date format.''' - m = _greek_date_format_re.match(dateString) - if not m: return - try: - wday = _greek_wdays[m.group(1)] - month = _greek_months[m.group(3)] - except: - return - rfc822date = '%(wday)s, %(day)s %(month)s %(year)s %(hour)s:%(minute)s:%(second)s %(zonediff)s' % \ - {'wday': wday, 'day': m.group(2), 'month': month, 'year': m.group(4),\ - 'hour': m.group(5), 'minute': m.group(6), 'second': m.group(7),\ - 'zonediff': m.group(8)} - if _debug: sys.stderr.write('Greek date parsed as: %s\n' % rfc822date) - return _parse_date_rfc822(rfc822date) -registerDateHandler(_parse_date_greek) - -# Unicode strings for Hungarian date strings -_hungarian_months = \ - { \ - u'janu\u00e1r': u'01', # e1 in iso-8859-2 - u'febru\u00e1ri': u'02', # e1 in iso-8859-2 - u'm\u00e1rcius': u'03', # e1 in iso-8859-2 - u'\u00e1prilis': u'04', # e1 in iso-8859-2 - u'm\u00e1ujus': u'05', # e1 in iso-8859-2 - u'j\u00fanius': u'06', # fa in iso-8859-2 - u'j\u00falius': u'07', # fa in iso-8859-2 - u'augusztus': u'08', - u'szeptember': u'09', - u'okt\u00f3ber': u'10', # f3 in iso-8859-2 - u'november': u'11', - u'december': u'12', - } - -_hungarian_date_format_re = \ - re.compile(u'(\d{4})-([^-]+)-(\d{,2})T(\d{,2}):(\d{2})((\+|-)(\d{,2}:\d{2}))') - -def _parse_date_hungarian(dateString): - '''Parse a string according to a Hungarian 8-bit date format.''' - m = _hungarian_date_format_re.match(dateString) - if not m: return - try: - month = _hungarian_months[m.group(2)] - day = m.group(3) - if len(day) == 1: - day = '0' + day - hour = m.group(4) - if len(hour) == 1: - hour = '0' + hour - except: - return - w3dtfdate = '%(year)s-%(month)s-%(day)sT%(hour)s:%(minute)s%(zonediff)s' % \ - {'year': m.group(1), 'month': month, 'day': day,\ - 'hour': hour, 'minute': m.group(5),\ - 'zonediff': m.group(6)} - if _debug: sys.stderr.write('Hungarian date parsed as: %s\n' % w3dtfdate) - return _parse_date_w3dtf(w3dtfdate) -registerDateHandler(_parse_date_hungarian) - -# W3DTF-style date parsing adapted from PyXML xml.utils.iso8601, written by -# Drake and licensed under the Python license. Removed all range checking -# for month, day, hour, minute, and second, since mktime will normalize -# these later -def _parse_date_w3dtf(dateString): - def __extract_date(m): - year = int(m.group('year')) - if year < 100: - year = 100 * int(time.gmtime()[0] / 100) + int(year) - if year < 1000: - return 0, 0, 0 - julian = m.group('julian') - if julian: - julian = int(julian) - month = julian / 30 + 1 - day = julian % 30 + 1 - jday = None - while jday != julian: - t = time.mktime((year, month, day, 0, 0, 0, 0, 0, 0)) - jday = time.gmtime(t)[-2] - diff = abs(jday - julian) - if jday > julian: - if diff < day: - day = day - diff - else: - month = month - 1 - day = 31 - elif jday < julian: - if day + diff < 28: - day = day + diff - else: - month = month + 1 - return year, month, day - month = m.group('month') - day = 1 - if month is None: - month = 1 - else: - month = int(month) - day = m.group('day') - if day: - day = int(day) - else: - day = 1 - return year, month, day - - def __extract_time(m): - if not m: - return 0, 0, 0 - hours = m.group('hours') - if not hours: - return 0, 0, 0 - hours = int(hours) - minutes = int(m.group('minutes')) - seconds = m.group('seconds') - if seconds: - seconds = int(seconds) - else: - seconds = 0 - return hours, minutes, seconds - - def __extract_tzd(m): - '''Return the Time Zone Designator as an offset in seconds from UTC.''' - if not m: - return 0 - tzd = m.group('tzd') - if not tzd: - return 0 - if tzd == 'Z': - return 0 - hours = int(m.group('tzdhours')) - minutes = m.group('tzdminutes') - if minutes: - minutes = int(minutes) - else: - minutes = 0 - offset = (hours*60 + minutes) * 60 - if tzd[0] == '+': - return -offset - return offset - - __date_re = ('(?P\d\d\d\d)' - '(?:(?P-|)' - '(?:(?P\d\d\d)' - '|(?P\d\d)(?:(?P=dsep)(?P\d\d))?))?') - __tzd_re = '(?P[-+](?P\d\d)(?::?(?P\d\d))|Z)' - __tzd_rx = re.compile(__tzd_re) - __time_re = ('(?P\d\d)(?P:|)(?P\d\d)' - '(?:(?P=tsep)(?P\d\d(?:[.,]\d+)?))?' - + __tzd_re) - __datetime_re = '%s(?:T%s)?' % (__date_re, __time_re) - __datetime_rx = re.compile(__datetime_re) - m = __datetime_rx.match(dateString) - if (m is None) or (m.group() != dateString): return - gmt = __extract_date(m) + __extract_time(m) + (0, 0, 0) - if gmt[0] == 0: return - return time.gmtime(time.mktime(gmt) + __extract_tzd(m) - time.timezone) -registerDateHandler(_parse_date_w3dtf) - -def _parse_date_rfc822(dateString): - '''Parse an RFC822, RFC1123, RFC2822, or asctime-style date''' - data = dateString.split() - if data[0][-1] in (',', '.') or data[0].lower() in rfc822._daynames: - del data[0] - if len(data) == 4: - s = data[3] - i = s.find('+') - if i > 0: - data[3:] = [s[:i], s[i+1:]] - else: - data.append('') - dateString = " ".join(data) - if len(data) < 5: - dateString += ' 00:00:00 GMT' - tm = rfc822.parsedate_tz(dateString) - if tm: - return time.gmtime(rfc822.mktime_tz(tm)) -# rfc822.py defines several time zones, but we define some extra ones. -# 'ET' is equivalent to 'EST', etc. -_additional_timezones = {'AT': -400, 'ET': -500, 'CT': -600, 'MT': -700, 'PT': -800} -rfc822._timezones.update(_additional_timezones) -registerDateHandler(_parse_date_rfc822) - -def _parse_date(dateString): - '''Parses a variety of date formats into a 9-tuple in GMT''' - for handler in _date_handlers: - try: - date9tuple = handler(dateString) - if not date9tuple: continue - if len(date9tuple) != 9: - if _debug: sys.stderr.write('date handler function must return 9-tuple\n') - raise ValueError - map(int, date9tuple) - return date9tuple - except Exception, e: - if _debug: sys.stderr.write('%s raised %s\n' % (handler.__name__, repr(e))) - pass - return None - -def _getCharacterEncoding(http_headers, xml_data): - '''Get the character encoding of the XML document - - http_headers is a dictionary - xml_data is a raw string (not Unicode) - - This is so much trickier than it sounds, it's not even funny. - According to RFC 3023 ('XML Media Types'), if the HTTP Content-Type - is application/xml, application/*+xml, - application/xml-external-parsed-entity, or application/xml-dtd, - the encoding given in the charset parameter of the HTTP Content-Type - takes precedence over the encoding given in the XML prefix within the - document, and defaults to 'utf-8' if neither are specified. But, if - the HTTP Content-Type is text/xml, text/*+xml, or - text/xml-external-parsed-entity, the encoding given in the XML prefix - within the document is ALWAYS IGNORED and only the encoding given in - the charset parameter of the HTTP Content-Type header should be - respected, and it defaults to 'us-ascii' if not specified. - - Furthermore, discussion on the atom-syntax mailing list with the - author of RFC 3023 leads me to the conclusion that any document - served with a Content-Type of text/* and no charset parameter - must be treated as us-ascii. (We now do this.) And also that it - must always be flagged as non-well-formed. (We now do this too.) - - If Content-Type is unspecified (input was local file or non-HTTP source) - or unrecognized (server just got it totally wrong), then go by the - encoding given in the XML prefix of the document and default to - 'iso-8859-1' as per the HTTP specification (RFC 2616). - - Then, assuming we didn't find a character encoding in the HTTP headers - (and the HTTP Content-type allowed us to look in the body), we need - to sniff the first few bytes of the XML data and try to determine - whether the encoding is ASCII-compatible. Section F of the XML - specification shows the way here: - http://www.w3.org/TR/REC-xml/#sec-guessing-no-ext-info - - If the sniffed encoding is not ASCII-compatible, we need to make it - ASCII compatible so that we can sniff further into the XML declaration - to find the encoding attribute, which will tell us the true encoding. - - Of course, none of this guarantees that we will be able to parse the - feed in the declared character encoding (assuming it was declared - correctly, which many are not). CJKCodecs and iconv_codec help a lot; - you should definitely install them if you can. - http://cjkpython.i18n.org/ - ''' - - def _parseHTTPContentType(content_type): - '''takes HTTP Content-Type header and returns (content type, charset) - - If no charset is specified, returns (content type, '') - If no content type is specified, returns ('', '') - Both return parameters are guaranteed to be lowercase strings - ''' - content_type = content_type or '' - content_type, params = cgi.parse_header(content_type) - return content_type, params.get('charset', '').replace("'", '') - - sniffed_xml_encoding = '' - xml_encoding = '' - true_encoding = '' - http_content_type, http_encoding = _parseHTTPContentType(http_headers.get('content-type')) - # Must sniff for non-ASCII-compatible character encodings before - # searching for XML declaration. This heuristic is defined in - # section F of the XML specification: - # http://www.w3.org/TR/REC-xml/#sec-guessing-no-ext-info - try: - if xml_data[:4] == '\x4c\x6f\xa7\x94': - # EBCDIC - xml_data = _ebcdic_to_ascii(xml_data) - elif xml_data[:4] == '\x00\x3c\x00\x3f': - # UTF-16BE - sniffed_xml_encoding = 'utf-16be' - xml_data = unicode(xml_data, 'utf-16be').encode('utf-8') - elif (len(xml_data) >= 4) and (xml_data[:2] == '\xfe\xff') and (xml_data[2:4] != '\x00\x00'): - # UTF-16BE with BOM - sniffed_xml_encoding = 'utf-16be' - xml_data = unicode(xml_data[2:], 'utf-16be').encode('utf-8') - elif xml_data[:4] == '\x3c\x00\x3f\x00': - # UTF-16LE - sniffed_xml_encoding = 'utf-16le' - xml_data = unicode(xml_data, 'utf-16le').encode('utf-8') - elif (len(xml_data) >= 4) and (xml_data[:2] == '\xff\xfe') and (xml_data[2:4] != '\x00\x00'): - # UTF-16LE with BOM - sniffed_xml_encoding = 'utf-16le' - xml_data = unicode(xml_data[2:], 'utf-16le').encode('utf-8') - elif xml_data[:4] == '\x00\x00\x00\x3c': - # UTF-32BE - sniffed_xml_encoding = 'utf-32be' - xml_data = unicode(xml_data, 'utf-32be').encode('utf-8') - elif xml_data[:4] == '\x3c\x00\x00\x00': - # UTF-32LE - sniffed_xml_encoding = 'utf-32le' - xml_data = unicode(xml_data, 'utf-32le').encode('utf-8') - elif xml_data[:4] == '\x00\x00\xfe\xff': - # UTF-32BE with BOM - sniffed_xml_encoding = 'utf-32be' - xml_data = unicode(xml_data[4:], 'utf-32be').encode('utf-8') - elif xml_data[:4] == '\xff\xfe\x00\x00': - # UTF-32LE with BOM - sniffed_xml_encoding = 'utf-32le' - xml_data = unicode(xml_data[4:], 'utf-32le').encode('utf-8') - elif xml_data[:3] == '\xef\xbb\xbf': - # UTF-8 with BOM - sniffed_xml_encoding = 'utf-8' - xml_data = unicode(xml_data[3:], 'utf-8').encode('utf-8') - else: - # ASCII-compatible - pass - xml_encoding_match = re.compile('^<\?.*encoding=[\'"](.*?)[\'"].*\?>').match(xml_data) - except: - xml_encoding_match = None - if xml_encoding_match: - xml_encoding = xml_encoding_match.groups()[0].lower() - if sniffed_xml_encoding and (xml_encoding in ('iso-10646-ucs-2', 'ucs-2', 'csunicode', 'iso-10646-ucs-4', 'ucs-4', 'csucs4', 'utf-16', 'utf-32', 'utf_16', 'utf_32', 'utf16', 'u16')): - xml_encoding = sniffed_xml_encoding - acceptable_content_type = 0 - application_content_types = ('application/xml', 'application/xml-dtd', 'application/xml-external-parsed-entity') - text_content_types = ('text/xml', 'text/xml-external-parsed-entity') - if (http_content_type in application_content_types) or \ - (http_content_type.startswith('application/') and http_content_type.endswith('+xml')): - acceptable_content_type = 1 - true_encoding = http_encoding or xml_encoding or 'utf-8' - elif (http_content_type in text_content_types) or \ - (http_content_type.startswith('text/')) and http_content_type.endswith('+xml'): - acceptable_content_type = 1 - true_encoding = http_encoding or 'us-ascii' - elif http_content_type.startswith('text/'): - true_encoding = http_encoding or 'us-ascii' - elif http_headers and (not http_headers.has_key('content-type')): - true_encoding = xml_encoding or 'iso-8859-1' - else: - true_encoding = xml_encoding or 'utf-8' - return true_encoding, http_encoding, xml_encoding, sniffed_xml_encoding, acceptable_content_type - -def _toUTF8(data, encoding): - '''Changes an XML data stream on the fly to specify a new encoding - - data is a raw sequence of bytes (not Unicode) that is presumed to be in %encoding already - encoding is a string recognized by encodings.aliases - ''' - if _debug: sys.stderr.write('entering _toUTF8, trying encoding %s\n' % encoding) - # strip Byte Order Mark (if present) - if (len(data) >= 4) and (data[:2] == '\xfe\xff') and (data[2:4] != '\x00\x00'): - if _debug: - sys.stderr.write('stripping BOM\n') - if encoding != 'utf-16be': - sys.stderr.write('trying utf-16be instead\n') - encoding = 'utf-16be' - data = data[2:] - elif (len(data) >= 4) and (data[:2] == '\xff\xfe') and (data[2:4] != '\x00\x00'): - if _debug: - sys.stderr.write('stripping BOM\n') - if encoding != 'utf-16le': - sys.stderr.write('trying utf-16le instead\n') - encoding = 'utf-16le' - data = data[2:] - elif data[:3] == '\xef\xbb\xbf': - if _debug: - sys.stderr.write('stripping BOM\n') - if encoding != 'utf-8': - sys.stderr.write('trying utf-8 instead\n') - encoding = 'utf-8' - data = data[3:] - elif data[:4] == '\x00\x00\xfe\xff': - if _debug: - sys.stderr.write('stripping BOM\n') - if encoding != 'utf-32be': - sys.stderr.write('trying utf-32be instead\n') - encoding = 'utf-32be' - data = data[4:] - elif data[:4] == '\xff\xfe\x00\x00': - if _debug: - sys.stderr.write('stripping BOM\n') - if encoding != 'utf-32le': - sys.stderr.write('trying utf-32le instead\n') - encoding = 'utf-32le' - data = data[4:] - newdata = unicode(data, encoding) - if _debug: sys.stderr.write('successfully converted %s data to unicode\n' % encoding) - declmatch = re.compile('^<\?xml[^>]*?>') - newdecl = '''''' - if declmatch.search(newdata): - newdata = declmatch.sub(newdecl, newdata) - else: - newdata = newdecl + u'\n' + newdata - return newdata.encode('utf-8') - -def _stripDoctype(data): - '''Strips DOCTYPE from XML document, returns (rss_version, stripped_data) - - rss_version may be 'rss091n' or None - stripped_data is the same XML document, minus the DOCTYPE - ''' - entity_pattern = re.compile(r']*?)>', re.MULTILINE) - data = entity_pattern.sub('', data) - doctype_pattern = re.compile(r']*?)>', re.MULTILINE) - doctype_results = doctype_pattern.findall(data) - doctype = doctype_results and doctype_results[0] or '' - if doctype.lower().count('netscape'): - version = 'rss091n' - else: - version = None - data = doctype_pattern.sub('', data) - return version, data - -def parse(url_file_stream_or_string, etag=None, modified=None, agent=None, referrer=None, handlers=[]): - '''Parse a feed from a URL, file, stream, or string''' - result = FeedParserDict() - result['feed'] = FeedParserDict() - result['entries'] = [] - if _XML_AVAILABLE: - result['bozo'] = 0 - if type(handlers) == types.InstanceType: - handlers = [handlers] - try: - f = _open_resource(url_file_stream_or_string, etag, modified, agent, referrer, handlers) - data = f.read() - except Exception, e: - result['bozo'] = 1 - result['bozo_exception'] = e - data = '' - f = None - - # if feed is gzip-compressed, decompress it - if f and data and hasattr(f, 'headers'): - if gzip and f.headers.get('content-encoding', '') == 'gzip': - try: - data = gzip.GzipFile(fileobj=_StringIO(data)).read() - except Exception, e: - # Some feeds claim to be gzipped but they're not, so - # we get garbage. Ideally, we should re-request the - # feed without the 'Accept-encoding: gzip' header, - # but we don't. - result['bozo'] = 1 - result['bozo_exception'] = e - data = '' - elif zlib and f.headers.get('content-encoding', '') == 'deflate': - try: - data = zlib.decompress(data, -zlib.MAX_WBITS) - except Exception, e: - result['bozo'] = 1 - result['bozo_exception'] = e - data = '' - - # save HTTP headers - if hasattr(f, 'info'): - info = f.info() - result['etag'] = info.getheader('ETag') - last_modified = info.getheader('Last-Modified') - if last_modified: - result['modified'] = _parse_date(last_modified) - if hasattr(f, 'url'): - result['href'] = f.url - result['status'] = 200 - if hasattr(f, 'status'): - result['status'] = f.status - if hasattr(f, 'headers'): - result['headers'] = f.headers.dict - if hasattr(f, 'close'): - f.close() - - # there are four encodings to keep track of: - # - http_encoding is the encoding declared in the Content-Type HTTP header - # - xml_encoding is the encoding declared in the ; changed -# project name -#2.5 - 7/25/2003 - MAP - changed to Python license (all contributors agree); -# removed unnecessary urllib code -- urllib2 should always be available anyway; -# return actual url, status, and full HTTP headers (as result['url'], -# result['status'], and result['headers']) if parsing a remote feed over HTTP -- -# this should pass all the HTTP tests at ; -# added the latest namespace-of-the-week for RSS 2.0 -#2.5.1 - 7/26/2003 - RMK - clear opener.addheaders so we only send our custom -# User-Agent (otherwise urllib2 sends two, which confuses some servers) -#2.5.2 - 7/28/2003 - MAP - entity-decode inline xml properly; added support for -# inline and as used in some RSS 2.0 feeds -#2.5.3 - 8/6/2003 - TvdV - patch to track whether we're inside an image or -# textInput, and also to return the character encoding (if specified) -#2.6 - 1/1/2004 - MAP - dc:author support (MarekK); fixed bug tracking -# nested divs within content (JohnD); fixed missing sys import (JohanS); -# fixed regular expression to capture XML character encoding (Andrei); -# added support for Atom 0.3-style links; fixed bug with textInput tracking; -# added support for cloud (MartijnP); added support for multiple -# category/dc:subject (MartijnP); normalize content model: 'description' gets -# description (which can come from description, summary, or full content if no -# description), 'content' gets dict of base/language/type/value (which can come -# from content:encoded, xhtml:body, content, or fullitem); -# fixed bug matching arbitrary Userland namespaces; added xml:base and xml:lang -# tracking; fixed bug tracking unknown tags; fixed bug tracking content when -# element is not in default namespace (like Pocketsoap feed); -# resolve relative URLs in link, guid, docs, url, comments, wfw:comment, -# wfw:commentRSS; resolve relative URLs within embedded HTML markup in -# description, xhtml:body, content, content:encoded, title, subtitle, -# summary, info, tagline, and copyright; added support for pingback and -# trackback namespaces -#2.7 - 1/5/2004 - MAP - really added support for trackback and pingback -# namespaces, as opposed to 2.6 when I said I did but didn't really; -# sanitize HTML markup within some elements; added mxTidy support (if -# installed) to tidy HTML markup within some elements; fixed indentation -# bug in _parse_date (FazalM); use socket.setdefaulttimeout if available -# (FazalM); universal date parsing and normalization (FazalM): 'created', modified', -# 'issued' are parsed into 9-tuple date format and stored in 'created_parsed', -# 'modified_parsed', and 'issued_parsed'; 'date' is duplicated in 'modified' -# and vice-versa; 'date_parsed' is duplicated in 'modified_parsed' and vice-versa -#2.7.1 - 1/9/2004 - MAP - fixed bug handling " and '. fixed memory -# leak not closing url opener (JohnD); added dc:publisher support (MarekK); -# added admin:errorReportsTo support (MarekK); Python 2.1 dict support (MarekK) -#2.7.4 - 1/14/2004 - MAP - added workaround for improperly formed
    tags in -# encoded HTML (skadz); fixed unicode handling in normalize_attrs (ChrisL); -# fixed relative URI processing for guid (skadz); added ICBM support; added -# base64 support -#2.7.5 - 1/15/2004 - MAP - added workaround for malformed DOCTYPE (seen on many -# blogspot.com sites); added _debug variable -#2.7.6 - 1/16/2004 - MAP - fixed bug with StringIO importing -#3.0b3 - 1/23/2004 - MAP - parse entire feed with real XML parser (if available); -# added several new supported namespaces; fixed bug tracking naked markup in -# description; added support for enclosure; added support for source; re-added -# support for cloud which got dropped somehow; added support for expirationDate -#3.0b4 - 1/26/2004 - MAP - fixed xml:lang inheritance; fixed multiple bugs tracking -# xml:base URI, one for documents that don't define one explicitly and one for -# documents that define an outer and an inner xml:base that goes out of scope -# before the end of the document -#3.0b5 - 1/26/2004 - MAP - fixed bug parsing multiple links at feed level -#3.0b6 - 1/27/2004 - MAP - added feed type and version detection, result['version'] -# will be one of SUPPORTED_VERSIONS.keys() or empty string if unrecognized; -# added support for creativeCommons:license and cc:license; added support for -# full Atom content model in title, tagline, info, copyright, summary; fixed bug -# with gzip encoding (not always telling server we support it when we do) -#3.0b7 - 1/28/2004 - MAP - support Atom-style author element in author_detail -# (dictionary of 'name', 'url', 'email'); map author to author_detail if author -# contains name + email address -#3.0b8 - 1/28/2004 - MAP - added support for contributor -#3.0b9 - 1/29/2004 - MAP - fixed check for presence of dict function; added -# support for summary -#3.0b10 - 1/31/2004 - MAP - incorporated ISO-8601 date parsing routines from -# xml.util.iso8601 -#3.0b11 - 2/2/2004 - MAP - added 'rights' to list of elements that can contain -# dangerous markup; fiddled with decodeEntities (not right); liberalized -# date parsing even further -#3.0b12 - 2/6/2004 - MAP - fiddled with decodeEntities (still not right); -# added support to Atom 0.2 subtitle; added support for Atom content model -# in copyright; better sanitizing of dangerous HTML elements with end tags -# (script, frameset) -#3.0b13 - 2/8/2004 - MAP - better handling of empty HTML tags (br, hr, img, -# etc.) in embedded markup, in either HTML or XHTML form (
    ,
    ,
    ) -#3.0b14 - 2/8/2004 - MAP - fixed CDATA handling in non-wellformed feeds under -# Python 2.1 -#3.0b15 - 2/11/2004 - MAP - fixed bug resolving relative links in wfw:commentRSS; -# fixed bug capturing author and contributor URL; fixed bug resolving relative -# links in author and contributor URL; fixed bug resolvin relative links in -# generator URL; added support for recognizing RSS 1.0; passed Simon Fell's -# namespace tests, and included them permanently in the test suite with his -# permission; fixed namespace handling under Python 2.1 -#3.0b16 - 2/12/2004 - MAP - fixed support for RSS 0.90 (broken in b15) -#3.0b17 - 2/13/2004 - MAP - determine character encoding as per RFC 3023 -#3.0b18 - 2/17/2004 - MAP - always map description to summary_detail (Andrei); -# use libxml2 (if available) -#3.0b19 - 3/15/2004 - MAP - fixed bug exploding author information when author -# name was in parentheses; removed ultra-problematic mxTidy support; patch to -# workaround crash in PyXML/expat when encountering invalid entities -# (MarkMoraes); support for textinput/textInput -#3.0b20 - 4/7/2004 - MAP - added CDF support -#3.0b21 - 4/14/2004 - MAP - added Hot RSS support -#3.0b22 - 4/19/2004 - MAP - changed 'channel' to 'feed', 'item' to 'entries' in -# results dict; changed results dict to allow getting values with results.key -# as well as results[key]; work around embedded illformed HTML with half -# a DOCTYPE; work around malformed Content-Type header; if character encoding -# is wrong, try several common ones before falling back to regexes (if this -# works, bozo_exception is set to CharacterEncodingOverride); fixed character -# encoding issues in BaseHTMLProcessor by tracking encoding and converting -# from Unicode to raw strings before feeding data to sgmllib.SGMLParser; -# convert each value in results to Unicode (if possible), even if using -# regex-based parsing -#3.0b23 - 4/21/2004 - MAP - fixed UnicodeDecodeError for feeds that contain -# high-bit characters in attributes in embedded HTML in description (thanks -# Thijs van de Vossen); moved guid, date, and date_parsed to mapped keys in -# FeedParserDict; tweaked FeedParserDict.has_key to return True if asking -# about a mapped key -#3.0fc1 - 4/23/2004 - MAP - made results.entries[0].links[0] and -# results.entries[0].enclosures[0] into FeedParserDict; fixed typo that could -# cause the same encoding to be tried twice (even if it failed the first time); -# fixed DOCTYPE stripping when DOCTYPE contained entity declarations; -# better textinput and image tracking in illformed RSS 1.0 feeds -#3.0fc2 - 5/10/2004 - MAP - added and passed Sam's amp tests; added and passed -# my blink tag tests -#3.0fc3 - 6/18/2004 - MAP - fixed bug in _changeEncodingDeclaration that -# failed to parse utf-16 encoded feeds; made source into a FeedParserDict; -# duplicate admin:generatorAgent/@rdf:resource in generator_detail.url; -# added support for image; refactored parse() fallback logic to try other -# encodings if SAX parsing fails (previously it would only try other encodings -# if re-encoding failed); remove unichr madness in normalize_attrs now that -# we're properly tracking encoding in and out of BaseHTMLProcessor; set -# feed.language from root-level xml:lang; set entry.id from rdf:about; -# send Accept header -#3.0 - 6/21/2004 - MAP - don't try iso-8859-1 (can't distinguish between -# iso-8859-1 and windows-1252 anyway, and most incorrectly marked feeds are -# windows-1252); fixed regression that could cause the same encoding to be -# tried twice (even if it failed the first time) -#3.0.1 - 6/22/2004 - MAP - default to us-ascii for all text/* content types; -# recover from malformed content-type header parameter with no equals sign -# ('text/xml; charset:iso-8859-1') -#3.1 - 6/28/2004 - MAP - added and passed tests for converting HTML entities -# to Unicode equivalents in illformed feeds (aaronsw); added and -# passed tests for converting character entities to Unicode equivalents -# in illformed feeds (aaronsw); test for valid parsers when setting -# XML_AVAILABLE; make version and encoding available when server returns -# a 304; add handlers parameter to pass arbitrary urllib2 handlers (like -# digest auth or proxy support); add code to parse username/password -# out of url and send as basic authentication; expose downloading-related -# exceptions in bozo_exception (aaronsw); added __contains__ method to -# FeedParserDict (aaronsw); added publisher_detail (aaronsw) -#3.2 - 7/3/2004 - MAP - use cjkcodecs and iconv_codec if available; always -# convert feed to UTF-8 before passing to XML parser; completely revamped -# logic for determining character encoding and attempting XML parsing -# (much faster); increased default timeout to 20 seconds; test for presence -# of Location header on redirects; added tests for many alternate character -# encodings; support various EBCDIC encodings; support UTF-16BE and -# UTF16-LE with or without a BOM; support UTF-8 with a BOM; support -# UTF-32BE and UTF-32LE with or without a BOM; fixed crashing bug if no -# XML parsers are available; added support for 'Content-encoding: deflate'; -# send blank 'Accept-encoding: ' header if neither gzip nor zlib modules -# are available -#3.3 - 7/15/2004 - MAP - optimize EBCDIC to ASCII conversion; fix obscure -# problem tracking xml:base and xml:lang if element declares it, child -# doesn't, first grandchild redeclares it, and second grandchild doesn't; -# refactored date parsing; defined public registerDateHandler so callers -# can add support for additional date formats at runtime; added support -# for OnBlog, Nate, MSSQL, Greek, and Hungarian dates (ytrewq1); added -# zopeCompatibilityHack() which turns FeedParserDict into a regular -# dictionary, required for Zope compatibility, and also makes command- -# line debugging easier because pprint module formats real dictionaries -# better than dictionary-like objects; added NonXMLContentType exception, -# which is stored in bozo_exception when a feed is served with a non-XML -# media type such as 'text/plain'; respect Content-Language as default -# language if not xml:lang is present; cloud dict is now FeedParserDict; -# generator dict is now FeedParserDict; better tracking of xml:lang, -# including support for xml:lang='' to unset the current language; -# recognize RSS 1.0 feeds even when RSS 1.0 namespace is not the default -# namespace; don't overwrite final status on redirects (scenarios: -# redirecting to a URL that returns 304, redirecting to a URL that -# redirects to another URL with a different type of redirect); add -# support for HTTP 303 redirects -#4.0 - MAP - support for relative URIs in xml:base attribute; fixed -# encoding issue with mxTidy (phopkins); preliminary support for RFC 3229; -# support for Atom 1.0; support for iTunes extensions; new 'tags' for -# categories/keywords/etc. as array of dict -# {'term': term, 'scheme': scheme, 'label': label} to match Atom 1.0 -# terminology; parse RFC 822-style dates with no time; lots of other -# bug fixes -#4.1 - MAP - removed socket timeout; added support for chardet library - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/templates/wiki.mako b/document_page/web/widgets/templates/wiki.mako deleted file mode 100644 index 54976a8c..00000000 --- a/document_page/web/widgets/templates/wiki.mako +++ /dev/null @@ -1,23 +0,0 @@ -% if editable and not inline: - - -% endif - -% if editable and inline: - -% endif - -% if editable and error: - ${error} -% endif - -% if not editable and value: -
    ${data|n}
    -% endif - diff --git a/document_page/web/widgets/wiki.py b/document_page/web/widgets/wiki.py deleted file mode 100644 index ccf2a758..00000000 --- a/document_page/web/widgets/wiki.py +++ /dev/null @@ -1,224 +0,0 @@ -############################################################################### -# -# Copyright (C) 2007-TODAY Tiny ERP Pvt Ltd. All Rights Reserved. -# -# $Id$ -# -# Developed by Tiny (http://openerp.com) and Axelor (http://axelor.com). -# -# The OpenERP web client is distributed under the "OpenERP Public License". -# It's based on Mozilla Public License Version (MPL) 1.1 with following -# restrictions: -# -# - All names, links and logos of Tiny, OpenERP and Axelor must be -# kept as in original distribution without any changes in all software -# screens, especially in start-up page and the software header, even if -# the application source code has been changed or updated or code has been -# added. -# -# - All distributions of the software must keep source code with OEPL. -# -# - All integrations to any other software must keep source code with OEPL. -# -# If you need commercial licence to remove this kind of restriction please -# contact us. -# -# You can see the MPL licence at: http://www.mozilla.org/MPL/MPL-1.1.html -# -############################################################################### - -import re - -import cherrypy -import wikimarkup - -from openobject import rpc -from openobject.widgets import CSSLink - - -from openerp.widgets import register_widget -from openerp.widgets.form import Text - - -_image = re.compile(r'img:(.*)\.(.*)', re.UNICODE) -_rss = re.compile(r'rss:(.*)\.(.*)', re.UNICODE) -_attach = re.compile(r'attach:(.*)\.(.*)', re.UNICODE) -_internalLinks = re.compile(r'\[\[.*\]\]', re.UNICODE) -_edit = re.compile(r'edit:(.*)\|(.*)', re.UNICODE) -_view = re.compile(r'view:(.*)\|(.*)', re.UNICODE) - -class WikiParser(wikimarkup.Parser): - - def parse(self, text, id): - text = text.replace(' ', 'n-b-s-p') - text = text.replace('&', 'n-a-m-p') - text = text.replace('&','&') - text = text.replace('n-b-s-p', ' ') - text = text.replace('n-a-m-p', '&') - text = text.replace('', '
    ')
    -        text = text.replace('', '
    ') - - text = wikimarkup.to_unicode(text) - text = self.strip(text) - - text = super(WikiParser, self).parse(text) - text = self.addImage(text, id) - text = self.attachDoc(text, id) - text = self.recordLink(text) - text = self.viewRecordLink(text) - text = self.addInternalLinks(text) - #TODO : already implemented but we will implement it later after releasing the 5.0 - #text = self.addRss(text, id) - return text - - def viewRecordLink(self, text): - def record(path): - record = path.group().replace('view:','').split("|") - model = record[0] - text = record[1].replace('\r','').strip() - label = "View Record" - if len(record) > 2: - label = record[2] - proxy = rpc.RPCProxy(model) - ids = proxy.name_search(text, [], 'ilike', {}) - if len(ids): - id = ids[0][0] - else: - try: - id = int(text) - except: - id = 0 - return "[[/openerp/form/view?model=%s&id=%d | %s]]" % (model, id, label) - - bits = _view.sub(record, text) - return bits - - def addRss(self, text, id): - def addrss(path): - rssurl = path.group().replace('rss:','') - import rss.feedparser as feedparser - data = feedparser.parse(rssurl) - values = "

    %s


    " % (data.feed.title) - values += "%s
    " % (data.channel.description) - for entry in data['entries']: - values += "

    %s


    " % (entry.link, entry.title) - values += "%s
    " % (entry.summary) - - return values - - bits = _rss.sub(addrss, text) - return bits - - def attachDoc(self, text, id): - def document(path): - file = path.group().replace('attach:','') - if file.startswith('http') or file.startswith('ftp'): - return "Download File" % (file) - else: - proxy = rpc.RPCProxy('ir.attachment') - ids = proxy.search([('datas_fname','=',file.strip()), ('res_model','=','wiki.wiki'), ('res_id','=',id)]) - if len(ids) > 0: - return "%s" % (file, id, file) - else: - return """Attach : %s """ % (id, file) - bits = _attach.sub(document, text) - return bits - - def addImage(self, text, id): - def image(path): - file = path.group().replace('img:','') - if file.startswith('http') or file.startswith('ftp'): - return "" % (file) - else: - proxy = rpc.RPCProxy('ir.attachment') - ids = proxy.search([('datas_fname','=',file.strip()), ('res_model','=','wiki.wiki'), ('res_id','=',id)]) - if len(ids) > 0: - return "" % (file, id) - else: - return """Attach : %s """ % (id, file) - #"[[/attachment/?model=wiki.wiki&id=%d | Attach:%s]]" % (id, file) - bits = _image.sub(image, text) - return bits - - def recordLink(self, text): - def record(path): - record = path.group().replace('edit:','').split("|") - model = record[0] - text = record[1].replace('\r','').strip() - label = "Edit Record" - if len(record) > 2: - label = record[2] - proxy = rpc.RPCProxy(model) - ids = proxy.name_search(text, [], '=', {}) - if len(ids): - id = ids[0][0] - else: - try: - id = int(text) - except: - id = 0 - return "[[/openerp/form/edit?model=%s&id=%d | %s]]" % (model, id, label) - - bits = _edit.sub(record, text) - return bits - - def addInternalLinks(self, text): - proxy = rpc.RPCProxy('wiki.wiki') - - def link(path): - link = path.group().replace('[','').replace('[','').replace(']','').replace(']','').split("|") - name_to_search = link[0].strip() - mids = proxy.search([('name','ilike', name_to_search)]) - link_str = "" - if mids: - if len(link) == 2: - link_str = "%s" % (mids[0], link[1]) - elif len(link) == 1: - link_str = "%s" % (mids[0], link[0]) - else: - if len(link) == 2: - link_str = "%s" % (link[0], link[1]) - elif len(link) == 1: - link_str = "%s" % (link[0]) - - return link_str - - bits = _internalLinks.sub(link, text) - return bits - -def wiki2html(text, showToc, id): - p = WikiParser(show_toc=showToc) - return p.parse(text, id) - -class WikiWidget(Text): - template = "/wiki/widgets/templates/wiki.mako" - - params = ["data"] - - css = [CSSLink("wiki", "css/wiki.css")] - - data = None - - def set_value(self, value): - super(WikiWidget, self).set_value(value) - - if value: - toc = True - id = False - if hasattr(cherrypy.request, 'terp_record'): - params = cherrypy.request.terp_params - if params._terp_model == 'wiki.wiki': - proxy = rpc.RPCProxy('wiki.wiki') - toc = proxy.read([params.id], ['toc'])[0]['toc'] - id = params.id - - text = value+'\n\n' - html = wiki2html(text, toc, id) - - self.data = html - -register_widget(WikiWidget, ["text_wiki"]) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/web/widgets/wikimarkup/__init__.py b/document_page/web/widgets/wikimarkup/__init__.py deleted file mode 100644 index f5fe67fa..00000000 --- a/document_page/web/widgets/wikimarkup/__init__.py +++ /dev/null @@ -1,2146 +0,0 @@ -# coding: latin1 -""" -MediaWiki-style markup - -Copyright (C) 2008 David Cramer - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU 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 General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . -""" - -import re, random, locale -from base64 import b64encode, b64decode - -# a few patterns we use later - -MW_COLON_STATE_TEXT = 0 -MW_COLON_STATE_TAG = 1 -MW_COLON_STATE_TAGSTART = 2 -MW_COLON_STATE_CLOSETAG = 3 -MW_COLON_STATE_TAGSLASH = 4 -MW_COLON_STATE_COMMENT = 5 -MW_COLON_STATE_COMMENTDASH = 6 -MW_COLON_STATE_COMMENTDASHDASH = 7 - -_attributePat = re.compile(ur'''(?:^|\s)([A-Za-z0-9]+)(?:\s*=\s*(?:"([^<"]*)"|'([^<']*)'|([a-zA-Z0-9!#$%&()*,\-./:;<>?@[\]^_`{|}~]+)|#([0-9a-fA-F]+)))''', re.UNICODE) -_space = re.compile(ur'\s+', re.UNICODE) -_closePrePat = re.compile(u"]*?)(/?>)([^<]*)$', re.UNICODE) - -_htmlpairs = ( # Tags that must be closed - u'b', u'del', u'i', u'ins', u'u', u'font', u'big', u'small', u'sub', u'sup', u'h1', - u'h2', u'h3', u'h4', u'h5', u'h6', u'cite', u'code', u'em', u's', - u'strike', u'strong', u'tt', u'var', u'div', u'center', - u'blockquote', u'ol', u'ul', u'dl', u'table', u'caption', u'pre', - u'ruby', u'rt' , u'rb' , u'rp', u'p', u'span', u'u', -) -_htmlsingle = ( - u'br', u'hr', u'li', u'dt', u'dd', u'img', -) -_htmlsingleonly = ( # Elements that cannot have close tags - u'br', u'hr', u'img', -) -_htmlnest = ( # Tags that can be nested--?? - u'table', u'tr', u'td', u'th', u'div', u'blockquote', u'ol', u'ul', - u'dl', u'font', u'big', u'small', u'sub', u'sup', u'span', u'img', -) -_tabletags = ( # Can only appear inside table - u'td', u'th', u'tr', -) -_htmllist = ( # Tags used by list - u'ul', u'ol', -) -_listtags = ( # Tags that can appear in a list - u'li', -) -_htmlsingleallowed = _htmlsingle + _tabletags -_htmlelements = _htmlsingle + _htmlpairs + _htmlnest - -_htmlEntities = { - u'Aacute': 193, u'aacute': 225, u'Acirc': 194, u'acirc': 226, u'acute': 180, - u'AElig': 198, u'aelig': 230, u'Agrave': 192, u'agrave': 224, u'alefsym': 8501, - u'Alpha': 913, u'alpha': 945, u'amp': 38, u'and': 8743, u'ang': 8736, u'Aring': 197, - u'aring': 229, - u'asymp': 8776, - u'Atilde': 195, - u'atilde': 227, - u'Auml': 196, - u'auml': 228, - u'bdquo': 8222, - u'Beta': 914, - u'beta': 946, - u'brvbar': 166, - u'bull': 8226, - u'cap': 8745, - u'Ccedil': 199, - u'ccedil': 231, - u'cedil': 184, - u'cent': 162, - u'Chi': 935, - u'chi': 967, - u'circ': 710, - u'clubs': 9827, - u'cong': 8773, - u'copy': 169, - u'crarr': 8629, - u'cup': 8746, - u'curren': 164, - u'dagger': 8224, - u'Dagger': 8225, - u'darr': 8595, - u'dArr': 8659, - u'deg': 176, - u'Delta': 916, - u'delta': 948, - u'diams': 9830, - u'divide': 247, - u'Eacute': 201, - u'eacute': 233, - u'Ecirc': 202, - u'ecirc': 234, - u'Egrave': 200, - u'egrave': 232, - u'empty': 8709, - u'emsp': 8195, - u'ensp': 8194, - u'Epsilon': 917, - u'epsilon': 949, - u'equiv': 8801, - u'Eta': 919, - u'eta': 951, - u'ETH': 208, - u'eth': 240, - u'Euml': 203, - u'euml': 235, - u'euro': 8364, - u'exist': 8707, - u'fnof': 402, - u'forall': 8704, - u'frac12': 189, - u'frac14': 188, - u'frac34': 190, - u'frasl': 8260, - u'Gamma': 915, - u'gamma': 947, - u'ge': 8805, - u'gt': 62, - u'harr': 8596, - u'hArr': 8660, - u'hearts': 9829, - u'hellip': 8230, - u'Iacute': 205, - u'iacute': 237, - u'Icirc': 206, - u'icirc': 238, - u'iexcl': 161, - u'Igrave': 204, - u'igrave': 236, - u'image': 8465, - u'infin': 8734, - u'int': 8747, - u'Iota': 921, - u'iota': 953, - u'iquest': 191, - u'isin': 8712, - u'Iuml': 207, - u'iuml': 239, - u'Kappa': 922, - u'kappa': 954, - u'Lambda': 923, - u'lambda': 955, - u'lang': 9001, - u'laquo': 171, - u'larr': 8592, - u'lArr': 8656, - u'lceil': 8968, - u'ldquo': 8220, - u'le': 8804, - u'lfloor': 8970, - u'lowast': 8727, - u'loz': 9674, - u'lrm': 8206, - u'lsaquo': 8249, - u'lsquo': 8216, - u'lt': 60, - u'macr': 175, - u'mdash': 8212, - u'micro': 181, - u'middot': 183, - u'minus': 8722, - u'Mu': 924, - u'mu': 956, - u'nabla': 8711, - u'nbsp': 160, - u'ndash': 8211, - u'ne': 8800, - u'ni': 8715, - u'not': 172, - u'notin': 8713, - u'nsub': 8836, - u'Ntilde': 209, - u'ntilde': 241, - u'Nu': 925, - u'nu': 957, - u'Oacute': 211, - u'oacute': 243, - u'Ocirc': 212, - u'ocirc': 244, - u'OElig': 338, - u'oelig': 339, - u'Ograve': 210, - u'ograve': 242, - u'oline': 8254, - u'Omega': 937, - u'omega': 969, - u'Omicron': 927, - u'omicron': 959, - u'oplus': 8853, - u'or': 8744, - u'ordf': 170, - u'ordm': 186, - u'Oslash': 216, - u'oslash': 248, - u'Otilde': 213, - u'otilde': 245, - u'otimes': 8855, - u'Ouml': 214, - u'ouml': 246, - u'para': 182, - u'part': 8706, - u'permil': 8240, - u'perp': 8869, - u'Phi': 934, - u'phi': 966, - u'Pi': 928, - u'pi': 960, - u'piv': 982, - u'plusmn': 177, - u'pound': 163, - u'prime': 8242, - u'Prime': 8243, - u'prod': 8719, - u'prop': 8733, - u'Psi': 936, - u'psi': 968, - u'quot': 34, - u'radic': 8730, - u'rang': 9002, - u'raquo': 187, - u'rarr': 8594, - u'rArr': 8658, - u'rceil': 8969, - u'rdquo': 8221, - u'real': 8476, - u'reg': 174, - u'rfloor': 8971, - u'Rho': 929, - u'rho': 961, - u'rlm': 8207, - u'rsaquo': 8250, - u'rsquo': 8217, - u'sbquo': 8218, - u'Scaron': 352, - u'scaron': 353, - u'sdot': 8901, - u'sect': 167, - u'shy': 173, - u'Sigma': 931, - u'sigma': 963, - u'sigmaf': 962, - u'sim': 8764, - u'spades': 9824, - u'sub': 8834, - u'sube': 8838, - u'sum': 8721, - u'sup': 8835, - u'sup1': 185, - u'sup2': 178, - u'sup3': 179, - u'supe': 8839, - u'szlig': 223, - u'Tau': 932, - u'tau': 964, - u'there4': 8756, - u'Theta': 920, - u'theta': 952, - u'thetasym': 977, - u'thinsp': 8201, - u'THORN': 222, - u'thorn': 254, - u'tilde': 732, - u'times': 215, - u'trade': 8482, - u'Uacute': 218, - u'uacute': 250, - u'uarr': 8593, - u'uArr': 8657, - u'Ucirc': 219, - u'ucirc': 251, - u'Ugrave': 217, - u'ugrave': 249, - u'uml': 168, - u'upsih': 978, - u'Upsilon': 933, - u'upsilon': 965, - u'Uuml': 220, - u'uuml': 252, - u'weierp': 8472, - u'Xi': 926, - u'xi': 958, - u'Yacute': 221, - u'yacute': 253, - u'yen': 165, - u'Yuml': 376, - u'yuml': 255, - u'Zeta': 918, - u'zeta': 950, - u'zwj': 8205, - u'zwnj': 8204 -} - -_charRefsPat = re.compile(ur'''(&([A-Za-z0-9]+);|&#([0-9]+);|&#[xX]([0-9A-Za-z]+);|(&))''', re.UNICODE) -_cssCommentPat = re.compile(ur'''\*.*?\*''', re.UNICODE) -_toUTFPat = re.compile(ur'''\\([0-9A-Fa-f]{1,6})[\s]?''', re.UNICODE) -_hackPat = re.compile(ur'''(expression|tps*://|url\s*\().*''', re.UNICODE | re.IGNORECASE) -_hrPat = re.compile(u'''^-----*''', re.UNICODE | re.MULTILINE) -_h1Pat = re.compile(u'^=(.+)=\s*$', re.UNICODE | re.MULTILINE) -_h2Pat = re.compile(u'^==(.+)==\s*$', re.UNICODE | re.MULTILINE) -_h3Pat = re.compile(u'^===(.+)===\s*$', re.UNICODE | re.MULTILINE) -_h4Pat = re.compile(u'^====(.+)====\s*$', re.UNICODE | re.MULTILINE) -_h5Pat = re.compile(u'^=====(.+)=====\s*$', re.UNICODE | re.MULTILINE) -_h6Pat = re.compile(u'^======(.+)======\s*$', re.UNICODE | re.MULTILINE) -_quotePat = re.compile(u"""(''+)""", re.UNICODE) -_removePat = re.compile(ur'\b(' + ur'|'.join((u"a", u"an", u"as", u"at", u"before", u"but", u"by", u"for", u"from", - u"is", u"in", u"into", u"like", u"of", u"off", u"on", u"onto", u"per", - u"since", u"than", u"the", u"this", u"that", u"to", u"up", u"via", - u"with")) + ur')\b', re.UNICODE | re.IGNORECASE) -_nonWordSpaceDashPat = re.compile(ur'[^\w\s\-\./]', re.UNICODE) -_multiSpacePat = re.compile(ur'[\s\-_\./]+', re.UNICODE) -_spacePat = re.compile(ur' ', re.UNICODE) -_linkPat = re.compile(ur'^(?:([A-Za-z0-9]+):)?([^\|]+)(?:\|([^\n]+?))?\]\](.*)$', re.UNICODE | re.DOTALL) -_bracketedLinkPat = re.compile(ur'(?:\[((?:mailto:|irc://|https?://|ftp://|/)[^<>\]\[' + u"\x00-\x20\x7f" + ur']*)\s*(.*?)\])', re.UNICODE) -_protocolPat = re.compile(ur'(\b(?:mailto:|irc://|https?://|ftp://))', re.UNICODE) -_specialUrlPat = re.compile(ur'^([^<>\]\[' + u"\x00-\x20\x7f" + ur']+)(.*)$', re.UNICODE) -_protocolsPat = re.compile(ur'^(mailto:|irc://|https?://|ftp://)$', re.UNICODE) -_controlCharsPat = re.compile(ur'[\]\[<>"' + u"\\x00-\\x20\\x7F" + ur']]', re.UNICODE) -_hostnamePat = re.compile(ur'^([^:]+:)(//[^/]+)?(.*)$', re.UNICODE) -_stripPat = re.compile(u'\\s|\u00ad|\u1806|\u200b|\u2060|\ufeff|\u03f4|\u034f|\u180b|\u180c|\u180d|\u200c|\u200d|[\ufe00-\ufe0f]', re.UNICODE) -_zomgPat = re.compile(ur'^(:*)\{\|(.*)$', re.UNICODE) -_headerPat = re.compile(ur"<[Hh]([1-6])(.*?)>(.*?)", re.UNICODE) -_templateSectionPat = re.compile(ur"", re.UNICODE) -_tagPat = re.compile(ur"<.*?>", re.UNICODE) -_startRegexHash = {} -_endRegexHash = {} -_endCommentPat = re.compile(ur'(-->)', re.UNICODE) -_extractTagsAndParams_n = 1 -_guillemetLeftPat = re.compile(ur'(.) (\?|:|;|!|\302\273)', re.UNICODE) -_guillemetRightPat = re.compile(ur'(\302\253) ', re.UNICODE) - -def setupAttributeWhitelist(): - common = ( u'id', u'class', u'lang', u'dir', u'title', u'style' ) - block = common + (u'align',) - tablealign = ( u'align', u'char', u'charoff', u'valign' ) - tablecell = ( u'abbr', - u'axis', - u'headers', - u'scope', - u'rowspan', - u'colspan', - u'nowrap', # deprecated - u'width', # deprecated - u'height', # deprecated - u'bgcolor' # deprecated - ) - return { - u'div': block, - u'center': common, # deprecated - u'span': block, # ?? - u'h1': block, - u'h2': block, - u'h3': block, - u'h4': block, - u'h5': block, - u'h6': block, - u'em': common, - u'strong': common, - u'cite': common, - u'code': common, - u'var': common, - u'img': common + (u'src', u'alt', u'width', u'height',), - u'blockquote': common + (u'cite',), - u'sub': common, - u'sup': common, - u'p': block, - u'br': (u'id', u'class', u'title', u'style', u'clear',), - u'pre': common + (u'width',), - u'ins': common + (u'cite', u'datetime'), - u'del': common + (u'cite', u'datetime'), - u'ul': common + (u'type',), - u'ol': common + (u'type', u'start'), - u'li': common + (u'type', u'value'), - u'dl': common, - u'dd': common, - u'dt': common, - u'table': common + ( u'summary', u'width', u'border', u'frame', - u'rules', u'cellspacing', u'cellpadding', - u'align', u'bgcolor', - ), - u'caption': common + (u'align',), - u'thead': common + tablealign, - u'tfoot': common + tablealign, - u'tbody': common + tablealign, - u'colgroup': common + ( u'span', u'width' ) + tablealign, - u'col': common + ( u'span', u'width' ) + tablealign, - u'tr': common + ( u'bgcolor', ) + tablealign, - u'td': common + tablecell + tablealign, - u'th': common + tablecell + tablealign, - u'tt': common, - u'b': common, - u'i': common, - u'big': common, - u'small': common, - u'strike': common, - u's': common, - u'u': common, - u'font': common + ( u'size', u'color', u'face' ), - u'hr': common + ( u'noshade', u'size', u'width' ), - u'ruby': common, - u'rb': common, - u'rt': common, #array_merge( $common, array( 'rbspan' ) ), - u'rp': common, - } -_whitelist = setupAttributeWhitelist() -_page_cache = {} -env = {} - -def registerTagHook(tag, function): - mTagHooks[tag] = function - -class BaseParser(object): - def __init__(self): - self.uniq_prefix = u"\x07UNIQ" + unicode(random.randint(1, 1000000000)) - self.strip_state = {} - self.arg_stack = [] - self.env = env - self.keep_env = (env != {}) - - def __del__(self): - if not self.keep_env: - global env - env = {} - - ''' Used to store objects in the environment - used to prevent recursive imports ''' - def store_object(self, namespace, key, value=True): - # Store the item to not reprocess it - if namespace not in self.env: - self.env[namespace] = {} - self.env[namespace][key] = value - - def has_object(self, namespace, key): - if namespace not in self.env: - self.env[namespace] = {} - if hasattr(self, 'count'): - data = self.env[namespace] - test = key in data - self.count = True - return key in self.env[namespace] - - def retrieve_object(self, namespace, key, default=None): - if not self.env.get(namespace): - self.env[namespace] = {} - return self.env[namespace].get(key, default) - - def parse(self, text): - utf8 = isinstance(text, str) - text = to_unicode(text) - if text[-1:] != u'\n': - text = text + u'\n' - taggedNewline = True - else: - taggedNewline = False - - text = self.strip(text) - text = self.removeHtmlTags(text) - text = self.parseHorizontalRule(text) - text = self.parseAllQuotes(text) - text = self.replaceExternalLinks(text) - text = self.unstrip(text) - text = self.fixtags(text) - text = self.doBlockLevels(text, True) - text = self.unstripNoWiki(text) - text = text.split(u'\n') - text = u'\n'.join(text) - if taggedNewline and text[-1:] == u'\n': - text = text[:-1] - if utf8: - return text.encode("utf-8") - return text - - def strip(self, text, stripcomments=False, dontstrip=[]): - render = True - - commentState = {} - - elements = ['nowiki',] + mTagHooks.keys() - if True: #wgRawHtml - elements.append('html') - - # Removing $dontstrip tags from $elements list (currently only 'gallery', fixing bug 2700) - for k in dontstrip: - if k in elements: - del elements[k] - - matches = {} - text = self.extractTagsAndParams(elements, text, matches) - - for marker in matches: - element, content, params, tag = matches[marker] - if render: - tagName = element.lower() - if tagName == u'!--': - # comment - output = tag - if tag[-3:] != u'-->': - output += "-->" - elif tagName == u'html': - output = content - elif tagName == u'nowiki': - output = content.replace(u'&', u'&').replace(u'<', u'<').replace(u'>', u'>') - else: - if tagName in mTagHooks: - output = mTagHooks[tagName](self, content, params) - else: - output = content.replace(u'&', u'&').replace(u'<', u'<').replace(u'>', u'>') - else: - # Just stripping tags; keep the source - output = tag - - # Unstrip the output, because unstrip() is no longer recursive so - # it won't do it itself - output = self.unstrip(output) - - if not stripcomments and element == u'!--': - commentState[marker] = output - elif element == u'html' or element == u'nowiki': - if 'nowiki' not in self.strip_state: - self.strip_state['nowiki'] = {} - self.strip_state['nowiki'][marker] = output - else: - if 'general' not in self.strip_state: - self.strip_state['general'] = {} - self.strip_state['general'][marker] = output - - # Unstrip comments unless explicitly told otherwise. - # (The comments are always stripped prior to this point, so as to - # not invoke any extension tags / parser hooks contained within - # a comment.) - if not stripcomments: - # Put them all back and forget them - for k in commentState: - v = commentState[k] - text = text.replace(k, v) - - return text - - def removeHtmlTags(self, text): - """convert bad tags into HTML identities""" - sb = [] - text = self.removeHtmlComments(text) - bits = text.split(u'<') - sb.append(bits.pop(0)) - tagstack = [] - tablestack = tagstack - for x in bits: - m = _tagPattern.match(x) - if not m: - continue - slash, t, params, brace, rest = m.groups() - t = t.lower() - badtag = False - if t in _htmlelements: - # Check our stack - if slash: - # Closing a tag... - if t in _htmlsingleonly or len(tagstack) == 0: - badtag = True - else: - ot = tagstack.pop() - if ot != t: - if ot in _htmlsingleallowed: - # Pop all elements with an optional close tag - # and see if we find a match below them - optstack = [] - optstack.append(ot) - while True: - if len(tagstack) == 0: - break - ot = tagstack.pop() - if ot == t or ot not in _htmlsingleallowed: - break - optstack.append(ot) - if t != ot: - # No match. Push the optinal elements back again - badtag = True - tagstack += reversed(optstack) - else: - tagstack.append(ot) - #
  • can be nested in
      or
        , skip those cases: - if ot not in _htmllist and t in _listtags: - badtag = True - elif t == u'table': - if len(tablestack) == 0: - bagtag = True - else: - tagstack = tablestack.pop() - newparams = u'' - else: - # Keep track for later - if t in _tabletags and u'table' not in tagstack: - badtag = True - elif t in tagstack and t not in _htmlnest: - badtag = True - # Is it a self-closed htmlpair? (bug 5487) - elif brace == u'/>' and t in _htmlpairs: - badTag = True - elif t in _htmlsingleonly: - # Hack to force empty tag for uncloseable elements - brace = u'/>' - elif t in _htmlsingle: - # Hack to not close $htmlsingle tags - brace = None - else: - if t == u'table': - tablestack.append(tagstack) - tagstack = [] - tagstack.append(t) - newparams = self.fixTagAttributes(params, t) - if not badtag: - rest = rest.replace(u'>', u'>') - if brace == u'/>': - close = u' /' - else: - close = u'' - sb.append(u'<') - sb.append(slash) - sb.append(t) - sb.append(newparams) - sb.append(close) - sb.append(u'>') - sb.append(rest) - continue - sb.append(u'<') - sb.append(x.replace(u'>', u'>')) - - # Close off any remaining tags - while tagstack: - t = tagstack.pop() - sb.append(u'\n') - if t == u'table': - if not tablestack: - break - tagstack = tablestack.pop() - - return u''.join(sb) - - def removeHtmlComments(self, text): - """remove comments from given text""" - sb = [] - start = text.find(u'', start) - if end == -1: - break - end += 3 - - spaceStart = max(0, start-1) - spaceEnd = end - while text[spaceStart] == u' ' and spaceStart > 0: - spaceStart -= 1 - while text[spaceEnd] == u' ': - spaceEnd += 1 - - if text[spaceStart] == u'\n' and text[spaceEnd] == u'\n': - sb.append(text[last:spaceStart]) - sb.append(u'\n') - last = spaceEnd+1 - else: - sb.append(text[last:spaceStart+1]) - last = spaceEnd - - start = text.find(u'' - - return result, mDTopen - - def nextItem(self, char, mDTopen): - if char == u'*' or char == '#': - return u'
      1. ', None - elif char == u':' or char == u';': - close = u'' - if mDTopen: - close = '' - if char == u';': - return close + u'
        ', True - else: - return close + u'
        ', False - return u'' - - def closeList(self, char, mDTopen): - if char == u'*': - return u'
    \n' - elif char == u'#': - return u'
  • \n' - elif char == u':': - if mDTopen: - return u'\n' - else: - return u'\n' - else: - return u'' - - def findColonNoLinks(self, text, before, after): - try: - pos = text.search(':') - except: - return False - - lt = text.find('<') - if lt == -1 or lt > pos: - # Easy; no tag nesting to worry about - before = text[0:pos] - after = text[0:pos+1] - return before, after, pos - - # Ugly state machine to walk through avoiding tags. - state = MW_COLON_STATE_TEXT; - stack = 0; - i = 0 - while i < len(text): - c = text[i]; - - if state == 0: # MW_COLON_STATE_TEXT: - if text[i] == '<': - # Could be either a tag or an tag - state = MW_COLON_STATE_TAGSTART - elif text[i] == ':': - if stack == 0: - # we found it - return text[0:i], text[i+1], i - else: - # Skip ahead looking for something interesting - try: - colon = text.search(':', i) - except: - return False - lt = text.find('<', i) - if stack == 0: - if lt == -1 or colon < lt: - # we found it - return text[0:colon], text[colon+1], i - if lt == -1: - break - # Skip ahead to next tag start - i = lt - state = MW_COLON_STATE_TAGSTART - elif state == 1: # MW_COLON_STATE_TAG: - # In a - if text[i] == '>': - stack += 1 - state = MW_COLON_STATE_TEXT - elif text[i] == '/': - state = MW_COLON_STATE_TAGSLASH - elif state == 2: # MW_COLON_STATE_TAGSTART: - if text[i] == '/': - state = MW_COLON_STATE_CLOSETAG - elif text[i] == '!': - state = MW_COLON_STATE_COMMENT - elif text[i] == '>': - # Illegal early close? This shouldn't happen D: - state = MW_COLON_STATE_TEXT - else: - state = MW_COLON_STATE_TAG - elif state == 3: # MW_COLON_STATE_CLOSETAG: - # In a - if text[i] == '>': - stack -= 1 - if stack < 0: - return False - state = MW_COLON_STATE_TEXT - elif state == MW_COLON_STATE_TAGSLASH: - if text[i] == '>': - # Yes, a self-closed tag - state = MW_COLON_STATE_TEXT - else: - # Probably we're jumping the gun, and this is an attribute - state = MW_COLON_STATE_TAG - elif state == 5: # MW_COLON_STATE_COMMENT: - if text[i] == '-': - state = MW_COLON_STATE_COMMENTDASH - elif state == MW_COLON_STATE_COMMENTDASH: - if text[i] == '-': - state = MW_COLON_STATE_COMMENTDASHDASH - else: - state = MW_COLON_STATE_COMMENT - elif state == MW_COLON_STATE_COMMENTDASHDASH: - if text[i] == '>': - state = MW_COLON_STATE_TEXT - else: - state = MW_COLON_STATE_COMMENT - else: - raise - if stack > 0: - return False - return False - - def doBlockLevels(self, text, linestart): - # Parsing through the text line by line. The main thing - # happening here is handling of block-level elements p, pre, - # and making lists from lines starting with * # : etc. - lastPrefix = u'' - mDTopen = inBlockElem = False - prefixLength = 0 - paragraphStack = False - _closeMatchPat = re.compile(ur"( 0: - tmpOutput, tmpMDTopen = self.nextItem(pref[commonPrefixLength-1], mDTopen) - output.append(tmpOutput) - if tmpMDTopen is not None: - mDTopen = tmpMDTopen - - while prefixLength > commonPrefixLength: - char = pref[commonPrefixLength:commonPrefixLength+1] - tmpOutput, tmpMDTOpen = self.openList(char, mLastSection) - if tmpMDTOpen: - mDTopen = True - output.append(tmpOutput) - mLastSection = u'' - mInPre = False - - if char == u';': - # FIXME: This is dupe of code above - term = t2 = u'' - z = self.findColonNoLinks(t, term, t2) - if z != False: - term, t2 = z[1:2] - t = t2 - output.append(term) - tmpOutput, tmpMDTopen = self.nextItem(u':', mDTopen) - output.append(tmpOutput) - if tmpMDTopen is not None: - mDTopen = tmpMDTopen - - commonPrefixLength += 1 - - lastPrefix = pref2 - - if prefixLength == 0: - # No prefix (not in list)--go to paragraph mode - # XXX: use a stack for nestable elements like span, table and div - openmatch = _openMatchPat.search(t) - closematch = _closeMatchPat.search(t) - if openmatch or closematch: - paragraphStack = False - output.append(self.closeParagraph(mLastSection)) - mLastSection = u'' - if preCloseMatch: - mInPre = False - if preOpenMatch: - mInPre = True - inBlockElem = bool(not closematch) - elif not inBlockElem and not mInPre: - if t[0:1] == u' ' and (mLastSection == u'pre' or t.strip() != u''): - # pre - if mLastSection != u'pre': - paragraphStack = False - output.append(self.closeParagraph(u'') + u'
    ')
    -							mInPre = False
    -							mLastSection = u'pre'
    -						t = t[1:]
    -					else:
    -						# paragraph
    -						if t.strip() == u'':
    -							if paragraphStack:
    -								output.append(paragraphStack + u'
    ') - paragraphStack = False - mLastSection = u'p' - else: - if mLastSection != u'p': - output.append(self.closeParagraph(mLastSection)) - mLastSection = u'' - mInPre = False - paragraphStack = u'

    ' - else: - paragraphStack = u'

    ' - else: - if paragraphStack: - output.append(paragraphStack) - paragraphStack = False - mLastSection = u'p' - elif mLastSection != u'p': - output.append(self.closeParagraph(mLastSection) + u'

    ') - mLastSection = u'p' - mInPre = False - - # somewhere above we forget to get out of pre block (bug 785) - if preCloseMatch and mInPre: - mInPre = False - - if paragraphStack == False: - output.append(t + u"\n") - - while prefixLength: - output.append(self.closeList(pref2[prefixLength-1], mDTopen)) - mDTopen = False - prefixLength -= 1 - - if mLastSection != u'': - output.append(u'') - mLastSection = u'' - - return ''.join(output) - -class Parser(BaseParser): - def __init__(self, show_toc=True): - super(Parser, self).__init__() - self.show_toc = show_toc - - def parse(self, text): - utf8 = isinstance(text, str) - text = to_unicode(text) - if text[-1:] != u'\n': - text = text + u'\n' - taggedNewline = True - else: - taggedNewline = False - - text = self.strip(text) - text = self.removeHtmlTags(text) - text = self.doTableStuff(text) - text = self.parseHorizontalRule(text) - text = self.checkTOC(text) - text = self.parseHeaders(text) - text = self.parseAllQuotes(text) - text = self.replaceExternalLinks(text) - if not self.show_toc and text.find(u"") == -1: - self.show_toc = False - text = self.formatHeadings(text, True) - text = self.unstrip(text) - text = self.fixtags(text) - text = self.doBlockLevels(text, True) - text = self.unstripNoWiki(text) - text = text.split(u'\n') - text = u'\n'.join(text) - if taggedNewline and text[-1:] == u'\n': - text = text[:-1] - if utf8: - return text.encode("utf-8") - return text - - def checkTOC(self, text): - if text.find(u"__NOTOC__") != -1: - text = text.replace(u"__NOTOC__", u"") - self.show_toc = False - if text.find(u"__TOC__") != -1: - text = text.replace(u"__TOC__", u"") - self.show_toc = True - return text - - def doTableStuff(self, text): - t = text.split(u"\n") - td = [] # Is currently a td tag open? - ltd = [] # Was it TD or TH? - tr = [] # Is currently a tr tag open? - ltr = [] # tr attributes - has_opened_tr = [] # Did this table open a element? - indent_level = 0 # indent level of the table - - for k, x in zip(range(len(t)), t): - x = x.strip() - fc = x[0:1] - matches = _zomgPat.match(x) - if matches: - indent_level = len(matches.group(1)) - - attributes = self.unstripForHTML(matches.group(2)) - - t[k] = u'

    '*indent_level + u'' - td.append(False) - ltd.append(u'') - tr.append(False) - ltr.append(u'') - has_opened_tr.append(False) - elif len(td) == 0: - pass - elif u'|}' == x[0:2]: - z = u"" + x[2:] - l = ltd.pop() - if not has_opened_tr.pop(): - z = u"" + z - if tr.pop(): - z = u"" + z - if td.pop(): - z = u'' + z - ltr.pop() - t[k] = z + u'
    '*indent_level - elif u'|-' == x[0:2]: # Allows for |------------- - x = x[1:] - while x != u'' and x[0:1] == '-': - x = x[1:] - z = '' - l = ltd.pop() - has_opened_tr.pop() - has_opened_tr.append(True) - if tr.pop(): - z = u'' + z - if td.pop(): - z = u'' + z - ltr.pop() - t[k] = z - tr.append(False) - td.append(False) - ltd.append(u'') - attributes = self.unstripForHTML(x) - ltr.append(self.fixTagAttributes(attributes, u'tr')) - elif u'|' == fc or u'!' == fc or u'|+' == x[0:2]: # Caption - # x is a table row - if u'|+' == x[0:2]: - fc = u'+' - x = x[1:] - x = x[1:] - if fc == u'!': - x = x.replace(u'!!', u'||') - # Split up multiple cells on the same line. - # FIXME: This can result in improper nesting of tags processed - # by earlier parser steps, but should avoid splitting up eg - # attribute values containing literal "||". - x = x.split(u'||') - - t[k] = u'' - - # Loop through each table cell - for theline in x: - z = '' - if fc != u'+': - tra = ltr.pop() - if not tr.pop(): - z = u'\n' - tr.append(True) - ltr.append(u'') - has_opened_tr.pop() - has_opened_tr.append(True) - l = ltd.pop() - if td.pop(): - z = u'' + z - if fc == u'|': - l = u'td' - elif fc == u'!': - l = u'th' - elif fc == u'+': - l = u'caption' - else: - l = u'' - ltd.append(l) - - #Cell parameters - y = theline.split(u'|', 1) - # Note that a '|' inside an invalid link should not - # be mistaken as delimiting cell parameters - if y[0].find(u'[[') != -1: - y = [theline] - - if len(y) == 1: - y = z + u"<" + l + u">" + y[0] - else: - attributes = self.unstripForHTML(y[0]) - y = z + u"<" + l + self.fixTagAttributes(attributes, l) + u">" + y[1] - - t[k] += y - td.append(True) - - while len(td) > 0: - l = ltd.pop() - if td.pop(): - t.append(u'') - if tr.pop(): - t.append(u'') - if not has_opened_tr.pop(): - t.append(u'') - t.append(u'') - - text = u'\n'.join(t) - # special case: don't return empty table - if text == u"\n\n
    ": - text = u'' - - return text - - def formatHeadings(self, text, isMain): - """ - This function accomplishes several tasks: - 1) Auto-number headings if that option is enabled - 2) Add an [edit] link to sections for logged in users who have enabled the option - 3) Add a Table of contents on the top for users who have enabled the option - 4) Auto-anchor headings - - It loops through all headlines, collects the necessary data, then splits up the - string and re-inserts the newly formatted headlines. - """ - doNumberHeadings = False - showEditLink = True # Can User Edit - - if text.find(u"__NOEDITSECTION__") != -1: - showEditLink = False - text = text.replace(u"__NOEDITSECTION__", u"") - - # Get all headlines for numbering them and adding funky stuff like [edit] - # links - this is for later, but we need the number of headlines right now - matches = _headerPat.findall(text) - numMatches = len(matches) - - # if there are fewer than 4 headlines in the article, do not show TOC - # unless it's been explicitly enabled. - enoughToc = self.show_toc and (numMatches >= 4 or text.find(u"") != -1) - - # Allow user to stipulate that a page should have a "new section" - # link added via __NEWSECTIONLINK__ - showNewSection = False - if text.find(u"__NEWSECTIONLINK__") != -1: - showNewSection = True - text = text.replace(u"__NEWSECTIONLINK__", u"") - # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML, - # override above conditions and always show TOC above first header - if text.find(u"__FORCETOC__") != -1: - self.show_toc = True - enoughToc = True - text = text.replace(u"__FORCETOC__", u"") - # Never ever show TOC if no headers - if numMatches < 1: - enoughToc = False - - # headline counter - headlineCount = 0 - sectionCount = 0 # headlineCount excluding template sections - - # Ugh .. the TOC should have neat indentation levels which can be - # passed to the skin functions. These are determined here - toc = [] - head = {} - sublevelCount = {} - levelCount = {} - toclevel = 0 - level = 0 - prevlevel = 0 - toclevel = 0 - prevtoclevel = 0 - refers = {} - refcount = {} - wgMaxTocLevel = 5 - - for match in matches: - headline = match[2] - istemplate = False - templatetitle = u'' - templatesection = 0 - numbering = [] - - m = _templateSectionPat.search(headline) - if m: - istemplate = True - templatetitle = b64decode(m[0]) - templatesection = 1 + int(b64decode(m[1])) - headline = _templateSectionPat.sub(u'', headline) - - if toclevel: - prevlevel = level - prevtoclevel = toclevel - - level = matches[headlineCount][0] - - if doNumberHeadings or enoughToc: - if level > prevlevel: - toclevel += 1 - sublevelCount[toclevel] = 0 - if toclevel < wgMaxTocLevel: - toc.append(u'\n
      ') - elif level < prevlevel and toclevel > 1: - # Decrease TOC level, find level to jump to - - if toclevel == 2 and level < levelCount[1]: - toclevel = 1 - else: - for i in range(toclevel, 0, -1): - if levelCount[i] == level: - # Found last matching level - toclevel = i - break - elif levelCount[i] < level: - toclevel = i + 1 - break - if toclevel < wgMaxTocLevel: - toc.append(u"\n") - toc.append(u"
    \n\n" * max(prevtoclevel - toclevel, 0)) - else: - if toclevel < wgMaxTocLevel: - toc.append(u"\n") - - levelCount[toclevel] = level - - # count number of headlines for each level - sublevelCount[toclevel] += 1 - for i in range(1, toclevel+1): - if sublevelCount[i]: - numbering.append(to_unicode(sublevelCount[i])) - - # The canonized header is a version of the header text safe to use for links - # Avoid insertion of weird stuff like by expanding the relevant sections - canonized_headline = self.unstrip(headline) - canonized_headline = self.unstripNoWiki(canonized_headline) - - # -- don't know what to do with this yet. - # Remove link placeholders by the link text. - # - # turns into - # link text with suffix - # $canonized_headline = preg_replace( '//e', - # "\$this->mLinkHolders['texts'][\$1]", - # $canonized_headline ); - # $canonized_headline = preg_replace( '//e', - # "\$this->mInterwikiLinkHolders['texts'][\$1]", - # $canonized_headline ); - - # strip out HTML - canonized_headline = _tagPat.sub(u'', canonized_headline) - tocline = canonized_headline.strip() - # Save headline for section edit hint before it's escaped - headline_hint = tocline - canonized_headline = self.escapeId(tocline) - refers[headlineCount] = canonized_headline - - # count how many in assoc. array so we can track dupes in anchors - if canonized_headline not in refers: - refers[canonized_headline] = 1 - else: - refers[canonized_headline] += 1 - refcount[headlineCount] = refers[canonized_headline] - - numbering = '.'.join(numbering) - - # Don't number the heading if it is the only one (looks silly) - if doNumberHeadings and numMatches > 1: - # the two are different if the line contains a link - headline = numbering + u' ' + headline - - # Create the anchor for linking from the TOC to the section - anchor = canonized_headline; - if refcount[headlineCount] > 1: - anchor += u'_' + unicode(refcount[headlineCount]) - - if enoughToc: - toc.append(u'\n
  • ') - toc.append(numbering) - toc.append(u' ') - toc.append(tocline) - toc.append(u'') - - # if showEditLink and (not istemplate or templatetitle != u""): - # if not head[headlineCount]: - # head[headlineCount] = u'' - # - # if istemplate: - # head[headlineCount] += sk.editSectionLinkForOther(templatetile, templatesection) - # else: - # head[headlineCount] += sk.editSectionLink(mTitle, sectionCount+1, headline_hint) - - # give headline the correct tag - if headlineCount not in head: - head[headlineCount] = [] - h = head[headlineCount] - h.append(u'') - h.append(matches[headlineCount][1].strip()) - h.append(headline.strip()) - h.append(u'') - - headlineCount += 1 - - if not istemplate: - sectionCount += 1 - - if enoughToc: - if toclevel < wgMaxTocLevel: - toc.append(u"
  • \n") - toc.append(u"\n\n" * max(0, toclevel - 1)) - #TODO: use gettext - #toc.insert(0, u'

    ' + _('Table of Contents') + '

    ') - toc.insert(0, u'

    Table of Contents

    ') - toc.append(u'\n
    ') - - # split up and insert constructed headlines - - blocks = _headerPat.split(text) - - i = 0 - len_blocks = len(blocks) - forceTocPosition = text.find(u"") - full = [] - while i < len_blocks: - j = i/4 - full.append(blocks[i]) - if enoughToc and not i and isMain and forceTocPosition == -1: - full += toc - toc = None - if j in head and head[j]: - full += head[j] - head[j] = None - i += 4 - full = u''.join(full) - if forceTocPosition != -1: - return full.replace(u"", u''.join(toc), 1) - else: - return full - -def parse(text, showToc=True): - """Returns HTML from MediaWiki markup""" - p = Parser(show_toc=showToc) - return p.parse(text) - -def parselite(text): - """Returns HTML from MediaWiki markup ignoring - without headings""" - p = BaseParser() - return p.parse(text) - -def truncate_url(url, length=40): - if len(url) <= length: - return url - import re - pattern = r'(/[^/]+/?)$' - match = re.search(pattern, url) - if not match: - return url - l = len(match.group(1)) - domain = url.replace(match.group(1), '') - firstpart = url[0:len(url)-l] - secondpart = match.group(1) - if firstpart == firstpart[0:length-3]: - secondpart = secondpart[0:length-3] + '...' - else: - firstpart = firstpart[0:length-3] - secondpart = '...' + secondpart - t_url = firstpart+secondpart - return t_url - -def to_unicode(text, charset=None): - """Convert a `str` object to an `unicode` object. - - If `charset` is given, we simply assume that encoding for the text, - but we'll use the "replace" mode so that the decoding will always - succeed. - If `charset` is ''not'' specified, we'll make some guesses, first - trying the UTF-8 encoding, then trying the locale preferred encoding, - in "replace" mode. This differs from the `unicode` builtin, which - by default uses the locale preferred encoding, in 'strict' mode, - and is therefore prompt to raise `UnicodeDecodeError`s. - - Because of the "replace" mode, the original content might be altered. - If this is not what is wanted, one could map the original byte content - by using an encoding which maps each byte of the input to an unicode - character, e.g. by doing `unicode(text, 'iso-8859-1')`. - """ - if not isinstance(text, str): - if isinstance(text, Exception): - # two possibilities for storing unicode strings in exception data: - try: - # custom __str__ method on the exception (e.g. PermissionError) - return unicode(text) - except UnicodeError: - # unicode arguments given to the exception (e.g. parse_date) - return ' '.join([to_unicode(arg) for arg in text.args]) - return unicode(text) - if charset: - return unicode(text, charset, 'replace') - else: - try: - return unicode(text, 'utf-8') - except UnicodeError: - return unicode(text, locale.getpreferredencoding(), 'replace') - -# tag hooks -mTagHooks = {} - -## IMPORTANT -## Make sure all hooks output CLEAN html. Escape any user input BEFORE it's returned - -# Arguments passed: -# - wiki environment instance -# - tag content -# - dictionary of attributes - -# quote example: -# quote -from cgi import escape - -def hook_quote(env, body, attributes={}): - text = [u'
    '] - if 'cite' in attributes: - text.append(u"%s wrote:\n" % escape(attributes['cite'])) - text.append(body.strip()) - text.append(u'
    ') - return u'\n'.join(text) -registerTagHook('quote', hook_quote) - -def safe_name(name=None, remove_slashes=True): - if name is None: - return None - name = str2url(name) - if remove_slashes: - name = re.sub(r"[^a-zA-Z0-9\-_\s\.]", "", name) - else: - name = re.sub(r"[^a-zA-Z0-9\-_\s\.\/]", "", name) - name = re.sub(r"[\s\._]", "-", name) - name = re.sub(r"[-]+", "-", name) - return name.strip("-").lower() - -def str2url(str): - """ - Takes a UTF-8 string and replaces all characters with the equivalent in 7-bit - ASCII. It returns a plain ASCII string usable in URLs. - """ - try: - str = str.encode('utf-8') - except: - pass - mfrom = "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝßàáâãäåæçèéêëìíîï" - to = "AAAAAAECEEEEIIIIDNOOOOOOUUUUYSaaaaaaaceeeeiiii" - mfrom += "ñòóôõöøùúûüýÿĀāĂ㥹ĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģ" - to += "noooooouuuuyyaaaaaaccccccccddddeeeeeeeeeegggggggg" - mfrom += "ĤĥĦħĨĩĪīĬĭĮįİıĴĵĶķĸĹĺĻļĽľĿŀŁłŃńŅņŇňʼnŊŋŌōŎŏŐőŒœŔŕŖŗŘř" - to += "hhhhiiiiiiiiiijjkkkllllllllllnnnnnnnnnoooooooorrrrrr" - mfrom += "ŚśŜŝŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƂƃƄƅƇƈƉƊƐƑƒƓƔ" - to += "ssssssssttttttuuuuuuuuuuuuwwyyyzzzzzzfbbbbbccddeffgv" - mfrom += "ƖƗƘƙƚƝƞƟƠƤƦƫƬƭƮƯưƱƲƳƴƵƶǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟǠǡǢǣǤǥǦǧǨǩ" - to += "likklnnoopettttuuuuyyzzaaiioouuuuuuuuuueaaaaeeggggkk" - mfrom += "ǪǫǬǭǰǴǵǷǸǹǺǻǼǽǾǿȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȞȟȤȥȦȧȨȩ" - to += "oooojggpnnaaeeooaaaaeeeeiiiioooorrrruuuusstthhzzaaee" - mfrom += "ȪȫȬȭȮȯȰȱȲȳḀḁḂḃḄḅḆḇḈḉḊḋḌḍḎḏḐḑḒḓḔḕḖḗḘḙḚḛḜḝḞḟḠḡḢḣḤḥḦḧḨḩḪḫ" - to += "ooooooooyyaabbbbbbccddddddddddeeeeeeeeeeffgghhhhhhhhhh" - mfrom += "ḬḭḮḯḰḱḲḳḴḵḶḷḸḹḺḻḼḽḾḿṀṁṂṃṄṅṆṇṈṉṊṋṌṍṎṏṐṑṒṓṔṕṖṗṘṙṚṛṜṝṞṟ" - to += "iiiikkkkkkllllllllmmmmmmnnnnnnnnoooooooopppprrrrrrrr" - mfrom += "ṠṡṢṣṤṥṦṧṨṩṪṫṬṭṮṯṰṱṲṳṴṵṶṷṸṹṺṻṼṽṾṿẀẁẂẃẄẅẆẇẈẉẊẋẌẍẎẏẐẑẒẓẔẕ" - to += "ssssssssssttttttttuuuuuuuuuuvvvvwwwwwwwwwwxxxxxyzzzzzz" - mfrom += "ẖẗẘẙẚẛẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặẸẹẺẻẼẽẾếỀềỂểỄễỆệỈỉỊị" - to += "htwyafaaaaaaaaaaaaaaaaaaaaaaaaeeeeeeeeeeeeeeeeiiii" - mfrom += "ỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợỤụỦủỨứỪừỬửỮữỰựỲỳỴỵỶỷỸỹ" - to += "oooooooooooooooooooooooouuuuuuuuuuuuuuyyyyyyyy" - for i in zip(mfrom, to): - str = str.replace(*i) - return str - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/wiki_make_index.py b/document_page/wizard/wiki_make_index.py deleted file mode 100644 index c0a19dec..00000000 --- a/document_page/wizard/wiki_make_index.py +++ /dev/null @@ -1,104 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRl (). -# -# 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 . -# -############################################################################## - -from osv import osv -from tools.translate import _ - - -class wiki_make_index(osv.osv_memory): - """ Create Index For Selected Page """ - - _name = "wiki.make.index" - _description = "Create Index" - - def wiki_do_index(self, cr, uid, ids, context=None): - - """ Makes Index according to page hierarchy - @param cr: the current row, from the database cursor, - @param uid: the current user’s ID for security checks, - @param ids: list of wiki index’s IDs - - """ - if context is None: - context = {} - data = context and context.get('active_ids', []) or [] - - if not data: - return {'type': 'ir.actions.act_window_close'} - - for index_obj in self.browse(cr, uid, ids, context=context): - wiki_pool = self.pool.get('wiki.wiki') - cr.execute("Select id, section from wiki_wiki where id IN %s \ - order by section ", (tuple(data),)) - lst0 = cr.fetchall() - if not lst0[0][1]: - raise osv.except_osv(_('Warning!'), _('There is no section in\ - this Page.')) - - lst = [] - s_ids = {} - - for l in lst0: - s_ids[l[1]] = l[0] - lst.append(l[1]) - - lst.sort() - val = None - - def toint(x): - try: - return int(x) - except: - return 1 - - lst = map(lambda x: map(toint, x.split('.')), lst) - - result = [] - current = ['0'] - current2 = [] - - for l in lst: - for pos in range(len(l)): - if pos >= len(current): - current.append('1') - continue - if (pos == len(l) - 1) or (pos >= len(current2)) or \ - (toint(l[pos]) > toint(current2[pos])): - current[pos] = str(toint(current[pos]) + 1) - current = current[:pos + 1] - if pos == len(l) - 1: - break - key = ('.'.join([str(x) for x in l])) - id = s_ids[key] - val = ('.'.join([str(x) for x in current[:]]), id) - - if val: - result.append(val) - current2 = l - - for rs in result: - wiki_pool.write(cr, uid, [rs[1]], {'section': rs[0]}) - - return {'type': 'ir.actions.act_window_close'} - -wiki_make_index() - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/wiki_make_index_view.xml b/document_page/wizard/wiki_make_index_view.xml deleted file mode 100644 index 90139c3a..00000000 --- a/document_page/wizard/wiki_make_index_view.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - Create Index - wiki.make.index - form - -
    - -
    -
    - - - - - Create Index - ir.actions.act_window - wiki.make.index - form - form - new - - - - - - -
    -
    diff --git a/document_page/wizard/wiki_wiki_page_open.py b/document_page/wizard/wiki_wiki_page_open.py deleted file mode 100644 index 80bbb583..00000000 --- a/document_page/wizard/wiki_wiki_page_open.py +++ /dev/null @@ -1,71 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## - -from osv import osv - - -class wiki_wiki_page_open(osv.osv_memory): - """ wizard Open Page """ - - _name = "wiki.wiki.page.open" - _description = "wiz open page" - - def open_wiki_page(self, cr, uid, ids, context=None): - - """ Opens Wiki Page of Group - @param cr: the current row, from the database cursor, - @param uid: the current user’s ID for security checks, - @param ids: List of open wiki page’s IDs - @return: dictionay of open wiki window on give group id - """ - if context is None: - context = {} - group_ids = context.get('active_ids', []) - for group in self.pool.get('wiki.groups').browse(cr, uid, group_ids, - context=context): - value = { - 'domain': "[('group_id','=',%d)]" % (group.id), - 'name': 'Wiki Page', - 'view_type': 'form', - 'view_mode': 'form,tree', - 'res_model': 'wiki.wiki', - 'view_id': False, - 'type': 'ir.actions.act_window', - } - if group.method == 'page': - value['res_id'] = group.home.id - elif group.method == 'list': - value['view_type'] = 'form' - value['view_mode'] = 'tree,form' - elif group.method == 'tree': - view_id = self.pool.get('ir.ui.view').\ - search(cr, uid, [('name', '=', - 'wiki.wiki.tree.children')]) - value['view_id'] = view_id - value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', - False)] - value['view_type'] = 'tree' - - return value - -wiki_wiki_page_open() - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/wiki_wiki_page_open_view.xml b/document_page/wizard/wiki_wiki_page_open_view.xml deleted file mode 100644 index 49f333e4..00000000 --- a/document_page/wizard/wiki_wiki_page_open_view.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - Open Page - wiki.wiki.page.open - form - -
    -
    -
    - - - - - Open Page - ir.actions.act_window - wiki.wiki.page.open - form - form - new - -
    -
    From 10353a8f0c795eab0e2237a1bed7cd96403236c2 Mon Sep 17 00:00:00 2001 From: Giorgio Borelli Date: Tue, 11 Nov 2014 13:40:44 +0100 Subject: [PATCH 05/52] use new API --- document_page/__openerp__.py | 4 ++- document_page/document_page.py | 20 +++++-------- document_page/document_page_view.xml | 16 +++++++---- .../wizard/document_page_create_menu.py | 28 +++++++++++-------- .../wizard/document_page_show_diff.py | 28 +++++++++---------- 5 files changed, 51 insertions(+), 45 deletions(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 48e0d60c..116aa153 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -30,7 +30,9 @@ Web pages """, 'author': ['OpenERP SA'], 'website': 'http://www.openerp.com/', - 'depends': ['knowledge'], + 'depends': [ + 'knowledge' + ], 'data': [ 'wizard/document_page_create_menu_view.xml', 'wizard/document_page_show_diff_view.xml', diff --git a/document_page/document_page.py b/document_page/document_page.py index 7aba083d..50aabce2 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -18,10 +18,9 @@ # along with this program. If not, see . # ############################################################################## -from openerp import models, fields, _ -from openerp import exceptions -# , fields, api, _ import difflib +from openerp import models, fields, api, _ +from openerp import exceptions class document_page(models.Model): @@ -117,16 +116,11 @@ class document_page(models.Model): display_content = page.content page.display_content = display_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 + @api.onchange("parent_id") + def do_set_content(self): + if self.parent_id and not self.content: + if self.parent_id.type == "category": + self.content = self.parent_id.content def create_history(self, cr, uid, ids, vals, context=None): for i in ids: diff --git a/document_page/document_page_view.xml b/document_page/document_page_view.xml index f05a2d52..e9990ef2 100644 --- a/document_page/document_page_view.xml +++ b/document_page/document_page_view.xml @@ -49,16 +49,22 @@

    - + - - - + + + -
    +
    diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index 87a63c69..ee00d6ba 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -20,27 +20,33 @@ ############################################################################## from openerp import SUPERUSER_ID -from openerp.osv import fields, osv +from openerp import models, fields -class document_page_create_menu(osv.osv_memory): +class document_page_create_menu(models.TransientModel): """ Create Menu """ _name = "document.page.create.menu" _description = "Wizard Create Menu" - _columns = { - 'menu_name': fields.char('Menu Name', size=256, required=True), - 'menu_parent_id': fields.many2one('ir.ui.menu', 'Parent Menu', - required=True), - } + menu_name = fields.Char( + 'Menu Name', + required=True + ) + + menu_parent_id = fields.Many2one( + 'ir.ui.menu', + 'Parent Menu', + required=True + ) def default_get(self, cr, uid, fields, context=None): if context is None: context = {} - res = super(document_page_create_menu, self).default_get(cr, uid, - fields, - context= - context) + res = super(document_page_create_menu, self).default_get( + cr, uid, + fields, + context=context + ) page_id = context.get('active_id') obj_page = self.pool.get('document.page') page = obj_page.browse(cr, uid, page_id, context=context) diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index bc47a8ff..0ec96b29 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -18,13 +18,12 @@ # along with this program. If not, see . # ############################################################################## - -from openerp.osv import fields, osv -from openerp.tools.translate import _ +from openerp import models, fields, _ +from openerp import exceptions -class showdiff(osv.osv_memory): - """ Disp[ay Difference for History """ +class showdiff(models.TransientModel): + """ Display Difference for History """ _name = 'wizard.document.page.history.show_diff' @@ -47,17 +46,16 @@ class showdiff(osv.osv_memory): nids.sort() diff = history.getDiff(cr, uid, ids[0], nids[-1]) else: - raise osv.except_osv(_('Warning!'), _('You need to select minimum \ - one or maximum two history \ - revisions!')) + raise exceptions.Warning( + _("You need to select minimum one or maximum " + "two history revisions!") + ) return diff - _columns = { - 'diff': fields.text('Diff', readonly=True), - } - - _defaults = { - 'diff': get_diff - } + diff = fields.Text( + 'Diff', + readonly=True, + default=get_diff + ) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From fbb0d0c0e5074f36607c316a62d9fc7ddc79c890 Mon Sep 17 00:00:00 2001 From: Giorgio Borelli Date: Tue, 11 Nov 2014 13:43:35 +0100 Subject: [PATCH 06/52] minor formatting issues --- document_page/wizard/document_page_create_menu.py | 3 +-- .../wizard/document_page_show_diff_view.xml | 14 +++++++++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index ee00d6ba..6f68b7a2 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -18,9 +18,8 @@ # along with this program. If not, see . # ############################################################################## - -from openerp import SUPERUSER_ID from openerp import models, fields +from openerp import SUPERUSER_ID class document_page_create_menu(models.TransientModel): diff --git a/document_page/wizard/document_page_show_diff_view.xml b/document_page/wizard/document_page_show_diff_view.xml index e2d5ef1a..e2548a00 100644 --- a/document_page/wizard/document_page_show_diff_view.xml +++ b/document_page/wizard/document_page_show_diff_view.xml @@ -8,13 +8,19 @@ wizard.document.page.history.show_diff
    - +
    -
    + + Difference @@ -24,8 +30,10 @@ form new + + - Date: Tue, 11 Nov 2014 16:11:42 +0100 Subject: [PATCH 07/52] use new API --- document_page/document_page.py | 60 ++++++++++--------- .../wizard/document_page_create_menu.py | 59 +++++++++--------- .../wizard/document_page_show_diff.py | 24 ++++---- .../wizard/document_page_show_diff_view.xml | 2 +- 4 files changed, 74 insertions(+), 71 deletions(-) diff --git a/document_page/document_page.py b/document_page/document_page.py index 50aabce2..8983ba00 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -20,7 +20,6 @@ ############################################################################## import difflib from openerp import models, fields, api, _ -from openerp import exceptions class document_page(models.Model): @@ -122,26 +121,31 @@ class document_page(models.Model): if self.parent_id.type == "category": self.content = self.parent_id.content - 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_history(self, page_id, content): + history = self.env['document.page.history'] + return history.create({ + "content": content, + "page_id": page_id + }) - 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) + @api.multi + def write(self, vals): + result = super(document_page, self).write(vals) + content = vals.get('content') + if content: + for page in self: + self.create_history(page.id, content) return result + @api.model + @api.returns('self', lambda value: value.id) + def create(self, vals): + page_id = super(document_page, self).create(vals) + content = vals.get('content') + if content: + self.create_history(page_id.id, content) + return page_id + class document_page_history(models.Model): _name = "document.page.history" @@ -155,19 +159,21 @@ class document_page_history(models.Model): 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'] + def getDiff(self, v1, v2): + text1 = self.browse(v1).content + text2 = self.browse(v2).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 exceptions.Warning( - _('There are no changes in revisions.') + return _('There are no changes in revisions.') + else: + diff = difflib.HtmlDiff() + return diff.make_table( + line1, line2, + "Revision-{}".format(v1), + "Revision-{}".format(v2), + context=True ) - diff = difflib.HtmlDiff() - return diff.make_table(line1, line2, "Revision-%s" % (v1), - "Revision-%s" % (v2), context=True) diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index 6f68b7a2..b90b17c0 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -18,7 +18,7 @@ # along with this program. If not, see . # ############################################################################## -from openerp import models, fields +from openerp import models, fields, api from openerp import SUPERUSER_ID @@ -38,35 +38,30 @@ class document_page_create_menu(models.TransientModel): required=True ) - def default_get(self, cr, uid, fields, context=None): - if context is None: - context = {} - res = super(document_page_create_menu, self).default_get( - cr, uid, - fields, - context=context - ) - page_id = context.get('active_id') - obj_page = self.pool.get('document.page') - page = obj_page.browse(cr, uid, page_id, context=context) + @api.model + def default_get(self, fields_list): + res = super(document_page_create_menu, self).default_get(fields_list) + page_id = self.env.context.get('active_id') + obj_page = self.env['document.page'] + page = obj_page.browse(page_id) res['menu_name'] = page.name return res - def document_page_menu_create(self, cr, uid, ids, context=None): - if context is None: - context = {} - obj_page = self.pool.get('document.page') - obj_menu = self.pool.get('ir.ui.menu') - obj_action = self.pool.get('ir.actions.act_window') - page_id = context.get('active_id', False) - page = obj_page.browse(cr, uid, page_id, context=context) + @api.multi + def document_page_menu_create(self): + # events = self.env['event.event'].browse(self._context.get('event_ids', [])) + # events.do_confirm() + # return {'type': 'ir.actions.act_window_close'} + # def document_page_menu_create(self, cr, uid, ids, context=None): + # if context is None: + # context = {} + obj_page = self.env['document.page'] + obj_menu = self.env['ir.ui.menu'] + obj_action = self.env['ir.actions.act_window'] + page_id = self.env.context.get('active_id', False) + page = obj_page.browse(page_id) - datas = self.browse(cr, uid, ids, context=context) - data = False - if datas: - data = datas[0] - if not data: - return {} + data = self[0] value = { 'name': 'Document Page', 'view_type': 'form', @@ -79,16 +74,18 @@ class document_page_create_menu(models.TransientModel): value['domain'] = "[('parent_id','=',%d)]" % (page.id) value['res_id'] = page.id - action_id = obj_action.create(cr, SUPERUSER_ID, value) # only the super user is allowed to create menu due to security rules # on ir.values - menu_id = obj_menu.create(cr, SUPERUSER_ID, { + # see.: http://goo.gl/Y99S7V + action_id = obj_action.sudo().create(value) + + menu_id = obj_menu.sudo().create({ 'name': data.menu_name, 'parent_id': data.menu_parent_id.id, 'icon': 'STOCK_DIALOG_QUESTION', - 'action': 'ir.actions.act_window,' + str(action_id), - }, context) - obj_page.write(cr, uid, [page_id], {'menu_id': menu_id}) + 'action': 'ir.actions.act_window,' + str(action_id.id), + }) + page.write({'menu_id': menu_id.id}) return { 'type': 'ir.actions.client', 'tag': 'reload', diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index 0ec96b29..25a93de2 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -27,24 +27,24 @@ class showdiff(models.TransientModel): _name = 'wizard.document.page.history.show_diff' - def get_diff(self, cr, uid, context=None): - if context is None: - context = {} - history = self.pool.get('document.page.history') - ids = context.get('active_ids', []) + def get_diff(self): + history = self.env["document.page.history"] + ids = self.env.context.get('active_ids', []) diff = "" if len(ids) == 2: if ids[0] > ids[1]: - diff = history.getDiff(cr, uid, ids[1], ids[0]) + diff = history.getDiff(ids[1], ids[0]) else: - diff = history.getDiff(cr, uid, ids[0], ids[1]) - + diff = history.getDiff(ids[0], ids[1]) elif len(ids) == 1: - old = history.browse(cr, uid, ids[0]) - nids = history.search(cr, uid, [('page_id', '=', old.page_id.id)]) - nids.sort() - diff = history.getDiff(cr, uid, ids[0], nids[-1]) + old = history.browse(ids[0]) + nids = history.search( + [('page_id', '=', old.page_id.id)], + order='id DESC', + limit=1 + ) + diff = history.getDiff(ids[0], nids.id) else: raise exceptions.Warning( _("You need to select minimum one or maximum " diff --git a/document_page/wizard/document_page_show_diff_view.xml b/document_page/wizard/document_page_show_diff_view.xml index e2548a00..dbe973b3 100644 --- a/document_page/wizard/document_page_show_diff_view.xml +++ b/document_page/wizard/document_page_show_diff_view.xml @@ -12,7 +12,7 @@ widget="html" options='{"safe": True}' />
    -
    From 775cac5d90a4b84181f0de98a760b12e70090440 Mon Sep 17 00:00:00 2001 From: Giorgio Borelli Date: Wed, 12 Nov 2014 16:39:00 +0100 Subject: [PATCH 08/52] fix test --- document_page/document_page_demo.xml | 3 ++- document_page/test/document_page_test00.yml | 19 ++++++++++--------- .../wizard/document_page_create_menu.py | 6 ------ 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/document_page/document_page_demo.xml b/document_page/document_page_demo.xml index f779ea83..c94054e7 100644 --- a/document_page/document_page_demo.xml +++ b/document_page/document_page_demo.xml @@ -2,7 +2,8 @@ - + OpenERP Features diff --git a/document_page/test/document_page_test00.yml b/document_page/test/document_page_test00.yml index 3c8dba80..bc75c64e 100644 --- a/document_page/test/document_page_test00.yml +++ b/document_page/test/document_page_test00.yml @@ -30,13 +30,16 @@ 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[:] }) + !python {model: wizard.document.page.history.show_diff, id: False}: | + hist_obj = self.env['document.page.history'] + ids = hist_obj.search([('page_id', '=', ref("test_page0"))]) + self.with_context(active_ids=[i.id for i in ids]).get_diff() + + - I click the "create menu" link and i fill the form. - @@ -46,9 +49,7 @@ - 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) - + !python {model: document.page.create.menu, id: False}: | + menu = self.search([('id', '=', ref("test_create_menu0"))]) + menu.with_context(active_id=[ref('test_page0')]).document_page_menu_create() diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index b90b17c0..21928a14 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -49,12 +49,6 @@ class document_page_create_menu(models.TransientModel): @api.multi def document_page_menu_create(self): - # events = self.env['event.event'].browse(self._context.get('event_ids', [])) - # events.do_confirm() - # return {'type': 'ir.actions.act_window_close'} - # def document_page_menu_create(self, cr, uid, ids, context=None): - # if context is None: - # context = {} obj_page = self.env['document.page'] obj_menu = self.env['ir.ui.menu'] obj_action = self.env['ir.actions.act_window'] From 90e821da3aa942c5bbbd9b0af382149fe0c0a41a Mon Sep 17 00:00:00 2001 From: Giorgio Borelli Date: Wed, 12 Nov 2014 17:01:30 +0100 Subject: [PATCH 09/52] removed unused SUPERUSER_ID --- document_page/wizard/document_page_create_menu.py | 1 - 1 file changed, 1 deletion(-) diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index 21928a14..07bfb4ec 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -19,7 +19,6 @@ # ############################################################################## from openerp import models, fields, api -from openerp import SUPERUSER_ID class document_page_create_menu(models.TransientModel): From 48eaf100c8eb5846cc5c21354eca1d6686b5104d Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Fri, 6 Feb 2015 15:32:08 +0100 Subject: [PATCH 10/52] Add license key in __openerp__.py --- document_page/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 116aa153..4761340c 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -30,6 +30,7 @@ Web pages """, 'author': ['OpenERP SA'], 'website': 'http://www.openerp.com/', + 'license': 'AGPL-3', 'depends': [ 'knowledge' ], From eb222070c520793f708537922e4bf0792582b159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faure-Lacroix?= Date: Tue, 10 Mar 2015 18:43:55 +0300 Subject: [PATCH 11/52] Add dependency to knowledge --- document_page/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 4761340c..769422ea 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -32,7 +32,7 @@ Web pages 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ - 'knowledge' + 'knowledge', ], 'data': [ 'wizard/document_page_create_menu_view.xml', From 6d50d93df22f496e7cd64d90c731b99453baaa3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faure-Lacroix?= Date: Wed, 11 Mar 2015 10:14:51 +0300 Subject: [PATCH 12/52] Adding hack in document_page_history to allow calling method that don't exists --- document_page/document_page.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/document_page/document_page.py b/document_page/document_page.py index 8983ba00..752628c3 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -18,9 +18,12 @@ # along with this program. If not, see . # ############################################################################## +import logging import difflib from openerp import models, fields, api, _ +_logger = logging.getLogger(__name__) + class document_page(models.Model): _name = "document.page" @@ -177,3 +180,11 @@ class document_page_history(models.Model): "Revision-{}".format(v2), context=True ) + + def __getattr__(self, attr): + """Return a dummy callabale""" + _logger.warning( + "Trying to access attribute %s on document_page_history", + attr + ) + return (lambda *a, **b: None) From 935d676235ea93259988377da09c3d68f743fa7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faure-Lacroix?= Date: Wed, 11 Mar 2015 10:56:06 +0300 Subject: [PATCH 13/52] document_page_history don't have _sql attribute --- document_page/document_page.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/document_page/document_page.py b/document_page/document_page.py index 752628c3..75cc3abe 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -183,6 +183,9 @@ class document_page_history(models.Model): def __getattr__(self, attr): """Return a dummy callabale""" + if attr in ['_sql']: + raise AttributeError + _logger.warning( "Trying to access attribute %s on document_page_history", attr From e3946d62f319f70776c7cedc3f4afe2f2f6f53fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faure-Lacroix?= Date: Wed, 11 Mar 2015 11:26:26 +0300 Subject: [PATCH 14/52] Filter more fields --- document_page/document_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/document_page/document_page.py b/document_page/document_page.py index 75cc3abe..57e6d050 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -183,7 +183,7 @@ class document_page_history(models.Model): def __getattr__(self, attr): """Return a dummy callabale""" - if attr in ['_sql']: + if attr in ['_sql', 'init', '_ids']: raise AttributeError _logger.warning( From bdb9e226414f6d94bfaed3cf70d1985719a60330 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Mon, 13 Apr 2015 07:30:48 +0200 Subject: [PATCH 15/52] Slovene translations added --- document_page/i18n/sl.po | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/document_page/i18n/sl.po b/document_page/i18n/sl.po index bbf26aba..6c682cac 100644 --- a/document_page/i18n/sl.po +++ b/document_page/i18n/sl.po @@ -1,21 +1,25 @@ # Slovenian 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 , 2012. # +# FIRST AUTHOR , 2012. +# Matjaž Mozetič , 2015. msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-10 09:04+0000\n" -"Last-Translator: Darja Zorman \n" -"Language-Team: Slovenian \n" +"PO-Revision-Date: 2015-03-27 11:27+0100\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Lokalize 1.5\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%" +"100==4 ? 3 : 0);\n" #. module: document_page #: view:document.page:0 @@ -29,7 +33,7 @@ msgstr "Kategorija" #: view:document.page:0 #: field:document.page,write_uid:0 msgid "Last Contributor" -msgstr "" +msgstr "Zadnji prispeval" #. module: document_page #: view:document.page:0 @@ -64,7 +68,7 @@ msgstr "Vsebina" #. module: document_page #: view:document.page:0 msgid "Group By..." -msgstr "" +msgstr "Združi po..." #. module: document_page #: view:document.page:0 @@ -91,7 +95,7 @@ msgstr "čarovnik za kreiranje menija" #. module: document_page #: field:document.page,type:0 msgid "Type" -msgstr "" +msgstr "Tip" #. module: document_page #: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff @@ -243,14 +247,14 @@ msgstr "Ustvari menu" #. module: document_page #: field:document.page,display_content:0 msgid "Displayed Content" -msgstr "" +msgstr "Prikazana vsebina" #. 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 "" +msgstr "Opozorilo!" #. module: document_page #: view:document.page.create.menu:0 @@ -266,9 +270,10 @@ msgstr "Razlika" #. module: document_page #: view:document.page:0 msgid "Document Type" -msgstr "" +msgstr "Tip dokumenta" #. module: document_page #: field:document.page,child_ids:0 msgid "Children" -msgstr "" +msgstr "Podrejeno" + From aad46f5615d6ce5471135ff524c4adbdef68f815 Mon Sep 17 00:00:00 2001 From: Glen Sojo Date: Thu, 23 Jul 2015 12:50:52 -0600 Subject: [PATCH 16/52] [IMP] - Changed history widget to html. --- document_page/document_page_view.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/document_page/document_page_view.xml b/document_page/document_page_view.xml index e9990ef2..abf2aea3 100644 --- a/document_page/document_page_view.xml +++ b/document_page/document_page_view.xml @@ -171,7 +171,8 @@ From 0e384b75db36bdc98fd91b7c7e6b95b6b3a954c4 Mon Sep 17 00:00:00 2001 From: Glen Sojo Date: Fri, 24 Jul 2015 14:18:22 -0600 Subject: [PATCH 17/52] [IMP] - Improved views and added followers to pages. --- document_page/document_page.py | 1 + document_page/document_page_view.xml | 168 ++++++++++++++---- .../wizard/document_page_create_menu.py | 5 +- 3 files changed, 142 insertions(+), 32 deletions(-) diff --git a/document_page/document_page.py b/document_page/document_page.py index 57e6d050..21da2770 100644 --- a/document_page/document_page.py +++ b/document_page/document_page.py @@ -27,6 +27,7 @@ _logger = logging.getLogger(__name__) class document_page(models.Model): _name = "document.page" + _inherit = ['mail.thread'] _description = "Document Page" _order = 'name' diff --git a/document_page/document_page_view.xml b/document_page/document_page_view.xml index abf2aea3..7f7ab50d 100644 --- a/document_page/document_page_view.xml +++ b/document_page/document_page_view.xml @@ -44,39 +44,58 @@ document.page.form document.page -
    + + + +

    + + + + + + + + + + + + + +
    + +
    +
    +
    + + +
    +
    +
    + + + + document.page.menu.form + document.page + +

    - - - - - - - - - - - -
    -
    -
    + widget="html" + class="oe_view_only" + options='{"safe": True}' />
    @@ -108,6 +127,70 @@
    + + + document.page.category.form + document.page + +
    + + +

    + + + + + + + + + + + + +
    +
    + +
    + +
    + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    + + + document.page.category.tree + document.page + + + + + + + + + + @@ -125,7 +208,18 @@

    - + + + tree + + + + + + form + + + {'default_type': 'category'}
    form tree,form - + + + + tree + + + + + + form + + + Date: Mon, 27 Jul 2015 14:52:34 -0600 Subject: [PATCH 18/52] [IMP] - Updated document_page pot and es translations. --- document_page/i18n/document_page.pot | 525 ++++++++++-------- document_page/i18n/es.po | 500 +++++++++-------- document_page/i18n/es_CR.po | 787 +++++++++++---------------- 3 files changed, 895 insertions(+), 917 deletions(-) diff --git a/document_page/i18n/document_page.pot b/document_page/i18n/document_page.pot index 8139bba8..4739dc9b 100644 --- a/document_page/i18n/document_page.pot +++ b/document_page/i18n/document_page.pot @@ -1,13 +1,13 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: # * document_page # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" +"Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-14 00:10+0000\n" -"PO-Revision-Date: 2014-08-14 00:10+0000\n" +"POT-Creation-Date: 2015-07-27 20:33+0000\n" +"PO-Revision-Date: 2015-07-27 20:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,213 +15,6 @@ msgstr "" "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 -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page." -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page msgid "

    \n" @@ -231,29 +24,78 @@ msgid "

    \n" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#: code:addons/document_page/wizard/wiki_make_index.py:52 -#, python-format -msgid "Warning!" +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -262,12 +104,245 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" msgstr "" +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 +#: field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template that will be used as a content template for all new page of this category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "" diff --git a/document_page/i18n/es.po b/document_page/i18n/es.po index f953ef74..3ac0a247 100644 --- a/document_page/i18n/es.po +++ b/document_page/i18n/es.po @@ -1,24 +1,51 @@ -# Spanish 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 , 2012. +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page # msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-06-18 07:39+0000\n" -"Last-Translator: Pedro Manuel Baeza \n" -"Language-Team: Spanish \n" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-27 20:33+0000\n" +"PO-Revision-Date: 2015-07-27 20:33+0000\n" +"Last-Translator: Glen Sojo \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-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,help:document_page.action_page +msgid "

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "

    \n" +"Pulse para crear una nueva página web.\n" +"

    \n" +" " + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorías" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form #: field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category @@ -26,35 +53,18 @@ msgid "Category" msgstr "Categoría" #. module: document_page -#: view:document.page:0 -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Último colaborador" +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Hijos" #. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Cerrar" #. 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 +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form #: field:document.page,content:0 #: selection:document.page,type:0 #: field:document.page.history,content:0 @@ -62,92 +72,208 @@ msgid "Content" msgstr "Contenido" #. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Agrupar por..." +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +msgid "Create Menu" +msgstr "Crear menú" #. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Plantilla" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Creado por" #. module: document_page -#: 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." +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creado en" #. module: document_page #: field:document.page.history,create_date:0 msgid "Date" msgstr "Fecha" +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Fecha del último mensaje publicado en el registro." + +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 +msgid "Diff" +msgstr "Dif." + #. 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 +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff msgid "Difference" msgstr "Diferencia" +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historial del Documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historia de página de documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Tipo de documento" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Seguidores" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar por..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historial" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban." + +#. module: document_page +#: field:document.page,id:0 +#: field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Si está marcado nuevos mensajes requieren su atención." + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "Es un seguidor" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Ultimo contenido" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último colaborador" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Fecha del ultimo mensaje" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Información del menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nombre menú" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Mensajes" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Mensajes e historial de comunicación" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Fecha de modificación" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nombre" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historial de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historial de página" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + #. module: document_page #: model:ir.actions.act_window,name:document_page.action_page #: model:ir.ui.menu,name:document_page.menu_page @@ -156,14 +282,9 @@ 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 -#: view:document.page:0 -msgid "Name" -msgstr "Nombre" +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Historial de páginas" #. module: document_page #: field:document.page.create.menu,menu_parent_id:0 @@ -171,109 +292,60 @@ msgid "Parent Menu" msgstr "Menú padre" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Creado en" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" -"¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Historial de página" - -#. module: document_page +#: field:document.page,message_summary:0 #: field:document.page.history,summary:0 msgid "Summary" msgstr "Resumen" #. module: document_page -#: view:document.page:0 +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Plantilla" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template that will be used as a content template for all new page of this category." +msgstr "Plantilla que se utilizará como una plantilla de contenido para todas las nuevas páginas de esta categoría." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "No hay cambios en las revisiones." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Mensajes no leídos" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Asistente crear menú" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form msgid "e.g. Once upon a time..." msgstr "Por ejemplo, Érase una vez..." #. 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 -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Pulse para crear una nueva página web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page.create.menu:0 -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Crear menú" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Contenido mostrado" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "Warning!" -msgstr "¡Advertencia!" - -#. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Dif." - -#. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Hijos" - -#~ msgid "Create web pages" -#~ msgstr "Crear páginas Web" +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" diff --git a/document_page/i18n/es_CR.po b/document_page/i18n/es_CR.po index 79f50eaa..3ac0a247 100644 --- a/document_page/i18n/es_CR.po +++ b/document_page/i18n/es_CR.po @@ -1,520 +1,351 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * wiki +# * document_page # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: Odoo Server 8.0\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 \n" +"POT-Creation-Date: 2015-07-27 20:33+0000\n" +"PO-Revision-Date: 2015-07-27 20:33+0000\n" +"Last-Translator: Glen Sojo \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" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "

    \n" +"Pulse para crear una nueva página web.\n" +"

    \n" +" " -#. 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 +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,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 +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorías" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoría" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Hijos" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Cerrar" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: field:document.page,content:0 +#: selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Contenido" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +msgid "Create Menu" +msgstr "Crear menú" + +#. module: document_page +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Fecha" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Fecha del último mensaje publicado en el registro." + +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 msgid "Diff" msgstr "Dif." -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" +#. 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:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferencia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "Páginas esperando revisión" +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historial del Documento" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "Buscar página" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página de documento" -#~ 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!" +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historia de página de documento" -#~ msgid "Wiki Groups Links" -#~ msgstr "Enlaces grupos wiki" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Tipo de documento" -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración Wiki" +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Seguidores" -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestión de documentos - Wiki" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar por..." -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historial" -#~ msgid "History Differance" -#~ msgstr "Diferencia historial" +#. module: document_page +#: help:document.page,message_summary:0 +msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." +msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban." -#~ msgid "Group Home Page" -#~ msgstr "Página de inicio del grupo" +#. module: document_page +#: field:document.page,id:0 +#: field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" -#~ msgid "Last Author" -#~ msgstr "Último autor" +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Si está marcado nuevos mensajes requieren su atención." -#~ msgid "Differences" -#~ msgstr "Diferencias" +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "Es un seguidor" -#~ msgid "Document Management" -#~ msgstr "Gestión de documentos" +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Ultimo contenido" -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último colaborador" -#~ msgid "Parent Group" -#~ msgstr "Grupo padre" +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Fecha del ultimo mensaje" -#~ msgid "Wiki Differance" -#~ msgstr "Diferencia Wiki" +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Información del menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nombre menú" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Mensajes" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Mensajes e historial de comunicación" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Fecha de modificación" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nombre" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historial de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historial de página" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páginas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Historial de páginas" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú padre" + +#. module: document_page +#: field:document.page,message_summary:0 +#: field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumen" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Plantilla" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template that will be used as a content template for all new page of this category." +msgstr "Plantilla que se utilizará como una plantilla de contenido para todas las nuevas páginas de esta categoría." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 #, python-format -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" +msgid "There are no changes in revisions." +msgstr "No hay cambios en las revisiones." -#~ msgid "Modifications" -#~ msgstr "Modificaciones" +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" -#~ msgid "History" -#~ msgstr "Historial" +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" -#~ msgid "Tags" -#~ msgstr "Etiquetas" +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Mensajes no leídos" -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Asistente crear menú" -#~ 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: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "Por ejemplo, Érase una vez..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" From e00021d1d9afba5549faed548cbfecbea14030ce Mon Sep 17 00:00:00 2001 From: Glen Sojo Date: Thu, 30 Jul 2015 09:35:45 -0600 Subject: [PATCH 19/52] [FIX] - document_page:^Cissing dependency. --- document_page/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 769422ea..7b9d700a 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -33,6 +33,7 @@ Web pages 'license': 'AGPL-3', 'depends': [ 'knowledge', + 'mail', ], 'data': [ 'wizard/document_page_create_menu_view.xml', From d73d04730d2ac8b2f74f409ca07d79a0e85e5282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matja=C5=BE=20Mozeti=C4=8D?= Date: Sun, 2 Aug 2015 08:41:30 +0200 Subject: [PATCH 20/52] Translations sync with templates --- document_page/i18n/it.po | 553 +++++++++++++++++++++++---------------- document_page/i18n/sl.po | 551 ++++++++++++++++++++++---------------- 2 files changed, 646 insertions(+), 458 deletions(-) diff --git a/document_page/i18n/it.po b/document_page/i18n/it.po index 242f3cf5..50713102 100644 --- a/document_page/i18n/it.po +++ b/document_page/i18n/it.po @@ -6,222 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-02 08:07+0200\n" +"PO-Revision-Date: 2015-08-02 08:13+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\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 -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu Superiore" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data di Modifica" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. 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" +"X-Generator: Poedit 1.8.2\n" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page @@ -231,31 +26,81 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" Crea una nuova pagina.\n" +"

    \n" +" " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autore" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancella" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorie" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoria" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Figlio" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Chiudi" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Contenuto" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Crea Menu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Contenuto Visualizzato" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Creato da" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creato il" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancella" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Data pubblicazione ultimo messaggio sul record." #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -263,14 +108,266 @@ msgid "Diff" msgstr "Differenze" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Differenze" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Cronologia documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Pagina documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Cronologia Pagina Documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Tipo Documento" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Figlio" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Documenti" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Seguaci" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Raggruppa per..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Cronologia" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" +"Sommario dei messaggi (numero messaggi, ...). Questo sommario è direttamente in " +"formato html per poter essere inserito nelle viste kanban." + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" +"Quando segnato significa, che ci sono dei nuovi messaggi a richiedere la vostra " +"attenzione." + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "È un seguace" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Ultimo contenuto" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Ultimo collaboratore" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Data ultimo messaggio" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento da" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informazioni Menu" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nome Menu" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Messaggi" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Messaggi e cronologia communicazioni" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data di Modifica" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificato Da" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nome" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Pagina" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Cronologia pagina" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Cronologia pagina" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo di pagina" + +#. 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_page_history +msgid "Pages history" +msgstr "Cronologia pagine" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menu Superiore" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Riepilogo" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Modello" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Bozza, che verrà usata come modello del contenuto per tutte le nuove pagine di " +"questa categoria." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Non ci sono modifiche nelle revisioni." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Titolo" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Messaggi non letti" + +#. 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 +#: 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "esempio: c'era una volta..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Contenuto Visualizzato" + +#~ msgid "Warning!" +#~ msgstr "Attenzione!" #~ msgid "Create web pages" #~ msgstr "Crea pagine web" diff --git a/document_page/i18n/sl.po b/document_page/i18n/sl.po index 6c682cac..f830b16f 100644 --- a/document_page/i18n/sl.po +++ b/document_page/i18n/sl.po @@ -7,222 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-03-27 11:27+0100\n" -"Last-Translator: Matjaž Mozetič \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-02 08:04+0200\n" +"PO-Revision-Date: 2015-08-02 08:07+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Lokalize 1.5\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%" -"100==4 ? 3 : 0);\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 prispeval" - -#. 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 "Stran dokumenta" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Zgodovina strani" - -#. 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 "Združi po..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Predloga" - -#. module: document_page -#: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." -msgstr "" -"ki bo uporabljeno kot vsebinska predloga za vse nove strani v tej 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 "čarovnik za kreiranje menija" - -#. 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.page.history.show_diff" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Spremenil" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "ali" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Tip strani" - -#. 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 "Zgodovina strani dokumenta" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Zgodovina strani" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "V reviziji ni sprememb." - -#. 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 "Strani" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategorije" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "Naziv" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Nadmenu" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum spremembe" - -#. 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 "Izbrati morate vsaj eno ali največ dve pretekli reviziji!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Zgodovina strani" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Povzetek" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "npr. Nekoč pred davnimi časi..." - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Zgodovina dokumenta" - -#. 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 "Stran" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Zgodovina" +"X-Generator: Poedit 1.8.2\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" +"%100==4 ? 3 : 0);\n" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page @@ -233,34 +30,80 @@ msgid "" " " msgstr "" "

    \n" -" Kliknite za kreiranje nove spletne strani.\n" +" Ustvarjanje nove spletne strani.\n" "

    \n" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Avtor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Preklic" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategorije" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategorija" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Podrejeno" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Zaključi" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Vsebina" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" -msgstr "Ustvari menu" +msgstr "Ustvari meni" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Prikazana vsebina" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" #. 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 "Opozorilo!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Prekliči" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Datum zadnjega sporočila vpisanega na to vknjižbo." #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -268,12 +111,260 @@ msgid "Diff" msgstr "Razlika" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Razlika" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Zgodovina dokumenta" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Stran dokumenta" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Zgodovina strani dokumenta" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Tip dokumenta" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Podrejeno" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Dokumenti" +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Sledilci" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Združi po..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Zgodovina" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" +"Povzetek (število sporočil,..) v html formatu, da se lahko neposredno vstavi v " +"poglede tipa kanban." + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Če označeno, zahtevajo nova sporočila vašo pozornost." + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "Je sledilec" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Zadnja vsebina" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Zadnji prispeval" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Datum zadnjega sporočila" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meni" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informacije o meniju" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nadrejeni meni" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Sporočila" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Sporočila in kronologija komunikacij" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Datum spremembe" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Spremenil" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Naziv" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Stran" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Zgodovina strani" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Zgodovina strani" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tip strani" + +#. 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_page_history +msgid "Pages history" +msgstr "Zgodovina strani" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Nadmenu" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Povzetek" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Predloga" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Predloga, ki bo uporabljena kot vsebinska predloga za vse nove strani v tej " +"kategoriji" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "V reviziji ni sprememb." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Naslov" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tip" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Neprebrana sporočila" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Čarovnik za ustvarjanje menija" + +#. 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 "Izbrati morate vsaj eno ali največ dve pretekli reviziji!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "npr. Nekoč pred davnimi časi..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "ali" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Prikazana vsebina" + +#~ msgid "Warning!" +#~ msgstr "Opozorilo!" From 2be40ecdca20c483dbc2807b236e90f3daa60dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matja=C5=BE=20Mozeti=C4=8D?= Date: Mon, 3 Aug 2015 13:38:45 +0200 Subject: [PATCH 21/52] Translations and templates sync --- document_page/i18n/ar.po | 26 ++++++--------- document_page/i18n/bg.po | 28 +++++++--------- document_page/i18n/bs.po | 28 +++++++--------- document_page/i18n/ca.po | 28 +++++++--------- document_page/i18n/cs.po | 28 +++++++--------- document_page/i18n/da.po | 28 +++++++--------- document_page/i18n/de.po | 26 ++++++--------- document_page/i18n/el.po | 28 +++++++--------- document_page/i18n/es.po | 26 +++++++-------- document_page/i18n/es_AR.po | 11 +++---- document_page/i18n/es_CR.po | 26 +++++++-------- document_page/i18n/es_MX.po | 59 ++++++++++++---------------------- document_page/i18n/es_VE.po | 59 ++++++++++++---------------------- document_page/i18n/et.po | 28 +++++++--------- document_page/i18n/fi.po | 26 ++++++--------- document_page/i18n/fr.po | 36 ++++++++------------- document_page/i18n/gl.po | 28 +++++++--------- document_page/i18n/hr.po | 29 +++++++---------- document_page/i18n/hu.po | 35 ++++++++------------ document_page/i18n/id.po | 28 +++++++--------- document_page/i18n/it.po | 2 +- document_page/i18n/ja.po | 28 +++++++--------- document_page/i18n/ko.po | 28 +++++++--------- document_page/i18n/lt.po | 28 +++++++--------- document_page/i18n/lv.po | 28 +++++++--------- document_page/i18n/mk.po | 31 +++++++----------- document_page/i18n/mn.po | 26 ++++++--------- document_page/i18n/nb.po | 28 +++++++--------- document_page/i18n/nl.po | 36 ++++++++------------- document_page/i18n/nl_BE.po | 15 +++++---- document_page/i18n/pl.po | 34 ++++++++------------ document_page/i18n/pt.po | 26 ++++++--------- document_page/i18n/pt_BR.po | 29 +++++++---------- document_page/i18n/ro.po | 32 +++++++----------- document_page/i18n/ru.po | 29 +++++++---------- document_page/i18n/sk.po | 28 +++++++--------- document_page/i18n/sl.po | 2 +- document_page/i18n/sq.po | 28 +++++++--------- document_page/i18n/sr.po | 28 +++++++--------- document_page/i18n/sr@latin.po | 28 +++++++--------- document_page/i18n/sv.po | 26 ++++++--------- document_page/i18n/tlh.po | 28 +++++++--------- document_page/i18n/tr.po | 29 +++++++---------- document_page/i18n/uk.po | 28 +++++++--------- document_page/i18n/vi.po | 28 +++++++--------- document_page/i18n/zh_CN.po | 28 +++++++--------- document_page/i18n/zh_TW.po | 28 +++++++--------- 47 files changed, 515 insertions(+), 805 deletions(-) diff --git a/document_page/i18n/ar.po b/document_page/i18n/ar.po index 10d60f6b..22e37fbd 100644 --- a/document_page/i18n/ar.po +++ b/document_page/i18n/ar.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-27 21:39+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: gehad shaat \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: ar\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "الكاتب" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "القائمة" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "المحتوى" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/bg.po b/document_page/i18n/bg.po index 524bd923..ccdd3263 100644 --- a/document_page/i18n/bg.po +++ b/document_page/i18n/bg.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: bg\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Меню" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Съдържание" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/bs.po b/document_page/i18n/bs.po index 0c2cb2d9..9942cdd4 100644 --- a/document_page/i18n/bs.po +++ b/document_page/i18n/bs.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: bs\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/ca.po b/document_page/i18n/ca.po index ff1322a6..69a148c2 100644 --- a/document_page/i18n/ca.po +++ b/document_page/i18n/ca.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: ca\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menú" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Contingut" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/cs.po b/document_page/i18n/cs.po index 71145a88..e2766a69 100644 --- a/document_page/i18n/cs.po +++ b/document_page/i18n/cs.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: cs\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Nabídka" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Obsah" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/da.po b/document_page/i18n/da.po index b0ff2781..e5118190 100644 --- a/document_page/i18n/da.po +++ b/document_page/i18n/da.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: da\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/de.po b/document_page/i18n/de.po index 261a6d5a..22198fb1 100644 --- a/document_page/i18n/de.po +++ b/document_page/i18n/de.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2014-02-02 18:48+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Ralf Hilgenstock \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-02-03 05:55+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: de\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menü" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Dokumentenseite" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Inhalt" @@ -73,8 +68,7 @@ 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." +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 diff --git a/document_page/i18n/el.po b/document_page/i18n/el.po index 68f146f9..f6849ba0 100644 --- a/document_page/i18n/el.po +++ b/document_page/i18n/el.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: el\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Δημιουργός" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Μενού" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Περιεχόμενα" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/es.po b/document_page/i18n/es.po index 3ac0a247..0f9577f7 100644 --- a/document_page/i18n/es.po +++ b/document_page/i18n/es.po @@ -1,27 +1,31 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * document_page +# * document_page # msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-27 20:33+0000\n" -"PO-Revision-Date: 2015-07-27 20:33+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Glen Sojo \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" +"Language: es\n" +"X-Generator: Poedit 1.8.2\n" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page -msgid "

    \n" +msgid "" +"

    \n" " Click to create a new web page.\n" "

    \n" " " -msgstr "

    \n" +msgstr "" +"

    \n" "Pulse para crear una nueva página web.\n" "

    \n" " " @@ -46,8 +50,7 @@ msgstr "Categorías" #. module: document_page #: view:document.page:document_page.view_category_form #: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 +#: 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" @@ -65,8 +68,7 @@ msgstr "Cerrar" #. module: document_page #: view:document.page:document_page.view_wiki_filter #: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 -#: selection:document.page,type:0 +#: field:document.page,content:0 selection:document.page,type:0 #: field:document.page.history,content:0 msgid "Content" msgstr "Contenido" @@ -165,8 +167,7 @@ msgid "Holds the Chatter summary (number of messages, ...). This summary is dire msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban." #. module: document_page -#: field:document.page,id:0 -#: field:document.page.create.menu,id:0 +#: field:document.page,id:0 field:document.page.create.menu,id:0 #: field:document.page.history,id:0 #: field:wizard.document.page.history.show_diff,id:0 msgid "ID" @@ -292,8 +293,7 @@ msgid "Parent Menu" msgstr "Menú padre" #. module: document_page -#: field:document.page,message_summary:0 -#: field:document.page.history,summary:0 +#: field:document.page,message_summary:0 field:document.page.history,summary:0 msgid "Summary" msgstr "Resumen" diff --git a/document_page/i18n/es_AR.po b/document_page/i18n/es_AR.po index 180e3281..4b3c91a1 100644 --- a/document_page/i18n/es_AR.po +++ b/document_page/i18n/es_AR.po @@ -1,20 +1,21 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * wiki +# * 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" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Silvana Herrera \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" +"X-Generator: Poedit 1.8.2\n" +"Language: es_AR\n" #. module: wiki #: field:wiki.groups,template:0 @@ -356,8 +357,7 @@ msgstr "Crear índice" #: 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!" +msgstr "¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" #. module: wiki #: view:wiki.wiki:0 @@ -480,7 +480,6 @@ msgstr "" #~ msgid "Wiki Differance" #~ msgstr "Diferencia Wiki" -#, python-format #~ msgid "No action found" #~ msgstr "No se ha encontrado la acción" diff --git a/document_page/i18n/es_CR.po b/document_page/i18n/es_CR.po index 3ac0a247..013c31bd 100644 --- a/document_page/i18n/es_CR.po +++ b/document_page/i18n/es_CR.po @@ -1,27 +1,31 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * document_page +# * document_page # msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-27 20:33+0000\n" -"PO-Revision-Date: 2015-07-27 20:33+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Glen Sojo \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" +"Language: es_CR\n" +"X-Generator: Poedit 1.8.2\n" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page -msgid "

    \n" +msgid "" +"

    \n" " Click to create a new web page.\n" "

    \n" " " -msgstr "

    \n" +msgstr "" +"

    \n" "Pulse para crear una nueva página web.\n" "

    \n" " " @@ -46,8 +50,7 @@ msgstr "Categorías" #. module: document_page #: view:document.page:document_page.view_category_form #: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 +#: 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" @@ -65,8 +68,7 @@ msgstr "Cerrar" #. module: document_page #: view:document.page:document_page.view_wiki_filter #: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 -#: selection:document.page,type:0 +#: field:document.page,content:0 selection:document.page,type:0 #: field:document.page.history,content:0 msgid "Content" msgstr "Contenido" @@ -165,8 +167,7 @@ msgid "Holds the Chatter summary (number of messages, ...). This summary is dire msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban." #. module: document_page -#: field:document.page,id:0 -#: field:document.page.create.menu,id:0 +#: field:document.page,id:0 field:document.page.create.menu,id:0 #: field:document.page.history,id:0 #: field:wizard.document.page.history.show_diff,id:0 msgid "ID" @@ -292,8 +293,7 @@ msgid "Parent Menu" msgstr "Menú padre" #. module: document_page -#: field:document.page,message_summary:0 -#: field:document.page.history,summary:0 +#: field:document.page,message_summary:0 field:document.page.history,summary:0 msgid "Summary" msgstr "Resumen" diff --git a/document_page/i18n/es_MX.po b/document_page/i18n/es_MX.po index 13ac328d..06f0ec4a 100644 --- a/document_page/i18n/es_MX.po +++ b/document_page/i18n/es_MX.po @@ -1,20 +1,21 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * wiki +# * 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" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Carlos @ smile.fr \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" +"X-Generator: Poedit 1.8.2\n" +"Language: es_MX\n" #. module: wiki #: field:wiki.groups,template:0 @@ -33,8 +34,7 @@ msgid "Display Method" msgstr "Método de visualización" #. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,create_uid:0 +#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 msgid "Author" msgstr "Autor" @@ -60,8 +60,7 @@ 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 +#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 msgid "Wiki History" msgstr "Historial Wiki" @@ -71,8 +70,7 @@ msgid "Minor edit" msgstr "Edición menor" #. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,text_area:0 +#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 msgid "Content" msgstr "Contenido" @@ -87,8 +85,7 @@ msgid "Parent Page" msgstr "Página padre" #. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,write_uid:0 +#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 msgid "Last Contributor" msgstr "Último colaborador" @@ -103,9 +100,7 @@ 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 +#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 msgid "Wiki Group" msgstr "Grupo Wiki" @@ -171,8 +166,7 @@ msgstr "" "colaboradores." #. module: wiki -#: view:wiki.create.menu:0 -#: view:wiki.make.index:0 +#: view:wiki.create.menu:0 view:wiki.make.index:0 msgid "Menu Information" msgstr "Información del menú" @@ -289,8 +283,7 @@ msgstr "" " " #. module: wiki -#: view:wiki.groups:0 -#: view:wizard.wiki.history.show_diff:0 +#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 msgid "Notes" msgstr "Notas" @@ -307,8 +300,7 @@ msgid "List" msgstr "Lista" #. module: wiki -#: field:wiki.wiki,summary:0 -#: field:wiki.wiki.history,summary:0 +#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 msgid "Summary" msgstr "Resumen" @@ -348,8 +340,7 @@ msgid "Wiki Id" msgstr "ID Wiki" #. module: wiki -#: field:wiki.groups,home:0 -#: selection:wiki.groups,method:0 +#: field:wiki.groups,home:0 selection:wiki.groups,method:0 msgid "Home Page" msgstr "Página inicial" @@ -364,8 +355,7 @@ msgid "Modification Information" msgstr "Información modificación" #. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration -#: view:wiki.wiki:0 +#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 msgid "Wiki" msgstr "Wiki" @@ -382,8 +372,7 @@ 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 +#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 msgid "Create Index" msgstr "Crear índice" @@ -391,8 +380,7 @@ msgstr "Crear índice" #: 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!" +msgstr "¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" #. module: wiki #: view:wiki.wiki:0 @@ -401,9 +389,7 @@ 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 +#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 msgid "Create Menu" msgstr "Crear menú" @@ -416,8 +402,7 @@ msgstr "¿Es ésta una edición mayor?" #: 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 +#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 msgid "Wiki Groups" msgstr "Grupos Wiki" @@ -439,8 +424,7 @@ msgid "Table of Contents" msgstr "Tabla de contenido" #. module: wiki -#: view:wiki.groups:0 -#: view:wiki.wiki.page.open:0 +#: view:wiki.groups:0 view:wiki.wiki.page.open:0 msgid "Open Wiki Page" msgstr "Abrir página wiki" @@ -450,9 +434,7 @@ 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 +#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 msgid "Cancel" msgstr "Cancelar" @@ -518,7 +500,6 @@ msgstr "Buscar página" #~ msgid "Wiki Differance" #~ msgstr "Diferencia Wiki" -#, python-format #~ msgid "No action found" #~ msgstr "No se ha encontrado la acción" diff --git a/document_page/i18n/es_VE.po b/document_page/i18n/es_VE.po index 13ac328d..9a70e0ea 100644 --- a/document_page/i18n/es_VE.po +++ b/document_page/i18n/es_VE.po @@ -1,20 +1,21 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * wiki +# * 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" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Carlos @ smile.fr \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" +"X-Generator: Poedit 1.8.2\n" +"Language: es_VE\n" #. module: wiki #: field:wiki.groups,template:0 @@ -33,8 +34,7 @@ msgid "Display Method" msgstr "Método de visualización" #. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,create_uid:0 +#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 msgid "Author" msgstr "Autor" @@ -60,8 +60,7 @@ 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 +#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 msgid "Wiki History" msgstr "Historial Wiki" @@ -71,8 +70,7 @@ msgid "Minor edit" msgstr "Edición menor" #. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,text_area:0 +#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 msgid "Content" msgstr "Contenido" @@ -87,8 +85,7 @@ msgid "Parent Page" msgstr "Página padre" #. module: wiki -#: view:wiki.wiki:0 -#: field:wiki.wiki,write_uid:0 +#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 msgid "Last Contributor" msgstr "Último colaborador" @@ -103,9 +100,7 @@ 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 +#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 msgid "Wiki Group" msgstr "Grupo Wiki" @@ -171,8 +166,7 @@ msgstr "" "colaboradores." #. module: wiki -#: view:wiki.create.menu:0 -#: view:wiki.make.index:0 +#: view:wiki.create.menu:0 view:wiki.make.index:0 msgid "Menu Information" msgstr "Información del menú" @@ -289,8 +283,7 @@ msgstr "" " " #. module: wiki -#: view:wiki.groups:0 -#: view:wizard.wiki.history.show_diff:0 +#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 msgid "Notes" msgstr "Notas" @@ -307,8 +300,7 @@ msgid "List" msgstr "Lista" #. module: wiki -#: field:wiki.wiki,summary:0 -#: field:wiki.wiki.history,summary:0 +#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 msgid "Summary" msgstr "Resumen" @@ -348,8 +340,7 @@ msgid "Wiki Id" msgstr "ID Wiki" #. module: wiki -#: field:wiki.groups,home:0 -#: selection:wiki.groups,method:0 +#: field:wiki.groups,home:0 selection:wiki.groups,method:0 msgid "Home Page" msgstr "Página inicial" @@ -364,8 +355,7 @@ msgid "Modification Information" msgstr "Información modificación" #. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration -#: view:wiki.wiki:0 +#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 msgid "Wiki" msgstr "Wiki" @@ -382,8 +372,7 @@ 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 +#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 msgid "Create Index" msgstr "Crear índice" @@ -391,8 +380,7 @@ msgstr "Crear índice" #: 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!" +msgstr "¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" #. module: wiki #: view:wiki.wiki:0 @@ -401,9 +389,7 @@ 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 +#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 msgid "Create Menu" msgstr "Crear menú" @@ -416,8 +402,7 @@ msgstr "¿Es ésta una edición mayor?" #: 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 +#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 msgid "Wiki Groups" msgstr "Grupos Wiki" @@ -439,8 +424,7 @@ msgid "Table of Contents" msgstr "Tabla de contenido" #. module: wiki -#: view:wiki.groups:0 -#: view:wiki.wiki.page.open:0 +#: view:wiki.groups:0 view:wiki.wiki.page.open:0 msgid "Open Wiki Page" msgstr "Abrir página wiki" @@ -450,9 +434,7 @@ 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 +#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 msgid "Cancel" msgstr "Cancelar" @@ -518,7 +500,6 @@ msgstr "Buscar página" #~ msgid "Wiki Differance" #~ msgstr "Diferencia Wiki" -#, python-format #~ msgid "No action found" #~ msgstr "No se ha encontrado la acción" diff --git a/document_page/i18n/et.po b/document_page/i18n/et.po index f09acea6..a9e1c01b 100644 --- a/document_page/i18n/et.po +++ b/document_page/i18n/et.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: et\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menüü" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Sisu" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/fi.po b/document_page/i18n/fi.po index f947c62e..02142a22 100644 --- a/document_page/i18n/fi.po +++ b/document_page/i18n/fi.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-18 05:42+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: fi\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Tekijä" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Valikko" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Dokumentin sivu" @@ -54,10 +51,8 @@ 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 +#: 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ö" @@ -73,8 +68,7 @@ msgstr "Malli" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "käytetään sisältömallina kaikille tämän kategorian uusille sivuille." #. module: document_page diff --git a/document_page/i18n/fr.po b/document_page/i18n/fr.po index c0afb704..d3cb22b2 100644 --- a/document_page/i18n/fr.po +++ b/document_page/i18n/fr.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-08-22 07:35+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Florian Hatat \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: fr\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Auteur" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Gestion documentaire de pages Web" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Contenu" @@ -73,11 +68,10 @@ 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." +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." +"Ceci sera utilisé comment contenu initial de toutes les nouvelles pages de cette " +"catégorie." #. module: document_page #: field:document.page,name:0 @@ -185,8 +179,7 @@ msgstr "Créé le" #, 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" +"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 @@ -256,8 +249,7 @@ msgid "Warning!" msgstr "Avertissement!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Annuler" diff --git a/document_page/i18n/gl.po b/document_page/i18n/gl.po index 4b2ffa13..874ecc64 100644 --- a/document_page/i18n/gl.po +++ b/document_page/i18n/gl.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: gl\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menú" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Contido" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/hr.po b/document_page/i18n/hr.po index fca31882..46df2d59 100644 --- a/document_page/i18n/hr.po +++ b/document_page/i18n/hr.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-03-14 12:05+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Davor Bojkić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: hr\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Izbornik" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Stranica dokumenata" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ 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." +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." @@ -250,8 +244,7 @@ msgid "Warning!" msgstr "Upozorenje!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Odustani" diff --git a/document_page/i18n/hu.po b/document_page/i18n/hu.po index 6cf5546f..e4813c1d 100644 --- a/document_page/i18n/hu.po +++ b/document_page/i18n/hu.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-10-12 11:51+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: hu\n" #. module: document_page #: field:document.page,display_content:0 @@ -23,22 +24,19 @@ msgid "Displayed Content" msgstr "Megjelenített tartalom" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Szerző" @@ -48,8 +46,7 @@ msgid "Menu" msgstr "Menü" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Documentum oldal" @@ -59,10 +56,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Tartalom" @@ -78,11 +73,9 @@ 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." +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." +"ez mint tartalom sablon lesz használva az összes ilyen kategóriájú új oldalhoz." #. module: document_page #: field:document.page,name:0 @@ -189,8 +182,7 @@ msgstr "Létrehozás dátuma" #: 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." +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 @@ -255,8 +247,7 @@ msgid "Warning!" msgstr "Figyelem!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Mégsem" diff --git a/document_page/i18n/id.po b/document_page/i18n/id.po index d5826508..fc295353 100644 --- a/document_page/i18n/id.po +++ b/document_page/i18n/id.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: id\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/it.po b/document_page/i18n/it.po index 50713102..8ceecc4e 100644 --- a/document_page/i18n/it.po +++ b/document_page/i18n/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-08-02 08:07+0200\n" -"PO-Revision-Date: 2015-08-02 08:13+0200\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Matjaz Mozetic \n" "Language-Team: Italian \n" "Language: it\n" diff --git a/document_page/i18n/ja.po b/document_page/i18n/ja.po index 71473206..2785c3f8 100644 --- a/document_page/i18n/ja.po +++ b/document_page/i18n/ja.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: ja\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "著者" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "メニュー" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "コンテンツ" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/ko.po b/document_page/i18n/ko.po index 066c7ad8..4b32b97c 100644 --- a/document_page/i18n/ko.po +++ b/document_page/i18n/ko.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: ko\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "저자" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "메뉴" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "컨텐트" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/lt.po b/document_page/i18n/lt.po index fd02906a..a60670dd 100644 --- a/document_page/i18n/lt.po +++ b/document_page/i18n/lt.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: lt\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autorius" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Meniu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Turinys" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/lv.po b/document_page/i18n/lv.po index b9d62788..85f96cef 100644 --- a/document_page/i18n/lv.po +++ b/document_page/i18n/lv.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: lv\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autors" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Izvēlne" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Saturs" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/mk.po b/document_page/i18n/mk.po index 9fae4bed..9d0421dc 100644 --- a/document_page/i18n/mk.po +++ b/document_page/i18n/mk.po @@ -8,33 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-03-31 13:21+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" "Language: mk\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" @@ -44,8 +41,7 @@ msgid "Menu" msgstr "Мени" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Страница на документ" @@ -55,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Содржина" @@ -74,8 +68,7 @@ msgstr "Урнек" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" "кој ќе биде употребен како урнек за содржина за сите нови страници од оваа " "категорија." @@ -185,8 +178,7 @@ msgstr "Креирано на" #: 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 "" -"Треба да селектиарте минимум една или максимум две ревизии на историја!" +msgstr "Треба да селектиарте минимум една или максимум две ревизии на историја!" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -252,8 +244,7 @@ msgid "Warning!" msgstr "Предупредување!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Откажи" diff --git a/document_page/i18n/mn.po b/document_page/i18n/mn.po index 3da236d8..6618b4f4 100644 --- a/document_page/i18n/mn.po +++ b/document_page/i18n/mn.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2014-01-11 14:09+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: gobi \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-12 05:48+0000\n" -"X-Generator: Launchpad (build 16890)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: mn\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Зохиогч" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Цэс" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Баримтын Хуудас" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Агуулга" @@ -73,8 +68,7 @@ msgstr "Загвар" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/nb.po b/document_page/i18n/nb.po index ed7a6d49..a5e6c93a 100644 --- a/document_page/i18n/nb.po +++ b/document_page/i18n/nb.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: nb\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Forfatter" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Meny" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Innhold" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/nl.po b/document_page/i18n/nl.po index 8ed4fb01..9624ed82 100644 --- a/document_page/i18n/nl.po +++ b/document_page/i18n/nl.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-06-08 11:21+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: nl\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Auteur" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Document pagina" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Inhoud" @@ -73,11 +68,10 @@ 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." +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." +"dit zal worden gebruikt als een inhoud sjabloon voor alle nieuwe pagina;s van " +"deze categorie." #. module: document_page #: field:document.page,name:0 @@ -184,8 +178,7 @@ msgstr "Aangemaakt op" #: 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.!" +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 @@ -255,8 +248,7 @@ msgid "Warning!" msgstr "Waarschuwing!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Annuleren" diff --git a/document_page/i18n/nl_BE.po b/document_page/i18n/nl_BE.po index b7939a66..9c87e90b 100644 --- a/document_page/i18n/nl_BE.po +++ b/document_page/i18n/nl_BE.po @@ -1,20 +1,21 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * wiki +# * 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" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Fabien (Open ERP) \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" +"X-Generator: Poedit 1.8.2\n" +"Language: nl_BE\n" #. module: wiki #: field:wiki.groups,template:0 @@ -191,10 +192,10 @@ 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." +"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 diff --git a/document_page/i18n/pl.po b/document_page/i18n/pl.po index 29b255d0..a43b0b66 100644 --- a/document_page/i18n/pl.po +++ b/document_page/i18n/pl.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: pl\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Strona dokumentu" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Zawartość" @@ -73,11 +68,9 @@ 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." +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." +"które będzie stosowane jako szablon zawartości dla nowych stron tej kategorii." #. module: document_page #: field:document.page,name:0 @@ -250,8 +243,7 @@ msgid "Warning!" msgstr "Ostrzeżenie !" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Anuluj" diff --git a/document_page/i18n/pt.po b/document_page/i18n/pt.po index 5cb9b03c..6a0e18b8 100644 --- a/document_page/i18n/pt.po +++ b/document_page/i18n/pt.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-01-18 11:30+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: pt\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Página do documento" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ 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." +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 diff --git a/document_page/i18n/pt_BR.po b/document_page/i18n/pt_BR.po index a4482b7f..4904516a 100644 --- a/document_page/i18n/pt_BR.po +++ b/document_page/i18n/pt_BR.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-07-18 19:55+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: pt_BR\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Página do Documento" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ 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." +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." @@ -254,8 +248,7 @@ msgid "Warning!" msgstr "Atenção!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Cancelar" diff --git a/document_page/i18n/ro.po b/document_page/i18n/ro.po index b52ea7ca..cf7ce32b 100644 --- a/document_page/i18n/ro.po +++ b/document_page/i18n/ro.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-03-07 18:49+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: ro\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Meniu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Pagina Documentului" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ 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." +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." @@ -184,8 +178,7 @@ msgstr "Creat in" #: 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!" +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 @@ -251,8 +244,7 @@ msgid "Warning!" msgstr "Avertizare!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Anulează" diff --git a/document_page/i18n/ru.po b/document_page/i18n/ru.po index 4a6eb9c0..57831f19 100644 --- a/document_page/i18n/ru.po +++ b/document_page/i18n/ru.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-07-16 13:42+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: ru\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Меню" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Страница документа" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Содержание" @@ -73,8 +68,7 @@ msgstr "Шаблон" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" "будет использоваться как шаблон содержимого для всех новых страниц этой " "категории." @@ -254,8 +248,7 @@ msgid "Warning!" msgstr "Внимание!" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 +#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 msgid "Cancel" msgstr "Отмена" diff --git a/document_page/i18n/sk.po b/document_page/i18n/sk.po index 2e315fa4..90d2a3e0 100644 --- a/document_page/i18n/sk.po +++ b/document_page/i18n/sk.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: sk\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Obsah" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/sl.po b/document_page/i18n/sl.po index f830b16f..b533e861 100644 --- a/document_page/i18n/sl.po +++ b/document_page/i18n/sl.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-08-02 08:04+0200\n" -"PO-Revision-Date: 2015-08-02 08:07+0200\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Matjaz Mozetic \n" "Language-Team: Slovenian \n" "Language: sl\n" diff --git a/document_page/i18n/sq.po b/document_page/i18n/sq.po index cce84e71..ba3da33d 100644 --- a/document_page/i18n/sq.po +++ b/document_page/i18n/sq.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: sq\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/sr.po b/document_page/i18n/sr.po index c5c3ca12..fff296a6 100644 --- a/document_page/i18n/sr.po +++ b/document_page/i18n/sr.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: sr\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Meni" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/sr@latin.po b/document_page/i18n/sr@latin.po index 2e1a810e..fa14b7dc 100644 --- a/document_page/i18n/sr@latin.po +++ b/document_page/i18n/sr@latin.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Serbian Latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: sr@latin\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Meni" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/sv.po b/document_page/i18n/sv.po index a16fd2c7..8c250294 100644 --- a/document_page/i18n/sv.po +++ b/document_page/i18n/sv.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2014-03-31 21:19+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Anders Wallenquist \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-04-01 06:52+0000\n" -"X-Generator: Launchpad (build 16967)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: sv\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Senaste författare" #. module: document_page -#: view:document.page:0 -#: field:document.page,create_uid:0 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Författare" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Meny" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Dokumentsida" @@ -54,10 +51,8 @@ msgid "Page History" msgstr "Sidhistorik" #. module: document_page -#: view:document.page:0 -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 +#: 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" @@ -73,8 +68,7 @@ msgstr "Mall" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/tlh.po b/document_page/i18n/tlh.po index 0477d98e..0a84d385 100644 --- a/document_page/i18n/tlh.po +++ b/document_page/i18n/tlh.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: tlh\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/tr.po b/document_page/i18n/tr.po index 7c3d7a84..4e6c0d2e 100644 --- a/document_page/i18n/tr.po +++ b/document_page/i18n/tr.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-06-20 18:21+0000\n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Language: tr\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Yazar" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Menü" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "Belge Sayfası" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "İçerik" @@ -73,10 +68,8 @@ 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." +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 diff --git a/document_page/i18n/uk.po b/document_page/i18n/uk.po index fbbb6d44..27609065 100644 --- a/document_page/i18n/uk.po +++ b/document_page/i18n/uk.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: uk\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Меню" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "Вміст" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/vi.po b/document_page/i18n/vi.po index 10e1f891..9f4e9588 100644 --- a/document_page/i18n/vi.po +++ b/document_page/i18n/vi.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: vi\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Tác giả" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "Trình đơn" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: 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" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/zh_CN.po b/document_page/i18n/zh_CN.po index 2b760c85..077a7185 100644 --- a/document_page/i18n/zh_CN.po +++ b/document_page/i18n/zh_CN.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: zh_CN\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "作者" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "菜单" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "内容" @@ -73,8 +68,7 @@ msgstr "模版" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page diff --git a/document_page/i18n/zh_TW.po b/document_page/i18n/zh_TW.po index c6870094..351b2f39 100644 --- a/document_page/i18n/zh_TW.po +++ b/document_page/i18n/zh_TW.po @@ -8,32 +8,30 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-08-03 13:36+0200\n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Generator: Poedit 1.8.2\n" +"Last-Translator: \n" +"Language: zh_TW\n" #. module: document_page -#: view:document.page:0 -#: field:document.page,parent_id:0 +#: 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 +#: 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 +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "作者" @@ -43,8 +41,7 @@ msgid "Menu" msgstr "選單" #. module: document_page -#: view:document.page:0 -#: model:ir.model,name:document_page.model_document_page +#: view:document.page:0 model:ir.model,name:document_page.model_document_page msgid "Document Page" msgstr "" @@ -54,10 +51,8 @@ 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 +#: view:document.page:0 field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 msgid "Content" msgstr "內容" @@ -73,8 +68,7 @@ msgstr "" #. module: document_page #: view:document.page:0 -msgid "" -"that will be used as a content template for all new page of this category." +msgid "that will be used as a content template for all new page of this category." msgstr "" #. module: document_page From 04af9f7cce2e0fadd6ab7fca15624f87a756c71c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matja=C5=BE=20Mozeti=C4=8D?= Date: Mon, 3 Aug 2015 14:39:10 +0200 Subject: [PATCH 22/52] Updated languages --- document_page/i18n/ar.po | 513 ++++++++++-------- document_page/i18n/bg.po | 522 ++++++++++-------- document_page/i18n/bs.po | 514 ++++++++++-------- document_page/i18n/ca.po | 522 ++++++++++-------- document_page/i18n/cs.po | 522 ++++++++++-------- document_page/i18n/da.po | 513 ++++++++++-------- document_page/i18n/de.po | 537 ++++++++++-------- document_page/i18n/el.po | 522 ++++++++++-------- document_page/i18n/es.po | 24 +- document_page/i18n/es_AR.po | 821 ++++++++++++++-------------- document_page/i18n/es_CR.po | 24 +- document_page/i18n/es_MX.po | 956 ++++++++++++++++++--------------- document_page/i18n/es_VE.po | 956 ++++++++++++++++++--------------- document_page/i18n/et.po | 522 ++++++++++-------- document_page/i18n/fi.po | 533 ++++++++++-------- document_page/i18n/fr.po | 540 +++++++++++-------- document_page/i18n/gl.po | 522 ++++++++++-------- document_page/i18n/hr.po | 535 ++++++++++-------- document_page/i18n/hu.po | 540 +++++++++++-------- document_page/i18n/id.po | 513 ++++++++++-------- document_page/i18n/ja.po | 522 ++++++++++-------- document_page/i18n/ko.po | 522 ++++++++++-------- document_page/i18n/lt.po | 522 ++++++++++-------- document_page/i18n/lv.po | 522 ++++++++++-------- document_page/i18n/mk.po | 538 +++++++++++-------- document_page/i18n/mn.po | 523 ++++++++++-------- document_page/i18n/nb.po | 522 ++++++++++-------- document_page/i18n/nl.po | 538 +++++++++++-------- document_page/i18n/nl_BE.po | 760 +++++++++++++------------- document_page/i18n/pl.po | 533 ++++++++++-------- document_page/i18n/pt.po | 536 ++++++++++-------- document_page/i18n/pt_BR.po | 538 +++++++++++-------- document_page/i18n/ro.po | 538 +++++++++++-------- document_page/i18n/ru.po | 538 +++++++++++-------- document_page/i18n/sk.po | 522 ++++++++++-------- document_page/i18n/sq.po | 513 ++++++++++-------- document_page/i18n/sr.po | 522 ++++++++++-------- document_page/i18n/sr@latin.po | 522 ++++++++++-------- document_page/i18n/sv.po | 534 ++++++++++-------- document_page/i18n/tlh.po | 513 ++++++++++-------- document_page/i18n/uk.po | 522 ++++++++++-------- document_page/i18n/vi.po | 520 ++++++++++-------- document_page/i18n/zh_CN.po | 527 ++++++++++-------- document_page/i18n/zh_TW.po | 525 ++++++++++-------- 44 files changed, 13599 insertions(+), 9924 deletions(-) diff --git a/document_page/i18n/ar.po b/document_page/i18n/ar.po index 22e37fbd..dfdf8f06 100644 --- a/document_page/i18n/ar.po +++ b/document_page/i18n/ar.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: gehad shaat \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:26+0200\n" +"PO-Revision-Date: 2015-08-03 14:27+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Arabic \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: ar\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "الفئة" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "المشارك الاخير" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "الكاتب" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "القائمة" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "تاريخ الصفحة" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "المحتوى" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "تجميع حسب..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "الاسم" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "النوع" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "تم التعديل عليها بواسطة" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "أو" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "نوع الصفحة" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "معلومات القائمة" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,74 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "الكاتب" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "الفئة" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "المحتوى" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +104,247 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "تجميع حسب..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "المحتوى" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "المشارك الاخير" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "القائمة" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "معلومات القائمة" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "تم التعديل عليها بواسطة" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "تاريخ الصفحة" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "نوع الصفحة" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "الاسم" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "النوع" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "أو" diff --git a/document_page/i18n/bg.po b/document_page/i18n/bg.po index ccdd3263..ec490d74 100644 --- a/document_page/i18n/bg.po +++ b/document_page/i18n/bg.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:27+0200\n" +"PO-Revision-Date: 2015-08-03 14:27+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Bulgarian \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: bg\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Меню" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "Съдържание" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Групиране по..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Заглавие" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Информация за меню" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Страници" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Надменю" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата на редакция" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Създадено на" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Резюме" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Автор" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Отказ" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Съдържание" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Създай меню" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Създадено на" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Отказ" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Дата" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Различия" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Групиране по..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Съдържание" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Меню" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Информация за меню" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Име на меню" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Страници" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Дата на редакция" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Страници" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Надменю" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Резюме" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Заглавие" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/bs.po b/document_page/i18n/bs.po index 9942cdd4..8dc8cb24 100644 --- a/document_page/i18n/bs.po +++ b/document_page/i18n/bs.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:27+0200\n" +"PO-Revision-Date: 2015-08-03 14:27+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Bosnian \n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: bs\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,75 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#, fuzzy +msgid "Cancel" +msgstr "Otkaži" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +105,247 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/ca.po b/document_page/i18n/ca.po index 69a148c2..435f6344 100644 --- a/document_page/i18n/ca.po +++ b/document_page/i18n/ca.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:28+0200\n" +"PO-Revision-Date: 2015-08-03 14:28+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: ca\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Data modificació" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancel·la" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Contingut" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Crea menú" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Creat el" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creat el" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancel·la" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Dif." #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferència" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupa per..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Contingut" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Últim col·laborador" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informació del menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nom menú" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Pàgines" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data modificació" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Històric pàgina" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Pàgines" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú pare" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resum" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Títol" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Assistent 'Crea menú'" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/cs.po b/document_page/i18n/cs.po index e2766a69..1c152802 100644 --- a/document_page/i18n/cs.po +++ b/document_page/i18n/cs.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:28+0200\n" +"PO-Revision-Date: 2015-08-03 14:28+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: cs\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Datum změny" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Zrušit" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Obsah" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Vytvořit nabídku" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Vytvořeno" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Zrušit" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Rozdíl" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Rozdíly" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Seskupit podle..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Obsah" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Poslední přispěvatel" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Nabídka" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informace nabídky" + +#. 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,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Stránky" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Datum změny" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historie stránky" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Stránky" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Rodičovská nabídka" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Shrnutí" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Název" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Průvodce vytvořením nabídky" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/da.po b/document_page/i18n/da.po index e5118190..03fd8d87 100644 --- a/document_page/i18n/da.po +++ b/document_page/i18n/da.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:28+0200\n" +"PO-Revision-Date: 2015-08-03 14:28+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: da\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,74 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +104,247 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/de.po b/document_page/i18n/de.po index 22198fb1..446d87d3 100644 --- a/document_page/i18n/de.po +++ b/document_page/i18n/de.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Ralf Hilgenstock \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:28+0200\n" +"PO-Revision-Date: 2015-08-03 14:28+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: German \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-02-03 05:55+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: de\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 "Seitenhistorie" - -#. 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 -#: view:document.page:0 -msgid "Name" -msgstr "Bezeichnung" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Obermenü" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Änderung am" - -#. 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 eine und maximal zwei Revisionen auswählen!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Seitenhistorie" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Zusammenfassung" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "z.B. Es war einmal..." - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Dokumentenhistorie" - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,77 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Abbrechen" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategorien" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategorie" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Kindelemente" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#, fuzzy +msgid "Close" +msgstr "Beenden" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Inhalt" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Menü erstellen" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Angezeigter Inhalt" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Erzeugt am" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Erzeugt am" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Abbrechen" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,14 +106,264 @@ msgid "Diff" msgstr "Differenz" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Differenz" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Dokumentenhistorie" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Dokumentenseite" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Dokumenten Seite Historie" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Dokumententyp" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Kindelemente" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Dokumentenseite" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Gruppiert je..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historie" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +#, fuzzy +msgid "ID" +msgstr "ID des Reports , definiert in xml Datei" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Inhalt" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Letzer Beitragender" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menü" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menü" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Menübezeichnung" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Seiten" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Änderung am" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Geändert von" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Bezeichnung" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Seite" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Seitenänderungsverlauf" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Seitenhistorie" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Seitentyp" + +#. 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_page_history +msgid "Pages history" +msgstr "Seitenhistorie" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Obermenü" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Zusammenfassung" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Vorlage" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Es gibt keine Veränderungen in den Revisionen" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Titel" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Typ" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Assistent für Menüerzeugung" + +#. 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 eine und maximal zwei Revisionen auswählen!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "z.B. Es war einmal..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "oder" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Angezeigter Inhalt" + +#~ msgid "Warning!" +#~ msgstr "Warnung!" #~ msgid "Create web pages" #~ msgstr "Webseiten erstellen" diff --git a/document_page/i18n/el.po b/document_page/i18n/el.po index f6849ba0..be7561c7 100644 --- a/document_page/i18n/el.po +++ b/document_page/i18n/el.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:29+0200\n" +"PO-Revision-Date: 2015-08-03 14:29+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: el\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "Δημιουργός" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Μενού" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "Περιεχόμενα" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Τίτλος" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Πληροφορίες Μενού" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Ημερομηνία" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Σελίδες" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Μενού Προέλευσης" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Ημερομηνία Τροποποίησης" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Δημιουργήθηκε στις" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Περίληψη" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Δημιουργός" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Περιεχόμενα" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Δημιουργία Μενού" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Ακύρωση" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Ημερομηνία" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Διαφ." #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Περιεχόμενα" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Μενού" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Πληροφορίες Μενού" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Όνομα Μενού" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Σελίδες" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Ημερομηνία Τροποποίησης" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Σελίδες" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Μενού Προέλευσης" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Περίληψη" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Τίτλος" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/es.po b/document_page/i18n/es.po index 0f9577f7..6ec3bb9d 100644 --- a/document_page/i18n/es.po +++ b/document_page/i18n/es.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-27 20:33+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Glen Sojo \n" +"POT-Creation-Date: 2015-08-03 14:29+0200\n" +"PO-Revision-Date: 2015-08-03 14:29+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" -"Language: es\n" "X-Generator: Poedit 1.8.2\n" #. module: document_page @@ -163,8 +163,12 @@ msgstr "Historial" #. module: document_page #: help:document.page,message_summary:0 -msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." -msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban." +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " +"directamente en formato html para ser insertada en las vistas kanban." #. module: document_page #: field:document.page,id:0 field:document.page.create.menu,id:0 @@ -304,8 +308,12 @@ msgstr "Plantilla" #. module: document_page #: view:document.page:document_page.view_category_form -msgid "Template that will be used as a content template for all new page of this category." -msgstr "Plantilla que se utilizará como una plantilla de contenido para todas las nuevas páginas de esta categoría." +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Plantilla que se utilizará como una plantilla de contenido para todas las " +"nuevas páginas de esta categoría." #. module: document_page #: code:addons/document_page/document_page.py:175 diff --git a/document_page/i18n/es_AR.po b/document_page/i18n/es_AR.po index 4b3c91a1..45afd754 100644 --- a/document_page/i18n/es_AR.po +++ b/document_page/i18n/es_AR.po @@ -5,438 +5,433 @@ 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: 2015-08-03 13:36+0200\n" -"Last-Translator: Silvana Herrera \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:29+0200\n" +"PO-Revision-Date: 2015-08-03 14:30+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: \n" +"Language: es_AR\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: Poedit 1.8.2\n" -"Language: es_AR\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" +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " msgstr "" +"

    \n" +"Pulse para crear una nueva página web.\n" +"

    \n" +" " -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,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 +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorías" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: field:document.page,parent_id:0 selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoría" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Hijos" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Cerrar" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: field:document.page,content:0 selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Contenido" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +msgid "Create Menu" +msgstr "Crear menú" + +#. module: document_page +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Fecha" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Fecha del último mensaje publicado en el registro." + +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 msgid "Diff" msgstr "Dif." -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" +#. 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:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferencia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historial del Documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historia de página de documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Tipo de documento" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Seguidores" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar por..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historial" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " +"directamente en formato html para ser insertada en las vistas kanban." + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Si está marcado nuevos mensajes requieren su atención." + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "Es un seguidor" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Ultimo contenido" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último colaborador" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Fecha del ultimo mensaje" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Información del menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nombre del menú" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Mensajes" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Mensajes e historial de comunicación" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Fecha de modificación" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nombre" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historial de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historial de página" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páginas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Historial de páginas" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú padre" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumen" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Plantilla" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Plantilla que se utilizará como una plantilla de contenido para todas las " +"nuevas páginas de esta categoría." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "No hay cambios en las revisiones." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Mensajes no leídos" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Asistente crear menú" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "Por ejemplo, Érase una vez..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "" +#~ msgid "Wiki Pages" +#~ msgstr "Páginas Wiki" -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" +#~ msgid "Open Page" +#~ msgstr "Abrir página" + +#~ msgid "Section" +#~ msgstr "Sección" + +#~ msgid "Wiki History" +#~ msgstr "Historial Wiki" + +#~ msgid "Minor edit" +#~ msgstr "Edición menor" + +#~ msgid "Wiki Group" +#~ msgstr "Grupo Wiki" + +#~ msgid "History Lines" +#~ msgstr "Líneas del historial" + +#~ 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" + +#~ msgid "Description" +#~ msgstr "Descripción" + +#~ msgid "Warning" +#~ msgstr "Aviso" + +#~ msgid "Want to create a Index on Selected Pages ? " +#~ msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " + +#~ msgid "Make Section ?" +#~ msgstr "¿Crear sección?" + +#~ msgid "Text area" +#~ msgstr "Área de texto" + +#~ msgid "Notes" +#~ msgstr "Notas" + +#~ msgid "Created Date" +#~ msgstr "Fecha de creación" + +#~ msgid "wiki.wiki" +#~ msgstr "wiki.wiki" + +#~ msgid "wizard.wiki.history.show_diff" +#~ msgstr "asistente.wiki.historial.mostrar_dif" + +#~ msgid "Wiki Id" +#~ msgstr "ID Wiki" + +#~ msgid "Wiki" +#~ msgstr "Wiki" + +#~ msgid "Configuration" +#~ msgstr "Configuración" + +#~ msgid "Create Index" +#~ msgstr "Crear índice" + +#~ msgid "This is a major edit ?" +#~ msgstr "¿Es ésta una edición mayor?" + +#~ msgid "Wiki Groups" +#~ msgstr "Grupos Wiki" + +#~ msgid "Table of Contents" +#~ msgstr "Tabla de contenidos" + +#~ msgid "Need Review" +#~ msgstr "Necesita revisión" #~ msgid "Wiki Groups Links" #~ msgstr "Enlaces grupos wiki" @@ -468,9 +463,6 @@ msgstr "" #~ 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 !" @@ -486,8 +478,5 @@ msgstr "" #~ msgid "Modifications" #~ msgstr "Modificaciones" -#~ msgid "History" -#~ msgstr "Historial" - #~ msgid "Tags" #~ msgstr "Etiquetas" diff --git a/document_page/i18n/es_CR.po b/document_page/i18n/es_CR.po index 013c31bd..08d28454 100644 --- a/document_page/i18n/es_CR.po +++ b/document_page/i18n/es_CR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-27 20:33+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Glen Sojo \n" +"POT-Creation-Date: 2015-08-03 14:30+0200\n" +"PO-Revision-Date: 2015-08-03 14:30+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: \n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" -"Language: es_CR\n" "X-Generator: Poedit 1.8.2\n" #. module: document_page @@ -163,8 +163,12 @@ msgstr "Historial" #. module: document_page #: help:document.page,message_summary:0 -msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." -msgstr "Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está directamente en formato html para ser insertada en las vistas kanban." +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " +"directamente en formato html para ser insertada en las vistas kanban." #. module: document_page #: field:document.page,id:0 field:document.page.create.menu,id:0 @@ -304,8 +308,12 @@ msgstr "Plantilla" #. module: document_page #: view:document.page:document_page.view_category_form -msgid "Template that will be used as a content template for all new page of this category." -msgstr "Plantilla que se utilizará como una plantilla de contenido para todas las nuevas páginas de esta categoría." +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Plantilla que se utilizará como una plantilla de contenido para todas las " +"nuevas páginas de esta categoría." #. module: document_page #: code:addons/document_page/document_page.py:175 diff --git a/document_page/i18n/es_MX.po b/document_page/i18n/es_MX.po index 06f0ec4a..a11a4787 100644 --- a/document_page/i18n/es_MX.po +++ b/document_page/i18n/es_MX.po @@ -5,458 +5,542 @@ 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: 2015-08-03 13:36+0200\n" -"Last-Translator: Carlos @ smile.fr \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:30+0200\n" +"PO-Revision-Date: 2015-08-03 14:30+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: \n" +"Language: es_MX\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: Poedit 1.8.2\n" -"Language: es_MX\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +"Pulse para crear una nueva página web.\n" +"

    \n" +" " -#. 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 +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,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 +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorías" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: field:document.page,parent_id:0 selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoría" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Hijos" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Cerrar" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: field:document.page,content:0 selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Contenido" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +msgid "Create Menu" +msgstr "Crear menú" + +#. module: document_page +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Fecha" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Fecha del último mensaje publicado en el registro." + +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 msgid "Diff" msgstr "Dif." -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" +#. 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:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferencia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "Páginas esperando revisión" +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historial del Documento" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "Buscar página" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historia de página de documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Tipo de documento" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Seguidores" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar por..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historial" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " +"directamente en formato html para ser insertada en las vistas kanban." + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Si está marcado nuevos mensajes requieren su atención." + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "Es un seguidor" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Ultimo contenido" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último colaborador" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Fecha del ultimo mensaje" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Información del menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nombre menú" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Mensajes" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Mensajes e historial de comunicación" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Fecha de modificación" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nombre" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historial página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historial de página" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páginas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Historial de páginas" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú padre" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumen" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Plantilla" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Plantilla que se utilizará como una plantilla de contenido para todas las " +"nuevas páginas de esta categoría." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "No hay cambios en las revisiones." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Mensajes no leídos" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Asistente crear menú" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "Por ejemplo, Érase una vez..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "" + +#~ msgid "Wiki Pages" +#~ msgstr "Páginas Wiki" + +#~ msgid "Display Method" +#~ msgstr "Método de visualización" + +#~ msgid "Open Page" +#~ msgstr "Abrir página" + +#~ msgid "Section" +#~ msgstr "Sección" + +#~ 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." + +#~ msgid "Wiki History" +#~ msgstr "Historial Wiki" + +#~ msgid "Minor edit" +#~ msgstr "Edición menor" + +#~ msgid "Parent Page" +#~ msgstr "Página padre" + +#~ msgid "Topic, also called Wiki Group" +#~ msgstr "Tema, también denominado Grupo wiki." + +#~ msgid "Wiki Group" +#~ msgstr "Grupo Wiki" + +#~ msgid "History Lines" +#~ msgstr "Líneas historial" + +#~ msgid "Warning !" +#~ msgstr "¡Aviso!" + +#~ msgid "Document Management - Wiki" +#~ msgstr "Gestión de documentos - Wiki" + +#~ msgid "Description" +#~ msgstr "Descripción" + +#~ msgid "Needs Review" +#~ msgstr "Necesita revisión" + +#~ 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." + +#~ msgid "Tree" +#~ msgstr "Árbol" + +#~ msgid "Page Template" +#~ msgstr "Plantilla de página" + +#~ msgid "Keywords" +#~ msgstr "Palabras clave" + +#~ 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." + +#~ msgid "Warning" +#~ msgstr "Advertencia" + +#~ msgid "Want to create a Index on Selected Pages ? " +#~ msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " + +#~ msgid "Group Description" +#~ msgstr "Descripción grupo" + +#~ 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" + +#~ msgid "Want to open a wiki page? " +#~ msgstr "¿Desea abrir una página wiki? " + +#~ msgid "Make Section ?" +#~ msgstr "¿Crear sección?" + +#~ msgid "Text area" +#~ msgstr "Área de texto" + +#~ msgid "Meta Information" +#~ msgstr "Meta informació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" +#~ " " + +#~ msgid "Notes" +#~ msgstr "Notas" + +#~ 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." + +#~ msgid "List" +#~ msgstr "Lista" + +#~ msgid "Created Date" +#~ msgstr "Fecha de creación" + +#~ msgid "All Page Histories" +#~ msgstr "Todos los historiales de páginas" + +#~ msgid "wiki.wiki" +#~ msgstr "wiki.wiki" + +#~ msgid "Define the default behaviour of the menu created on this group" +#~ msgstr "Define el comportamiento por defecto del menú creado en este grupo." + +#~ msgid "wizard.wiki.history.show_diff" +#~ msgstr "asistente.wiki.historial.mostrar_dif" + +#~ msgid "Wiki Id" +#~ msgstr "ID Wiki" + +#~ msgid "Home Page" +#~ msgstr "Página inicial" + +#~ 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." + +#~ msgid "Modification Information" +#~ msgstr "Información modificación" + +#~ msgid "Wiki" +#~ msgstr "Wiki" + +#~ msgid "Configuration" +#~ msgstr "Configuración" + +#~ msgid "Create Index" +#~ msgstr "Crear índice" + +#~ msgid "This is a major edit ?" +#~ msgstr "¿Es ésta una edición mayor?" + +#~ msgid "Wiki Groups" +#~ msgstr "Grupos Wiki" + +#~ msgid "Topic" +#~ msgstr "Tema" + +#~ msgid "Table of Contents" +#~ msgstr "Tabla de contenido" + +#~ msgid "Open Wiki Page" +#~ msgstr "Abrir página wiki" + +#~ msgid "wiz open page" +#~ msgstr "asistente abrir página" + +#~ msgid "Need Review" +#~ msgstr "Necesita revisión" + +#~ msgid "Pages Waiting Review" +#~ msgstr "Páginas esperando revisión" + +#~ msgid "Search Page" +#~ msgstr "Buscar página" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" @@ -488,9 +572,6 @@ msgstr "Buscar página" #~ 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!" @@ -506,9 +587,6 @@ msgstr "Buscar página" #~ msgid "Modifications" #~ msgstr "Modificaciones" -#~ msgid "History" -#~ msgstr "Historial" - #~ msgid "Tags" #~ msgstr "Etiquetas" diff --git a/document_page/i18n/es_VE.po b/document_page/i18n/es_VE.po index 9a70e0ea..4fb1d152 100644 --- a/document_page/i18n/es_VE.po +++ b/document_page/i18n/es_VE.po @@ -5,458 +5,542 @@ 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: 2015-08-03 13:36+0200\n" -"Last-Translator: Carlos @ smile.fr \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:31+0200\n" +"PO-Revision-Date: 2015-08-03 14:31+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: \n" +"Language: es_VE\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: Poedit 1.8.2\n" -"Language: es_VE\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " +msgstr "" +"

    \n" +"Pulse para crear una nueva página web.\n" +"

    \n" +" " -#. 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 +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,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 +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorías" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: field:document.page,parent_id:0 selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoría" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Hijos" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Cerrar" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: field:document.page,content:0 selection:document.page,type:0 +#: field:document.page.history,content:0 +msgid "Content" +msgstr "Contenido" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +msgid "Create Menu" +msgstr "Crear menú" + +#. module: document_page +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: document_page +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Fecha" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "Fecha del último mensaje publicado en el registro." + +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 msgid "Diff" msgstr "Dif." -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" -msgstr "Necesita revisión" +#. 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:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferencia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" -msgstr "Páginas esperando revisión" +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historial del Documento" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" -msgstr "Buscar página" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página de documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historia de página de documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Tipo de documento" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "Seguidores" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar por..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historial" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" +"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " +"directamente en formato html para ser insertada en las vistas kanban." + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "ID" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Si está marcado nuevos mensajes requieren su atención." + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "Es un seguidor" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "Ultimo contenido" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último colaborador" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "Fecha del ultimo mensaje" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Información del menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nombre menú" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "Mensajes" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "Mensajes e historial de comunicación" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Fecha de modificación" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nombre" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historial página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historial de página" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páginas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Historial de páginas" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú padre" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumen" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Plantilla" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"Plantilla que se utilizará como una plantilla de contenido para todas las " +"nuevas páginas de esta categoría." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "No hay cambios en las revisiones." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "Mensajes no leídos" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Asistente crear menú" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "Por ejemplo, Érase una vez..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "" + +#~ msgid "Wiki Pages" +#~ msgstr "Páginas Wiki" + +#~ msgid "Display Method" +#~ msgstr "Método de visualización" + +#~ msgid "Open Page" +#~ msgstr "Abrir página" + +#~ msgid "Section" +#~ msgstr "Sección" + +#~ 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." + +#~ msgid "Wiki History" +#~ msgstr "Historial Wiki" + +#~ msgid "Minor edit" +#~ msgstr "Edición menor" + +#~ msgid "Parent Page" +#~ msgstr "Página padre" + +#~ msgid "Topic, also called Wiki Group" +#~ msgstr "Tema, también denominado Grupo wiki." + +#~ msgid "Wiki Group" +#~ msgstr "Grupo Wiki" + +#~ msgid "History Lines" +#~ msgstr "Líneas historial" + +#~ msgid "Warning !" +#~ msgstr "¡Aviso!" + +#~ msgid "Document Management - Wiki" +#~ msgstr "Gestión de documentos - Wiki" + +#~ msgid "Description" +#~ msgstr "Descripción" + +#~ msgid "Needs Review" +#~ msgstr "Necesita revisión" + +#~ 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." + +#~ msgid "Tree" +#~ msgstr "Árbol" + +#~ msgid "Page Template" +#~ msgstr "Plantilla de página" + +#~ msgid "Keywords" +#~ msgstr "Palabras clave" + +#~ 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." + +#~ msgid "Warning" +#~ msgstr "Advertencia" + +#~ msgid "Want to create a Index on Selected Pages ? " +#~ msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " + +#~ msgid "Group Description" +#~ msgstr "Descripción grupo" + +#~ 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" + +#~ msgid "Want to open a wiki page? " +#~ msgstr "¿Desea abrir una página wiki? " + +#~ msgid "Make Section ?" +#~ msgstr "¿Crear sección?" + +#~ msgid "Text area" +#~ msgstr "Área de texto" + +#~ msgid "Meta Information" +#~ msgstr "Meta informació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" +#~ " " + +#~ msgid "Notes" +#~ msgstr "Notas" + +#~ 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." + +#~ msgid "List" +#~ msgstr "Lista" + +#~ msgid "Created Date" +#~ msgstr "Fecha de creación" + +#~ msgid "All Page Histories" +#~ msgstr "Todos los historiales de páginas" + +#~ msgid "wiki.wiki" +#~ msgstr "wiki.wiki" + +#~ msgid "Define the default behaviour of the menu created on this group" +#~ msgstr "Define el comportamiento por defecto del menú creado en este grupo." + +#~ msgid "wizard.wiki.history.show_diff" +#~ msgstr "asistente.wiki.historial.mostrar_dif" + +#~ msgid "Wiki Id" +#~ msgstr "ID Wiki" + +#~ msgid "Home Page" +#~ msgstr "Página inicial" + +#~ 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." + +#~ msgid "Modification Information" +#~ msgstr "Información modificación" + +#~ msgid "Wiki" +#~ msgstr "Wiki" + +#~ msgid "Configuration" +#~ msgstr "Configuración" + +#~ msgid "Create Index" +#~ msgstr "Crear índice" + +#~ msgid "This is a major edit ?" +#~ msgstr "¿Es ésta una edición mayor?" + +#~ msgid "Wiki Groups" +#~ msgstr "Grupos Wiki" + +#~ msgid "Topic" +#~ msgstr "Tema" + +#~ msgid "Table of Contents" +#~ msgstr "Tabla de contenido" + +#~ msgid "Open Wiki Page" +#~ msgstr "Abrir página wiki" + +#~ msgid "wiz open page" +#~ msgstr "asistente abrir página" + +#~ msgid "Need Review" +#~ msgstr "Necesita revisión" + +#~ msgid "Pages Waiting Review" +#~ msgstr "Páginas esperando revisión" + +#~ msgid "Search Page" +#~ msgstr "Buscar página" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" @@ -488,9 +572,6 @@ msgstr "Buscar página" #~ 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!" @@ -506,9 +587,6 @@ msgstr "Buscar página" #~ msgid "Modifications" #~ msgstr "Modificaciones" -#~ msgid "History" -#~ msgstr "Historial" - #~ msgid "Tags" #~ msgstr "Etiquetas" diff --git a/document_page/i18n/et.po b/document_page/i18n/et.po index a9e1c01b..869d6098 100644 --- a/document_page/i18n/et.po +++ b/document_page/i18n/et.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:31+0200\n" +"PO-Revision-Date: 2015-08-03 14:31+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Estonian \n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: et\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 -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Ülemmenüü" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Muutmise kuupäev" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Loobu" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Sisu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Loo menüü" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Loodud" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Loodud" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Loobu" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Kuupäev" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Erinevus" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Sisu" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menüü" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menüü info" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Menüü nimi" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Lehekülgi" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Muutmise kuupäev" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Lehekülgi" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Ülemmenüü" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Kokkuvõte" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Tiitel" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/fi.po b/document_page/i18n/fi.po index 02142a22..939c46c2 100644 --- a/document_page/i18n/fi.po +++ b/document_page/i18n/fi.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Harri Luuppala \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:31+0200\n" +"PO-Revision-Date: 2015-08-03 14:31+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: fi\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 "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 "Dokumentin sivu" - -#. 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 "Malli" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "käytetään sisältömallina kaikille tämän kategorian uusille sivuille." - -#. 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 "Tyyppi" - -#. 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 "Muuttaja" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "tai" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Sivun tyyppi" - -#. 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 "Dokumentin sivuhistoria" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Sivujen historia" - -#. 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 "Kategoriat" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "Nimi" - -#. 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,write_date:0 -msgid "Modification Date" -msgstr "Muokkauspäivä" - -#. 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 "Valitse tasan yksi tai kaksi historiaversiota vertailuun." - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Sivuhistoria" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Yhteenveto" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "esim. Olipa kerran..." - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Dokumentin historia" - -#. 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 "Sivu" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historia" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Tekijä" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Peruuta" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategoriat" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategoria" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Sisältö" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Luo valikko" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Näytetty sisältö" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Luotu" #. 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 "Varoitus!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Luotu" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Peruuta" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Päivämäärä" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,260 @@ msgid "Diff" msgstr "Erot" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Ero" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Dokumentin historia" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Dokumentin sivu" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Dokumentin sivuhistoria" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Dokumenttityyppi" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Dokumentin sivu" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Ryhmittely.." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historia" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Sisältö" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Viimeisin tiedon lisääjä" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Valikko" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Valikon tiedot" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Valikon nimi" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Sivut" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Muokkauspäivä" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Muuttaja" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nimi" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Sivu" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Sivuhistoria" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Sivuhistoria" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Sivun tyyppi" + +#. 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_page_history +msgid "Pages history" +msgstr "Sivujen historia" + +#. 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,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Yhteenveto" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Malli" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "käytetään sisältömallina kaikille tämän kategorian uusille sivuille." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Otsikko" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tyyppi" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Menun luonti velho" + +#. 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 "Valitse tasan yksi tai kaksi historiaversiota vertailuun." + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "esim. Olipa kerran..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "tai" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Näytetty sisältö" + +#~ msgid "Warning!" +#~ msgstr "Varoitus!" diff --git a/document_page/i18n/fr.po b/document_page/i18n/fr.po index d3cb22b2..4c80345b 100644 --- a/document_page/i18n/fr.po +++ b/document_page/i18n/fr.po @@ -6,215 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Florian Hatat \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:31+0200\n" +"PO-Revision-Date: 2015-08-03 14:31+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: French \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: fr\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 -#: view:document.page:0 -msgid "Name" -msgstr "Nom" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu Parent" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Date de modification" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "Ex: Il était une fois..." - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -230,28 +32,76 @@ msgstr "" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Auteur" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Annuler" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Catégories" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Catégorie" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Enfant" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Contenu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Créer un menu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Contenu affiché" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Créé le" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Créé le" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Annuler" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Date" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -259,14 +109,266 @@ msgid "Diff" msgstr "Comparer" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Différence" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historique du document" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Gestion documentaire de pages Web" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historique du document" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Type de document" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Enfant" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Gestion documentaire de pages Web" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Grouper par ..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historique" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Contenu" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Dernier contributeur" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menu Information" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nom du menu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Pages" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Date de modification" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modifié par" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nom" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Page" + +#. 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 +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historique de la page" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Type de page" + +#. 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_page_history +msgid "Pages history" +msgstr "Historique des pages" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menu Parent" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Sommaire" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Modèle" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, 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,name:0 +msgid "Title" +msgstr "Titre" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Type" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Menu de création d'un wizard" + +#. 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "Ex: Il était une fois..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "ou" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Contenu affiché" + +#~ msgid "Warning!" +#~ msgstr "Avertissement!" #~ msgid "Create web pages" #~ msgstr "Créer des pages Web" diff --git a/document_page/i18n/gl.po b/document_page/i18n/gl.po index 874ecc64..2304f9a1 100644 --- a/document_page/i18n/gl.po +++ b/document_page/i18n/gl.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:31+0200\n" +"PO-Revision-Date: 2015-08-03 14:31+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: gl\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Data de modificación" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Contido" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Crear menú" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Creado o" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creado o" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Diff" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Contido" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menú" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Información do menú" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nome do menú" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Páxinas" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data de modificación" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páxinas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menú principal" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumo" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/hr.po b/document_page/i18n/hr.po index 46df2d59..46da3ea1 100644 --- a/document_page/i18n/hr.po +++ b/document_page/i18n/hr.po @@ -6,214 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Davor Bojkić \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:32+0200\n" +"PO-Revision-Date: 2015-08-03 14:32+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: hr\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 -#: view:document.page:0 -msgid "Name" -msgstr "Naziv" - -#. 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,write_date:0 -msgid "Modification Date" -msgstr "Datum promjene" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "npr. Bilo jednom..." - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -225,28 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Odustani" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategorije" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategorija" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Podređeni" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Sadržaj" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Kreiraj izbornik" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Prikazani sadržaj" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Datum kreiranja" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Datum kreiranja" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Odustani" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -254,14 +105,262 @@ msgid "Diff" msgstr "Razlika" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Razlika" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Povijest dokumenata" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Stranica dokumenata" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Povijest stranica Dokumenata" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Vrsta dokumenta" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Podređeni" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Stranica dokumenata" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Grupiraj po..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Povijest" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Sadržaj" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Zadnji doprinos" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Izbornik" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informacije o izborniku" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Naziv izbornika" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Stranice" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Datum promjene" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Izmjenio" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Naziv" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Stranica" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Povijest stranice" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Povijest stranica" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tip stranice" + +#. 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_page_history +msgid "Pages history" +msgstr "Povijest stranice" + +#. 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,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Sažetak" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Predložak" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Nema izmjena u revizijama" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Naslov" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tip" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Wizard Create Menu" + +#. 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "npr. Bilo jednom..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "ili" + +#~ msgid "Displayed Content" +#~ msgstr "Prikazani sadržaj" + +#~ msgid "Warning!" +#~ msgstr "Upozorenje!" #~ msgid "Create web pages" #~ msgstr "Kreiraj web stranice" diff --git a/document_page/i18n/hu.po b/document_page/i18n/hu.po index e4813c1d..81c3b251 100644 --- a/document_page/i18n/hu.po +++ b/document_page/i18n/hu.po @@ -6,218 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: krnkris \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:32+0200\n" +"PO-Revision-Date: 2015-08-03 14:32+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: hu\n" - -#. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Megjelenített tartalom" - -#. 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 -#: view:document.page:0 -msgid "Name" -msgstr "Név" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Főmenü" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Módosítás dátuma" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "pl. Egyszer volt..." - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -233,23 +32,76 @@ msgstr "" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Szerző" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Mégsem" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategóriák" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategória" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Alárendelt" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Tartalom" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Menü létrehozás" #. 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!" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Létrehozás dátuma" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Mégsem" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Dátum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -257,14 +109,264 @@ msgid "Diff" msgstr "Különbség" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Különbség" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Dokumentumok előzménye" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Documentum oldal" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Dokumantum oldal előzmény" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Dokumentumtípus" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Alárendelt" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Documentum oldal" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Csoportosítás..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Előzmény" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Tartalom" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Utolsó közreműködő" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menü" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menü infrormáció" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Menü" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Oldalok" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Módosítás dátuma" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Által módosítva" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Név" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "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 +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Oldal előzmény" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Oldal típus" + +#. 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_page_history +msgid "Pages history" +msgstr "Oldal előzmény" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Főmenü" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Összegzés" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Sablon" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, 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,name:0 +msgid "Title" +msgstr "Pozíció" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Típus" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Menü létrehozás varázsló" + +#. 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "pl. Egyszer volt..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "vagy" + +#~ msgid "Displayed Content" +#~ msgstr "Megjelenített tartalom" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Warning!" +#~ msgstr "Figyelem!" #~ msgid "Create web pages" #~ msgstr "Weboldalak létrehozása" diff --git a/document_page/i18n/id.po b/document_page/i18n/id.po index fc295353..2cd8a825 100644 --- a/document_page/i18n/id.po +++ b/document_page/i18n/id.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:32+0200\n" +"PO-Revision-Date: 2015-08-03 14:32+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: id\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,74 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +104,247 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/ja.po b/document_page/i18n/ja.po index 2785c3f8..30e8c3d2 100644 --- a/document_page/i18n/ja.po +++ b/document_page/i18n/ja.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:32+0200\n" +"PO-Revision-Date: 2015-08-03 14:32+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Japanese \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: ja\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "最終貢献者" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "著者" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "メニュー" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "ページ履歴" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "コンテンツ" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "グループ化…" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "タイトル" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "メニュー作成ウィザード" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "メニュー情報" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日付" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "差分" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "ページ" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "親メニュー" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "変更日" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "作成日" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "要約" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "著者" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "キャンセル" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "コンテンツ" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "メニューの作成" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "作成日" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "キャンセル" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "日付" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "差分" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "差分" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "グループ化…" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "コンテンツ" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "最終貢献者" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "メニュー" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "メニュー情報" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "メニュー名" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "ページ" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "変更日" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "ページ履歴" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "ページ" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "親メニュー" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "要約" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "タイトル" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "メニュー作成ウィザード" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/ko.po b/document_page/i18n/ko.po index 4b32b97c..e4e6ab0a 100644 --- a/document_page/i18n/ko.po +++ b/document_page/i18n/ko.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:33+0200\n" +"PO-Revision-Date: 2015-08-03 14:33+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Korean \n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: ko\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "저자" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "메뉴" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "컨텐트" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "제목" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "메뉴 정보" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "날짜" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "페이지" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "부모 메뉴" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "수정 날짜" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "생성 날짜" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "요약" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "저자" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "취소" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "컨텐트" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "메뉴 만들기" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "생성 날짜" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "취소" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "날짜" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Diff" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "컨텐트" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "메뉴" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "메뉴 정보" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "메뉴 이름" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "페이지" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "수정 날짜" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "페이지" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "부모 메뉴" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "요약" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "제목" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/lt.po b/document_page/i18n/lt.po index a60670dd..bd8006c7 100644 --- a/document_page/i18n/lt.po +++ b/document_page/i18n/lt.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:33+0200\n" +"PO-Revision-Date: 2015-08-03 14:33+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Modifikavimo data" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autorius" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Atšaukti" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Turinys" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Sukurti meniu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Sukurta" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Sukurta" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Atšaukti" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Skirtumas" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Turinys" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meniu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Meniu informacija" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Meniu pavadinimas" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Puslapiai" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Modifikavimo data" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Puslapiai" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Bazinis meniu" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Santrauka" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Antraštė" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/lv.po b/document_page/i18n/lv.po index 85f96cef..e949b9ae 100644 --- a/document_page/i18n/lv.po +++ b/document_page/i18n/lv.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:33+0200\n" +"PO-Revision-Date: 2015-08-03 14:33+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Latvian \n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: lv\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Izmaiņu Datums" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autors" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Atcelt" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Saturs" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Izveidot Izvēlni" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Izveidots" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Izveidots" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Atcelt" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datums" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Atšķirības" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Atšķirības" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Grupēt pēc..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Saturs" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Pēdējais Papildinājs" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Izvēlne" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Izvēlnes Informācija" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Izvēlnes Nosaukums" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Lapas" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Izmaiņu Datums" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Lapas Vēsture" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Lapas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "VirsIzvēlne" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Kopsavilkums" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Virsraksts" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Izvēlnes Veidošanas Veidnis" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/mk.po b/document_page/i18n/mk.po index 9d0421dc..f8d2044c 100644 --- a/document_page/i18n/mk.po +++ b/document_page/i18n/mk.po @@ -6,214 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Sofce Dimitrijeva \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:33+0200\n" +"PO-Revision-Date: 2015-08-03 14:33+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: ESKON-INZENERING\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: mk\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 -#: view:document.page:0 -msgid "Name" -msgstr "Име" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Мени родител" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Датум на измена" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Креирано на" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Треба да селектиарте минимум една или максимум две ревизии на историја!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Историја на страница" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Резиме" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "на пр. Едно време..." - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -225,28 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Автор" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Откажи" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Категории" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Категорија" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Деца" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Содржина" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Креирај Мени" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Прикажана содржина" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "Предупредување!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Креирано на" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Откажи" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Датум" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -254,14 +105,265 @@ msgid "Diff" msgstr "Разлика" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Разлика" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Историја на документот" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Страница на документ" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Историја на страница на документ" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Тип документ" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Деца" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Страница на документ" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Групирај по..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Историја" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Содржина" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Последен соработник" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Мени" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Мени Информации" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Име на мени" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Страници" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Датум на измена" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Изменето од" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Име" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Страница" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Историја на страница" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Историја на страница" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Тип на страница" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Страници" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Историја на страници" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Мени родител" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Резиме" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Урнек" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"кој ќе биде употребен како урнек за содржина за сите нови страници од оваа " +"категорија." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Нема измени во ревизиите." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Титула" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tип" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Мени Креирање на Волшебник" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "Треба да селектиарте минимум една или максимум две ревизии на историја!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "на пр. Едно време..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "или" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Прикажана содржина" + +#~ msgid "Warning!" +#~ msgstr "Предупредување!" #~ msgid "Create web pages" #~ msgstr "Креирај веб странци" diff --git a/document_page/i18n/mn.po b/document_page/i18n/mn.po index 6618b4f4..4b888fec 100644 --- a/document_page/i18n/mn.po +++ b/document_page/i18n/mn.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: gobi \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:34+0200\n" +"PO-Revision-Date: 2015-08-03 14:34+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Mongolian \n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-01-12 05:48+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: mn\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Ангилал" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Сүүлийн Хувь Нэмэр оруулагч" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "Зохиогч" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Цэс" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Баримтын Хуудас" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Хуудасны Түүх" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "Агуулга" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Бүлэглэх..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Загвар" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Гарчиг" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "Меню үүсгэх харилцах цонх" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "Төрөл" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "эсвэл" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Хуудасны төрөл" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Цэсний мэдээлэл" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "Баримтын Хуудасны Түүх" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "Хуудсуудын Түүх" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Огноо" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "Зөрүү" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Хуудсууд" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Ангилалууд" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "Нэр" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Толгой цэс" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Зассан огноо" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Үүсгэсэн" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Хуудсын Түүх" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Хураангуй" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Зохиогч" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Цуцлах" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Ангилалууд" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Ангилал" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Агуулга" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Цэс үүсгэх" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Цуцлах" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Огноо" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,14 +105,253 @@ msgid "Diff" msgstr "Зөрүү" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Зөрүү" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Баримтын Түүх" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Баримтын Хуудас" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Баримтын Хуудасны Түүх" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Баримтын Хуудас" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" msgstr "" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Бүлэглэх..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Агуулга" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Сүүлийн Хувь Нэмэр оруулагч" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Цэс" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Цэсний мэдээлэл" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Цэсний нэр" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Хуудсууд" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Зассан огноо" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Нэр" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Хуудасны Түүх" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Хуудсын Түүх" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Хуудасны төрөл" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Хуудсууд" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Хуудсуудын Түүх" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Толгой цэс" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Хураангуй" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Загвар" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Гарчиг" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Төрөл" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Меню үүсгэх харилцах цонх" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "эсвэл" + #~ msgid "Create web pages" #~ msgstr "Веб хуудсууд үүсгэх" diff --git a/document_page/i18n/nb.po b/document_page/i18n/nb.po index a5e6c93a..5bc031d4 100644 --- a/document_page/i18n/nb.po +++ b/document_page/i18n/nb.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:34+0200\n" +"PO-Revision-Date: 2015-08-03 14:34+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Norwegian Bokmal \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: nb\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Dato for siste endring" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Forfatter" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Avbryt" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Innhold" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Opprett meny" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Opprettet den" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Opprettet den" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Avbryt" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Dato" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Diff" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Endringer" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Grupper etter..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Innhold" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Siste forfatter" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meny" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Meny informasjon" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Menynavn" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Sider" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Dato for siste endring" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Sidehistorikk" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Sider" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Overordnet meny" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Sammendrag" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Tittel" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Wizard Opprett meny" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/nl.po b/document_page/i18n/nl.po index 9624ed82..147c1589 100644 --- a/document_page/i18n/nl.po +++ b/document_page/i18n/nl.po @@ -6,214 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:34+0200\n" +"PO-Revision-Date: 2015-08-03 14:34+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: nl\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 -#: view:document.page:0 -msgid "Name" -msgstr "Naam" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Hoofdmenu" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Wijzigingsdatum" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "bijv. Op enig moment..." - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -229,28 +32,76 @@ msgstr "" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Auteur" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Annuleren" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorieën" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categorie" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Onderliggende" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Inhoud" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Menu maken" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Weergegeven inhoud" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Aangemaakt op" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Annuleren" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -258,14 +109,265 @@ msgid "Diff" msgstr "Verschil" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Verschil" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Documenthistorie" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Document pagina" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Document pagina historie" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Documenttype" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Onderliggende" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Document pagina" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Groepeer op..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historie" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Inhoud" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Laatste bijdrage" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menu informatie" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Naam menu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Pagina's" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Wijzigingsdatum" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Aangepast door" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Naam" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "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 +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Pagina historie" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Paginatype" + +#. 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_page_history +msgid "Pages history" +msgstr "Pagina historie" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Hoofdmenu" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Samenvatting" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Sjabloon" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Er zijn geen wijzigingen in de revisies." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Titel" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Soort" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Assistent menu maken" + +#. 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "bijv. Op enig moment..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "of" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Weergegeven inhoud" + +#~ msgid "Warning!" +#~ msgstr "Waarschuwing!" #~ msgid "Create web pages" #~ msgstr "Webpagina's aanmaken" diff --git a/document_page/i18n/nl_BE.po b/document_page/i18n/nl_BE.po index 9c87e90b..fb57468a 100644 --- a/document_page/i18n/nl_BE.po +++ b/document_page/i18n/nl_BE.po @@ -5,437 +5,397 @@ 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: 2015-08-03 13:36+0200\n" -"Last-Translator: Fabien (Open ERP) \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:34+0200\n" +"PO-Revision-Date: 2015-08-03 14:34+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: \n" +"Language: nl_BE\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: Poedit 1.8.2\n" -"Language: nl_BE\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +#, fuzzy +msgid "" +"

    \n" +" Click to create a new web page.\n" +"

    \n" +" " msgstr "" +"

    \n" +" Klik voor het aanmaken van een web pagina.\n" +"

    \n" +" " -#. 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 +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +#, fuzzy msgid "Author" -msgstr "" +msgstr "Auteur" -#. 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: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#, fuzzy +msgid "Cancel" +msgstr "Annuleren" -#. module: wiki -#: field:wiki.groups,menu_id:0 -msgid "Menu" -msgstr "" +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +#, fuzzy +msgid "Categories" +msgstr "Categorieën" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: field:document.page,parent_id:0 selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#, fuzzy +msgid "Category" +msgstr "Categorie" -#. module: wiki -#: help:wiki.wiki,toc:0 -msgid "Indicates that this pages have a table of contents or not" -msgstr "" +#. module: document_page +#: field:document.page,child_ids:0 +#, fuzzy +msgid "Children" +msgstr "Onderliggende" -#. 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 +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: field:document.page,content:0 selection:document.page,type:0 +#: field:document.page.history,content:0 +#, fuzzy +msgid "Content" +msgstr "Inhoud" -#. 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 +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#, fuzzy msgid "Create Menu" +msgstr "Menu maken" + +#. module: document_page +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Aangemaakt op" + +#. module: document_page +#: field:document.page,create_date:0 +#: field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +#, fuzzy +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: document_page +#: field:document.page.history,create_date:0 +#, fuzzy +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." 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 +#. module: document_page +#: field:wizard.document.page.history.show_diff,diff:0 +#, fuzzy msgid "Diff" +msgstr "Verschil" + +#. 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:document_page.view_wiki_show_diff +#, fuzzy +msgid "Difference" +msgstr "Verschil" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +#, fuzzy +msgid "Document History" +msgstr "Documenthistorie" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +#, fuzzy +msgid "Document Page" +msgstr "Document pagina" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +#, fuzzy +msgid "Document Page History" +msgstr "Document pagina historie" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#, fuzzy +msgid "Document Type" +msgstr "Documenttype" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Documents" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 -msgid "Need Review" +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review -msgid "Pages Waiting Review" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#, fuzzy +msgid "Group By..." +msgstr "Groepeer op..." + +#. module: document_page +#: field:document.page,history_ids:0 +#, fuzzy +msgid "History" +msgstr "Historie" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -msgid "Search Page" +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +#, fuzzy +msgid "Last Contributor" +msgstr "Laatste bijdrage" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +#, fuzzy +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +#, fuzzy +msgid "Menu Information" +msgstr "Menu informatie" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +#, fuzzy +msgid "Menu Name" +msgstr "Naam menu" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +#, fuzzy +msgid "Modification Date" +msgstr "Wijzigingsdatum" + +#. module: document_page +#: field:document.page.history,create_uid:0 +#, fuzzy +msgid "Modified By" +msgstr "Aangepast door" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#, fuzzy +msgid "Name" +msgstr "Naam" + +#. module: document_page +#: field:document.page.history,page_id:0 +#, fuzzy +msgid "Page" +msgstr "Pagina" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +#, fuzzy +msgid "Page History" +msgstr "Pagina geschiedenis" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +#, fuzzy +msgid "Page history" +msgstr "Pagina historie" + +#. module: document_page +#: help:document.page,type:0 +#, fuzzy +msgid "Page type" +msgstr "Paginatype" + +#. 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 +#, fuzzy +msgid "Pages" +msgstr "Pagina's" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +#, fuzzy +msgid "Pages history" +msgstr "Pagina historie" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +#, fuzzy +msgid "Parent Menu" +msgstr "Hoofdmenu" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#, fuzzy +msgid "Summary" +msgstr "Samenvatting" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Template" +msgstr "Sjabloon" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, fuzzy, python-format +msgid "There are no changes in revisions." +msgstr "Er zijn geen wijzigingen in de revisies." + +#. module: document_page +#: field:document.page,name:0 +#, fuzzy +msgid "Title" +msgstr "Titel" + +#. module: document_page +#: field:document.page,type:0 +#, fuzzy +msgid "Type" +msgstr "Soort" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +#, fuzzy +msgid "Wizard Create Menu" +msgstr "Assistent menu maken" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, fuzzy, 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "e.g. Once upon a time..." +msgstr "bijv. Op enig moment..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" 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 !" +#~ "De objectnaam moet beginnen met x_ en mag geen speciale karakters " +#~ "bevatten !" diff --git a/document_page/i18n/pl.po b/document_page/i18n/pl.po index a43b0b66..371a3768 100644 --- a/document_page/i18n/pl.po +++ b/document_page/i18n/pl.po @@ -6,213 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:34+0200\n" +"PO-Revision-Date: 2015-08-03 14:34+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: pl\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 -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. 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,write_date:0 -msgid "Modification Date" -msgstr "Data modyfikacji" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -224,28 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Anuluj" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategorie" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategoria" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Podrzędne" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Zawartość" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Utwórz menu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Wyświetlana zawartość" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Utworzono" #. 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 !" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Utworzono" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Anuluj" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,14 +105,261 @@ msgid "Diff" msgstr "Różnice" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Różnica" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Historia Dokumentu" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Strona dokumentu" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Historia strony dokumentu" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Typ dokumentu" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Podrzędne" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Strona dokumentu" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Grupuj wg..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historia" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Zawartość" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Ostatni kontrybutor" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informacja o menu" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nazwa menu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Strony" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data modyfikacji" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Zmodyfikowane przez" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Strona" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Historia strony" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Historia strony" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Typ strony" + +#. 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_page_history +msgid "Pages history" +msgstr "Historia strony" + +#. 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,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Podsumowanie" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Szablon" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Brak zmian w wersjach" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Tytuł" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Typ" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "Musisz wybrać minimum jedną a maksymalnie dwie wersje historii !" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "lub" + +#~ msgid "Displayed Content" +#~ msgstr "Wyświetlana zawartość" + +#~ msgid "Warning!" +#~ msgstr "Ostrzeżenie !" #~ msgid "Create web pages" #~ msgstr "Twórz strony web" diff --git a/document_page/i18n/pt.po b/document_page/i18n/pt.po index 6a0e18b8..1fd76af6 100644 --- a/document_page/i18n/pt.po +++ b/document_page/i18n/pt.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Rui Franco (multibase.pt) \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:34+0200\n" +"PO-Revision-Date: 2015-08-03 14:34+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: pt\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 -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. 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,write_date:0 -msgid "Modification Date" -msgstr "Data de Modificação" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,44 +28,337 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorias" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoria" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Conteúdo" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Criar Menu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Criado em" + +#. module: document_page +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." 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 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferença" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Histórico de documentos" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página do documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Tipo de documento" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Página do documento" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" msgstr "" +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar por..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Histórico" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Conteúdo" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último contribuinte" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informação do Menu" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nome do Menu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Páginas" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data de Modificação" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Histórico da página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páginas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. 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,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumo" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Modelo" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Não há alterações de versão" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. 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 +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "ou" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Warning!" +#~ msgstr "Aviso!" + #~ msgid "Create web pages" #~ msgstr "Cria páginas na internet" diff --git a/document_page/i18n/pt_BR.po b/document_page/i18n/pt_BR.po index 4904516a..d0adbc24 100644 --- a/document_page/i18n/pt_BR.po +++ b/document_page/i18n/pt_BR.po @@ -6,214 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:35+0200\n" +"PO-Revision-Date: 2015-08-03 14:35+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Brazilian Portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: pt_BR\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 -#: view:document.page:0 -msgid "Name" -msgstr "Nome" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Menu Superior" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de Modificação" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "ex. Era uma vez...." - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -229,28 +32,76 @@ msgstr "" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorias" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categoria" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Filhos" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Conteúdo" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Criar Menu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Conteúdo Exibido" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Criado em" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Criado em" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Cancelar" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Data" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -258,14 +109,265 @@ msgid "Diff" msgstr "Diferença" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferença" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Histórico de Documentos" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Página do Documento" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Histórico da Página de Documento" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Tipo de Documento" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Filhos" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Página do Documento" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Agrupar Por..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Histórico" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Conteúdo" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Último Contribuidor(a)" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informação do Menu" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nome do Menu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Páginas" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data de Modificação" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificado Por" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nome" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Histórico da Página" + +#. 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 +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipo de página" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Páginas" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "Histórico das páginas" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Menu Superior" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Resumo" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Modelo" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Não há mudanças nas revisões." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Título" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. 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 +#: 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "ex. Era uma vez...." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "ou" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Conteúdo Exibido" + +#~ msgid "Warning!" +#~ msgstr "Atenção!" #~ msgid "Create web pages" #~ msgstr "Criar páginas web" diff --git a/document_page/i18n/ro.po b/document_page/i18n/ro.po index cf7ce32b..6bf3c12b 100644 --- a/document_page/i18n/ro.po +++ b/document_page/i18n/ro.po @@ -6,214 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: ERPSystems.ro \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:35+0200\n" +"PO-Revision-Date: 2015-08-03 14:35+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: ro\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 -#: view:document.page:0 -msgid "Name" -msgstr "Nume" - -#. 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,write_date:0 -msgid "Modification Date" -msgstr "Data modificării" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "de exemplu A fost odata..." - -#. 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -225,28 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Anulează" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Categorii" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Categorie" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Subordonati" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Conţinut" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Creează meniu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Continut Afisat" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Creat in" #. 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Creat in" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Anulează" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Dată" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -254,14 +105,265 @@ msgid "Diff" msgstr "Diferit" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Diferenţă" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Istoric Documente" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Pagina Documentului" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Istoric Pagini Documente" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Tipul documentului" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Subordonati" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Pagina Documentului" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Grupează după..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Istoric" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Conţinut" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Ultimul colaborator" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meniu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informaţii meniu" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Nume Meniu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Pagini" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Data modificării" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Modificat de" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Nume" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Pagina" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Istoric pagină" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Istoric pagina" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Tipul de pagina" + +#. 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_page_history +msgid "Pages history" +msgstr "Istoric pagini" + +#. 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,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Rezumat" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Sablon" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template 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 +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Nu exista modificari in revizuiri." + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Titlu" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Tip" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Wizard Creează meniul" + +#. 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 +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "de exemplu A fost odata..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "sau" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.pagina.istoric.arata_dif" + +#~ msgid "Displayed Content" +#~ msgstr "Continut Afisat" + +#~ msgid "Warning!" +#~ msgstr "Avertizare!" #~ msgid "Create web pages" #~ msgstr "Creeaza pagini web" diff --git a/document_page/i18n/ru.po b/document_page/i18n/ru.po index 57831f19..84bc09b3 100644 --- a/document_page/i18n/ru.po +++ b/document_page/i18n/ru.po @@ -6,214 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Chertykov Denis \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:35+0200\n" +"PO-Revision-Date: 2015-08-03 14:35+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: ru\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 -#: view:document.page:0 -msgid "Name" -msgstr "Название" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Родительское меню" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата изменения" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Создан" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Вы должны выбрать одну или две версии в истории!" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "История страницы" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Итого" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "например Однажды, давным-давно..." - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -229,28 +32,76 @@ msgstr "" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Автор" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Отмена" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Категории" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Категория" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Потомки" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Содержание" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Создать меню" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Отображаемое содержимое" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "Внимание!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Создан" #. module: document_page -#: view:document.page.create.menu:0 view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Отмена" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Дата" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -258,14 +109,265 @@ msgid "Diff" msgstr "Различие" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Различие" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "История документа" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Страница документа" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "История страницы документа" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Тип документа" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Потомки" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Страница документа" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Группировать по .." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "История" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Содержание" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Последний корректор" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Меню" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Информация меню" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Название меню" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Страницы" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Дата изменения" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Изменено" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Название" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Страница" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "История страницы" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "История страницы" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Тип страниц" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Страницы" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "История страницы" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Родительское меню" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Итого" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Шаблон" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" +"будет использоваться как шаблон содержимого для всех новых страниц этой " +"категории." + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "Нет изменений" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Заголовок" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Тип" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Помощник создания меню" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "Вы должны выбрать одну или две версии в истории!" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "например Однажды, давным-давно..." + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "или" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Отображаемое содержимое" + +#~ msgid "Warning!" +#~ msgstr "Внимание!" #~ msgid "Create web pages" #~ msgstr "Создание веб-страниц" diff --git a/document_page/i18n/sk.po b/document_page/i18n/sk.po index 90d2a3e0..b36dce14 100644 --- a/document_page/i18n/sk.po +++ b/document_page/i18n/sk.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:35+0200\n" +"PO-Revision-Date: 2015-08-03 14:35+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: sk\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Dátum zmeny" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Zrušiť" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Obsah" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Vytvoriť menu" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Vytvorené" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Vytvorené" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Zrušiť" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Dátum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Rozdiel" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Rozdiel" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Zoskupiť podľa..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Obsah" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Posledný prispievateľ" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Informácie menu" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Názov menu" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Stránky" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Dátum zmeny" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "História stránky" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Stránky" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Nadradené menu" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Zhrnutie" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Názov" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Sprievodca vytvorením ponuky" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/sq.po b/document_page/i18n/sq.po index ba3da33d..025092c1 100644 --- a/document_page/i18n/sq.po +++ b/document_page/i18n/sq.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:36+0200\n" +"PO-Revision-Date: 2015-08-03 14:36+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: sq\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,74 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +104,247 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/sr.po b/document_page/i18n/sr.po index fff296a6..0b3963ea 100644 --- a/document_page/i18n/sr.po +++ b/document_page/i18n/sr.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:36+0200\n" +"PO-Revision-Date: 2015-08-03 14:36+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Serbian \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: sr\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Datum Promene" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Otkazati" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Sadržaj" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Kreiraj Meni" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Kreiran" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Kreiran" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Otkazati" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Razlika" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Sadržaj" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meni" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Meni Informacije" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Naziv Menija" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Strane" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Datum Promene" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Strane" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Roditeljski Meni" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Sumarno" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Naslov" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/sr@latin.po b/document_page/i18n/sr@latin.po index fa14b7dc..999a2ac6 100644 --- a/document_page/i18n/sr@latin.po +++ b/document_page/i18n/sr@latin.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:36+0200\n" +"PO-Revision-Date: 2015-08-03 14:36+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Serbian Latin \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: sr@latin\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "Datum Promene" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Autor" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Otkazati" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Sadržaj" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Kreiraj Meni" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Kreiran" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Kreiran" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Otkazati" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Razlika" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Sadržaj" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meni" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Meni Informacije" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Naziv Menija" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Strane" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Datum Promene" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Strane" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Roditeljski Meni" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Sumarno" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Naslov" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/sv.po b/document_page/i18n/sv.po index 8c250294..c8160c6c 100644 --- a/document_page/i18n/sv.po +++ b/document_page/i18n/sv.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Anders Wallenquist \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:36+0200\n" +"PO-Revision-Date: 2015-08-03 14:36+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-04-01 06:52+0000\n" "X-Generator: Poedit 1.8.2\n" -"Language: sv\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 "Senaste författare" - -#. 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 "Dokumentsida" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Sidhistorik" - -#. 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 "Gruppera på..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Mall" - -#. 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 "Skapa guide-meny" - -#. 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 "Ändrad av" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "eller" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "Sidtyp" - -#. 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 "Dokumentets sidhistorik" - -#. 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 "Skillnad" - -#. 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 "Kategorier" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "Namn" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Huvudmeny" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Ändringsdatum" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -msgid "Document History" -msgstr "Dokumenthistorik" - -#. 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 "Sida" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historia" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page @@ -227,29 +32,76 @@ msgstr "" " " #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Författare" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Avbryt" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "Kategorier" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "Kategori" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "Underordnade" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Innehåll" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Skapa meny" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Visa innehåll" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Skapad den" #. 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 "Varning!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Skapad den" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Avbryt" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Datum" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -257,11 +109,259 @@ msgid "Diff" msgstr "Skillnad" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Skillnad" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Dokumenthistorik" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "Dokumentsida" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "Dokumentets sidhistorik" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "Dokumenttyp" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Underordnade" +#: view:document.page:document_page.view_category_form +#, fuzzy +msgid "Documents" +msgstr "Dokumentsida" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Gruppera på..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "Historia" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Innehåll" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Senaste författare" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Meny" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menyinformation" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Menynamn" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Sidor" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Ändringsdatum" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "Ändrad av" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Namn" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "Sida" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Sidhistorik" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "Sidtyp" + +#. 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_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Huvudmeny" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Sammanfattning" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "Mall" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Rubrik" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "Typ" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Skapa guide-meny" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "eller" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" + +#~ msgid "Displayed Content" +#~ msgstr "Visa innehåll" + +#~ msgid "Warning!" +#~ msgstr "Varning!" diff --git a/document_page/i18n/tlh.po b/document_page/i18n/tlh.po index 0a84d385..ca9b7620 100644 --- a/document_page/i18n/tlh.po +++ b/document_page/i18n/tlh.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:37+0200\n" +"PO-Revision-Date: 2015-08-03 14:37+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Klingon \n" +"Language: tlh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: tlh\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,74 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +msgid "Created by" 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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +104,247 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: field:document.page,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/uk.po b/document_page/i18n/uk.po index 27609065..f4214481 100644 --- a/document_page/i18n/uk.po +++ b/document_page/i18n/uk.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:37+0200\n" +"PO-Revision-Date: 2015-08-03 14:37+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: uk\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Меню" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "Вміст" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Заголовок" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "Інформація Меню" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "Сторінки" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Батьківське Меню" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата Зміни" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "Створено" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "Підсумок" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Автор" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Скасувати" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Вміст" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "Створити Меню" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Створено" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "Скасувати" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Дата" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,249 @@ msgid "Diff" msgstr "Відмінність" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Вміст" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Меню" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Інформація Меню" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "Назва Меню" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Сторінки" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "Дата Зміни" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Сторінки" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Батьківське Меню" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "Підсумок" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Заголовок" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/vi.po b/document_page/i18n/vi.po index 9f4e9588..5ed4aa96 100644 --- a/document_page/i18n/vi.po +++ b/document_page/i18n/vi.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:37+0200\n" +"PO-Revision-Date: 2015-08-03 14:37+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Vietnamese \n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: vi\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 -#: view:document.page:0 -msgid "Name" -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,write_date:0 -msgid "Modification Date" -msgstr "" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,28 +28,75 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "Tác giả" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "Nội dung" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +msgstr "Tạo trên" #. 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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "Tạo trên" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "Ngày" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." msgstr "" #. module: document_page @@ -253,11 +105,249 @@ msgid "Diff" msgstr "" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Khác biệt" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "Nội dung" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "Người đóng góp cuối" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "Trình đơn" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Thông tin Trình đơn" + +#. 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,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "Các trang" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Lịch sử Trang" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "Các trang" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Trình đơn cha" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "Tiêu đề" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" msgstr "" diff --git a/document_page/i18n/zh_CN.po b/document_page/i18n/zh_CN.po index 077a7185..4aa69f29 100644 --- a/document_page/i18n/zh_CN.po +++ b/document_page/i18n/zh_CN.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:37+0200\n" +"PO-Revision-Date: 2015-08-03 14:37+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Chinese (Simplified) \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: zh_CN\n" - -#. module: document_page -#: view:document.page:0 field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "类别" - -#. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "最近的贡献者" - -#. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "作者" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "菜单" - -#. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "页面编辑日志" - -#. module: document_page -#: view:document.page:0 field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 -msgid "Content" -msgstr "内容" - -#. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "分组..." - -#. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "模版" - -#. module: document_page -#: view:document.page:0 -msgid "that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "标题" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "向导创建菜单" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "类型" - -#. module: document_page -#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff -msgid "wizard.document.page.history.show_diff" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "修改者" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "or" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:0 -msgid "Menu Information" -msgstr "菜单信息" - -#. module: document_page -#: view:document.page.history:0 -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:129 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日期" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values -#: view:wizard.document.page.history.show_diff:0 -msgid "Difference" -msgstr "差异" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "页面" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "分类" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "上级菜单" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "修改日期" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "创建在" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "摘要" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,44 +28,332 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "作者" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "取消" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "分类" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "类别" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "内容" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "创建菜单" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "显示内容" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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!" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "创建在" + +#. module: document_page +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "日期" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." 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 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "差异" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" msgstr "" +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "分组..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "历史" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "内容" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "最近的贡献者" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "菜单" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "菜单信息" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "菜单名" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "页面" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "修改日期" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "修改者" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "页面编辑日志" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "页面" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "上级菜单" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "摘要" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "模版" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "标题" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "类型" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "向导创建菜单" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "" + +#~ msgid "Displayed Content" +#~ msgstr "显示内容" + #~ msgid "Create web pages" #~ msgstr "创建网页" diff --git a/document_page/i18n/zh_TW.po b/document_page/i18n/zh_TW.po index 351b2f39..a6f8df62 100644 --- a/document_page/i18n/zh_TW.po +++ b/document_page/i18n/zh_TW.po @@ -6,212 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-08-03 14:38+0200\n" +"PO-Revision-Date: 2015-08-03 14:38+0200\n" +"Last-Translator: Matjaz Mozetic \n" "Language-Team: Chinese (Traditional) \n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Poedit 1.8.2\n" -"Last-Translator: \n" -"Language: zh_TW\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 -#: view:document.page:0 -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "上級選單" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "修改日期" - -#. module: document_page -#: field:document.page,create_date:0 -msgid "Created on" -msgstr "建立於" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "摘要" - -#. module: document_page -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: 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 #: model:ir.actions.act_window,help:document_page.action_page @@ -223,29 +28,76 @@ msgid "" msgstr "" #. module: document_page -#: view:document.page.create.menu:0 +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,create_uid:0 +msgid "Author" +msgstr "作者" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "刪除" + +#. module: document_page +#: view:document.page:document_page.view_category_tree +#: model:ir.ui.menu,name:document_page.menu_category +msgid "Categories" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +msgid "Category" +msgstr "" + +#. module: document_page +#: field:document.page,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document_page +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form field:document.page,content:0 +#: selection:document.page,type:0 field:document.page.history,content:0 +msgid "Content" +msgstr "內容" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" msgstr "建立選單" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "" +#: field:document.page.create.menu,create_uid:0 +#: field:wizard.document.page.history.show_diff,create_uid:0 +#, fuzzy +msgid "Created by" +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 "" +#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 +#: field:wizard.document.page.history.show_diff,create_date:0 +msgid "Created on" +msgstr "建立於" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "刪除" +#: field:document.page.history,create_date:0 +msgid "Date" +msgstr "日期" + +#. module: document_page +#: help:document.page,message_last_post:0 +msgid "Date of the last message posted on the record." +msgstr "" #. module: document_page #: field:wizard.document.page.history.show_diff,diff:0 @@ -253,11 +105,252 @@ msgid "Diff" msgstr "差異" #. module: document_page -#: view:document.page:0 +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "差異" + +#. module: document_page +#: view:document.page.history:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +#: view:document.page:document_page.view_wiki_tree +#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model,name:document_page.model_document_page +msgid "Document Page" +msgstr "" + +#. module: document_page +#: view:document.page.history:document_page.wiki_history_form +#: model:ir.model,name:document_page.model_document_page_history +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter msgid "Document Type" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" +#: view:document.page:document_page.view_category_form +msgid "Documents" msgstr "" + +#. module: document_page +#: field:document.page,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +msgid "Group By..." +msgstr "分類方式..." + +#. module: document_page +#: field:document.page,history_ids:0 +msgid "History" +msgstr "" + +#. module: document_page +#: help:document.page,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is directly in " +"html format in order to be inserted in kanban views." +msgstr "" + +#. module: document_page +#: field:document.page,id:0 field:document.page.create.menu,id:0 +#: field:document.page.history,id:0 +#: field:wizard.document.page.history.show_diff,id:0 +msgid "ID" +msgstr "" + +#. module: document_page +#: help:document.page,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: field:document.page,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_wiki_form +#, fuzzy +msgid "Last Content" +msgstr "內容" + +#. module: document_page +#: view:document.page:document_page.view_wiki_filter +#: field:document.page,write_uid:0 +msgid "Last Contributor" +msgstr "最後的貢獻者" + +#. module: document_page +#: field:document.page,message_last_post:0 +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_uid:0 +#: field:document.page.history,write_uid:0 +#: field:wizard.document.page.history.show_diff,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,write_date:0 +#: field:document.page.history,write_date:0 +#: field:wizard.document.page.history.show_diff,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: field:document.page,menu_id:0 +msgid "Menu" +msgstr "選單" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "選單資訊" + +#. module: document_page +#: field:document.page.create.menu,menu_name:0 +msgid "Menu Name" +msgstr "選單名稱" + +#. module: document_page +#: field:document.page,message_ids:0 +#, fuzzy +msgid "Messages" +msgstr "頁面" + +#. module: document_page +#: help:document.page,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: field:document.page,write_date:0 +msgid "Modification Date" +msgstr "修改日期" + +#. module: document_page +#: field:document.page.history,create_uid:0 +msgid "Modified By" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +#: view:document.page:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: field:document.page.history,page_id:0 +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "頁面歷史記錄" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: help:document.page,type:0 +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "頁面" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 +msgid "Parent Menu" +msgstr "上級選單" + +#. module: document_page +#: field:document.page,message_summary:0 field:document.page.history,summary:0 +msgid "Summary" +msgstr "摘要" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:175 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: field:document.page,name:0 +msgid "Title" +msgstr "標題" + +#. module: document_page +#: field:document.page,type:0 +msgid "Type" +msgstr "類型" + +#. module: document_page +#: field:document.page,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "嚮導創建選單" + +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#, python-format +msgid "You need to select minimum one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: view:document.page:document_page.view_category_form +#: view:document.page:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: view:document.page.create.menu:document_page.view_wiki_create_menu +msgid "or" +msgstr "" + +#~ msgid "wizard.document.page.history.show_diff" +#~ msgstr "wizard.document.page.history.show_diff" From 72e8923c629478c54ad0bcf211327ef9966cd3b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 10:00:24 +0200 Subject: [PATCH 23/52] [UPD] prefix versions with 8.0 --- document_page/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 7b9d700a..e11755ab 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -21,7 +21,7 @@ { 'name': 'Document Page', - 'version': '1.0.1', + 'version': '8.0.1.0.1', 'category': 'Knowledge Management', 'description': """ Pages From 32c8d1fb785200701f656acf5850bc7ef30d6999 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 03:16:56 +0200 Subject: [PATCH 24/52] [MIG] Make modules uninstallable --- document_page/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index e11755ab..602cee55 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -48,7 +48,7 @@ Web pages 'test': [ 'test/document_page_test00.yml' ], - 'installable': True, + 'installable': False, 'auto_install': False, 'images': [], 'css': ['static/src/css/document_page.css'], From 55ccba51398ed8eaca83a505e6cb1614f76059e5 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Thu, 22 Oct 2015 02:37:37 -0400 Subject: [PATCH 25/52] [ADD] Document_page --- document_page/README.rst | 90 +++++++++++++++++++ document_page/__init__.py | 3 +- document_page/__openerp__.py | 23 ++--- .../document_page.xml} | 8 +- .../document_page.xml} | 4 +- document_page/models/__init__.py | 23 +++++ document_page/{ => models}/document_page.py | 61 +++---------- document_page/models/document_page_history.py | 72 +++++++++++++++ .../security/document_page_security.xml | 4 +- .../document_page.xml} | 7 +- document_page/wizard/__init__.py | 3 +- .../wizard/document_page_create_menu.py | 13 +-- ...view.xml => document_page_create_menu.xml} | 4 +- .../wizard/document_page_show_diff.py | 8 +- ...f_view.xml => document_page_show_diff.xml} | 4 +- 15 files changed, 235 insertions(+), 92 deletions(-) create mode 100644 document_page/README.rst rename document_page/{document_page_data.xml => data/document_page.xml} (96%) rename document_page/{document_page_demo.xml => demo/document_page.xml} (99%) create mode 100644 document_page/models/__init__.py rename document_page/{ => models}/document_page.py (71%) create mode 100644 document_page/models/document_page_history.py rename document_page/{document_page_view.xml => views/document_page.xml} (99%) rename document_page/wizard/{document_page_create_menu_view.xml => document_page_create_menu.xml} (98%) rename document_page/wizard/{document_page_show_diff_view.xml => document_page_show_diff.xml} (98%) diff --git a/document_page/README.rst b/document_page/README.rst new file mode 100644 index 00000000..a62b1ce3 --- /dev/null +++ b/document_page/README.rst @@ -0,0 +1,90 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============= +Document Page +============= + +This module allows you to write web pages for internal documentation. + +Installation +============ + +This module depends on module knowledge. So make sure to have available it in your addons list + +Configuration +============= + +No configuration required + +Usage +===== + +To use this module, you need to: +* Go to Knowledge menu +* Click on Categories to create the document's category you need with the template +* Click on Pages to create pages and select the previous category to use the template + + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/118/9.0 + +Known issues / Roadmap +====================== + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here `_. + +Credits +======= + +Contributors +------------ + +* Odoo SA +* Savoir-faire Linux +* Gervais Naoussi + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. + +Changelog +--------- + +v 9.0.1.0.0 + +Creation of folders models, views, data and demo +document_page_view.xml moved to views and renamed to document_page +document_page_data.xml moved to data and renamed to document_page +document_page_demo.xml moved to demo and renamed to document_page +document_page.py moved to models and renamed to document_page + +Module models initialise by the creation of the file __init__.py + +wizard file reorganized +folder wizard created +document_page_create_menu.py and document_page_create_show_diff.py moved to wizard +document_page_create_menu_view.xml moved to document_page_create_menu.xml +document_page_create_show_diff_view.xml en document_page_create_show_diff.xml + + +__openerp_.py et __init__.py file edited in order to reflect the module organization diff --git a/document_page/__init__.py b/document_page/__init__.py index d11fab84..d8204cfc 100644 --- a/document_page/__init__.py +++ b/document_page/__init__.py @@ -1,3 +1,4 @@ +"""Import of other document page submodule.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -18,5 +19,5 @@ # along with this program. If not, see . # ############################################################################## -from . import document_page +from . import models from . import wizard diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 602cee55..8f7f0313 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -1,3 +1,4 @@ +"""Document Page configuration's file.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -21,35 +22,29 @@ { 'name': 'Document Page', - 'version': '8.0.1.0.1', + 'version': '9.0.1.0.0', 'category': 'Knowledge Management', - 'description': """ -Pages -===== -Web pages - """, - 'author': ['OpenERP SA'], + 'author': 'OpenERP SA, Odoo Community Association (OCA)', 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ - 'knowledge', 'mail', + 'knowledge', ], 'data': [ - 'wizard/document_page_create_menu_view.xml', - 'wizard/document_page_show_diff_view.xml', - 'document_page_view.xml', + 'wizard/document_page_create_menu.xml', + 'wizard/document_page_show_diff.xml', + 'views/document_page.xml', 'security/document_page_security.xml', 'security/ir.model.access.csv', ], 'demo': [ - 'document_page_demo.xml' + 'demo/document_page.xml' ], 'test': [ 'test/document_page_test00.yml' ], - 'installable': False, + 'installable': True, 'auto_install': False, - 'images': [], 'css': ['static/src/css/document_page.css'], } diff --git a/document_page/document_page_data.xml b/document_page/data/document_page.xml similarity index 96% rename from document_page/document_page_data.xml rename to document_page/data/document_page.xml index 1cef6569..866e61ff 100644 --- a/document_page/document_page_data.xml +++ b/document_page/data/document_page.xml @@ -1,5 +1,5 @@ - + The OpenERP wiki @@ -8,8 +8,8 @@ 1 Initial Page ==The OpenERP wiki== - -[[File:http://www.openerp.com/sites/all/themes/openerp/logo.png OpenERP]] + +[[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 @@ -38,4 +38,4 @@ FAQs, quality manuals, technical references, etc. - + diff --git a/document_page/document_page_demo.xml b/document_page/demo/document_page.xml similarity index 99% rename from document_page/document_page_demo.xml rename to document_page/demo/document_page.xml index c94054e7..8e6d2eca 100644 --- a/document_page/document_page_demo.xml +++ b/document_page/demo/document_page.xml @@ -1,5 +1,5 @@ - + - + diff --git a/document_page/models/__init__.py b/document_page/models/__init__.py new file mode 100644 index 00000000..cba5781f --- /dev/null +++ b/document_page/models/__init__.py @@ -0,0 +1,23 @@ +"""Data's models registration.""" +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## +from . import document_page +from . import document_page_history diff --git a/document_page/document_page.py b/document_page/models/document_page.py similarity index 71% rename from document_page/document_page.py rename to document_page/models/document_page.py index 21da2770..b20ca6a3 100644 --- a/document_page/document_page.py +++ b/document_page/models/document_page.py @@ -1,3 +1,4 @@ +"""Document model.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -19,13 +20,14 @@ # ############################################################################## import logging -import difflib -from openerp import models, fields, api, _ +from openerp import models, fields, api _logger = logging.getLogger(__name__) -class document_page(models.Model): +class DocumentPage(models.Model): + """This class is use to manage Document.""" + _name = "document.page" _inherit = ['mail.thread'] _description = "Document Page" @@ -99,6 +101,7 @@ class document_page(models.Model): ) def _get_page_index(self, page, link=True): + """Return the index of a document.""" index = [] for subpage in page.child_ids: index += ["
  • " + self._get_page_index(subpage) + @@ -112,6 +115,7 @@ class document_page(models.Model): return r def _get_display_content(self): + """Return the content of a document.""" for page in self: if page.type == "category": display_content = self._get_page_index(page, link=False) @@ -121,11 +125,13 @@ class document_page(models.Model): @api.onchange("parent_id") def do_set_content(self): + """We Set it the right content to the new parent.""" if self.parent_id and not self.content: if self.parent_id.type == "category": self.content = self.parent_id.content def create_history(self, page_id, content): + """Create the first history of a newly created document.""" history = self.env['document.page.history'] return history.create({ "content": content, @@ -134,7 +140,8 @@ class document_page(models.Model): @api.multi def write(self, vals): - result = super(document_page, self).write(vals) + """Write the content and set the history.""" + result = super(DocumentPage, self).write(vals) content = vals.get('content') if content: for page in self: @@ -144,51 +151,9 @@ class document_page(models.Model): @api.model @api.returns('self', lambda value: value.id) def create(self, vals): - page_id = super(document_page, self).create(vals) + """Create the first history of a document.""" + page_id = super(DocumentPage, self).create(vals) content = vals.get('content') if content: self.create_history(page_id.id, content) return page_id - - -class document_page_history(models.Model): - _name = "document.page.history" - _description = "Document Page History" - _order = 'id DESC' - _rec_name = "create_date" - - 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, v1, v2): - text1 = self.browse(v1).content - text2 = self.browse(v2).content - line1 = line2 = '' - if text1: - line1 = text1.splitlines(1) - if text2: - line2 = text2.splitlines(1) - if (not line1 and not line2) or (line1 == line2): - return _('There are no changes in revisions.') - else: - diff = difflib.HtmlDiff() - return diff.make_table( - line1, line2, - "Revision-{}".format(v1), - "Revision-{}".format(v2), - context=True - ) - - def __getattr__(self, attr): - """Return a dummy callabale""" - if attr in ['_sql', 'init', '_ids']: - raise AttributeError - - _logger.warning( - "Trying to access attribute %s on document_page_history", - attr - ) - return (lambda *a, **b: None) diff --git a/document_page/models/document_page_history.py b/document_page/models/document_page_history.py new file mode 100644 index 00000000..1161ee44 --- /dev/null +++ b/document_page/models/document_page_history.py @@ -0,0 +1,72 @@ +"""DocumentPageHistory model.""" +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## +import logging +import difflib +from openerp import models, fields, _ + +_logger = logging.getLogger(__name__) + + +class DocumentPageHistory(models.Model): + """This model is necessary to manage a document history.""" + + _name = "document.page.history" + _description = "Document Page History" + _order = 'id DESC' + _rec_name = "create_date" + + page_id = fields.Many2one('document.page', 'Page') + summary = fields.Char('Summary', select=True) + content = fields.Text("Content") + create_date = fields.Datetime("Date") + create_uid = fields.Many2one('res.users', "Modified By") + + def getDiff(self, v1, v2): + """Return the difference between two version of document version.""" + text1 = self.browse(v1).content + text2 = self.browse(v2).content + line1 = line2 = '' + if text1: + line1 = text1.splitlines(1) + if text2: + line2 = text2.splitlines(1) + if (not line1 and not line2) or (line1 == line2): + return _('There are no changes in revisions.') + else: + diff = difflib.HtmlDiff() + return diff.make_table( + line1, line2, + "Revision-{}".format(v1), + "Revision-{}".format(v2), + context=True + ) + + def __getattr__(self, attr): + """Return a dummy callabale.""" + if attr in ['_sql', 'init', '_ids']: + raise AttributeError + + _logger.warning( + "Trying to access attribute %s on document_page_history", + attr + ) + return (lambda *a, **b: None) diff --git a/document_page/security/document_page_security.xml b/document_page/security/document_page_security.xml index 6d85d054..6834b69b 100644 --- a/document_page/security/document_page_security.xml +++ b/document_page/security/document_page_security.xml @@ -1,8 +1,8 @@ - + - + diff --git a/document_page/document_page_view.xml b/document_page/views/document_page.xml similarity index 99% rename from document_page/document_page_view.xml rename to document_page/views/document_page.xml index 7f7ab50d..06e4f19a 100644 --- a/document_page/document_page_view.xml +++ b/document_page/views/document_page.xml @@ -1,9 +1,6 @@ - + - - - + diff --git a/document_page/wizard/__init__.py b/document_page/wizard/__init__.py index 3348328b..0b1cc0de 100644 --- a/document_page/wizard/__init__.py +++ b/document_page/wizard/__init__.py @@ -1,3 +1,4 @@ +"""wizard's models registration.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -20,5 +21,3 @@ ############################################################################## from . import document_page_create_menu from . import document_page_show_diff - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index 91821718..b3f67695 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -1,3 +1,4 @@ +"""DocumentPageCreateMenu model.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -21,8 +22,9 @@ from openerp import models, fields, api -class document_page_create_menu(models.TransientModel): - """ Create Menu """ +class DocumentPageCreateMenu(models.TransientModel): + """Create Menu.""" + _name = "document.page.create.menu" _description = "Wizard Create Menu" @@ -39,7 +41,8 @@ class document_page_create_menu(models.TransientModel): @api.model def default_get(self, fields_list): - res = super(document_page_create_menu, self).default_get(fields_list) + """Add page to the menu.""" + res = super(DocumentPageCreateMenu, self).default_get(fields_list) page_id = self.env.context.get('active_id') obj_page = self.env['document.page'] page = obj_page.browse(page_id) @@ -48,6 +51,7 @@ class document_page_create_menu(models.TransientModel): @api.multi def document_page_menu_create(self): + """Menu creation.""" obj_page = self.env['document.page'] obj_menu = self.env['ir.ui.menu'] obj_action = self.env['ir.actions.act_window'] @@ -86,6 +90,3 @@ class document_page_create_menu(models.TransientModel): 'type': 'ir.actions.client', 'tag': 'reload', } - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_create_menu_view.xml b/document_page/wizard/document_page_create_menu.xml similarity index 98% rename from document_page/wizard/document_page_create_menu_view.xml rename to document_page/wizard/document_page_create_menu.xml index 858aa0ed..c18c4729 100644 --- a/document_page/wizard/document_page_create_menu_view.xml +++ b/document_page/wizard/document_page_create_menu.xml @@ -1,5 +1,5 @@ - + @@ -38,4 +38,4 @@ - + diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index 25a93de2..8de13b01 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -1,3 +1,4 @@ +"""DocumentPageShowDiff model.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -22,12 +23,13 @@ from openerp import models, fields, _ from openerp import exceptions -class showdiff(models.TransientModel): - """ Display Difference for History """ +class DocumentPageShowDiff(models.TransientModel): + """Display Difference for History.""" _name = 'wizard.document.page.history.show_diff' def get_diff(self): + """Return the Difference between two document.""" history = self.env["document.page.history"] ids = self.env.context.get('active_ids', []) @@ -57,5 +59,3 @@ class showdiff(models.TransientModel): readonly=True, default=get_diff ) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_page/wizard/document_page_show_diff_view.xml b/document_page/wizard/document_page_show_diff.xml similarity index 98% rename from document_page/wizard/document_page_show_diff_view.xml rename to document_page/wizard/document_page_show_diff.xml index dbe973b3..4499769f 100644 --- a/document_page/wizard/document_page_show_diff_view.xml +++ b/document_page/wizard/document_page_show_diff.xml @@ -1,5 +1,5 @@ - + @@ -44,4 +44,4 @@ view_type="form"/> - + From bf04b82f3a0330fb17dc7042e1cc25949347cf11 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Wed, 18 Nov 2015 14:53:45 -0500 Subject: [PATCH 26/52] Readme Fixed --- document_page/README.rst | 25 ++----------------------- document_page/__openerp__.py | 2 -- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/document_page/README.rst b/document_page/README.rst index a62b1ce3..94acf0e1 100644 --- a/document_page/README.rst +++ b/document_page/README.rst @@ -11,7 +11,7 @@ This module allows you to write web pages for internal documentation. Installation ============ -This module depends on module knowledge. So make sure to have available it in your addons list +This module depends on module knowledge. So make sure to have it in your addons list. Configuration ============= @@ -22,6 +22,7 @@ Usage ===== To use this module, you need to: + * Go to Knowledge menu * Click on Categories to create the document's category you need with the template * Click on Pages to create pages and select the previous category to use the template @@ -66,25 +67,3 @@ mission is to support the collaborative development of Odoo features and promote its widespread use. To contribute to this module, please visit http://odoo-community.org. - -Changelog ---------- - -v 9.0.1.0.0 - -Creation of folders models, views, data and demo -document_page_view.xml moved to views and renamed to document_page -document_page_data.xml moved to data and renamed to document_page -document_page_demo.xml moved to demo and renamed to document_page -document_page.py moved to models and renamed to document_page - -Module models initialise by the creation of the file __init__.py - -wizard file reorganized -folder wizard created -document_page_create_menu.py and document_page_create_show_diff.py moved to wizard -document_page_create_menu_view.xml moved to document_page_create_menu.xml -document_page_create_show_diff_view.xml en document_page_create_show_diff.xml - - -__openerp_.py et __init__.py file edited in order to reflect the module organization diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 8f7f0313..5d695fc2 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -1,4 +1,3 @@ -"""Document Page configuration's file.""" # -*- coding: utf-8 -*- ############################################################################## # @@ -28,7 +27,6 @@ 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ - 'mail', 'knowledge', ], 'data': [ From dfe549c75a740c41345832679109f45bd9d0a939 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Wed, 18 Nov 2015 15:06:43 -0500 Subject: [PATCH 27/52] Mail's dependency removed --- document_page/models/document_page.py | 1 - 1 file changed, 1 deletion(-) diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index b20ca6a3..b1894d84 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -29,7 +29,6 @@ class DocumentPage(models.Model): """This class is use to manage Document.""" _name = "document.page" - _inherit = ['mail.thread'] _description = "Document Page" _order = 'name' From 548da4df2b9608dccfe04d644ada9ad0af5b87e3 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Wed, 18 Nov 2015 15:23:42 -0500 Subject: [PATCH 28/52] Mail's dependency readded --- document_page/__openerp__.py | 1 + document_page/models/document_page.py | 1 + 2 files changed, 2 insertions(+) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 5d695fc2..deef9e1a 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -27,6 +27,7 @@ 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ + 'mail', 'knowledge', ], 'data': [ diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index b1894d84..b20ca6a3 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -29,6 +29,7 @@ class DocumentPage(models.Model): """This class is use to manage Document.""" _name = "document.page" + _inherit = ['mail.thread'] _description = "Document Page" _order = 'name' From 0dce8a1f33c661d96c5bd8f8fdc54bcb693e186c Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Thu, 3 Dec 2015 10:49:36 +0100 Subject: [PATCH 29/52] Error corrected --- document_page/README.rst | 3 +-- document_page/data/document_page.xml | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/document_page/README.rst b/document_page/README.rst index 94acf0e1..efbfb619 100644 --- a/document_page/README.rst +++ b/document_page/README.rst @@ -38,8 +38,7 @@ Known issues / Roadmap Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here `_. diff --git a/document_page/data/document_page.xml b/document_page/data/document_page.xml index 866e61ff..5ecf10d9 100644 --- a/document_page/data/document_page.xml +++ b/document_page/data/document_page.xml @@ -2,16 +2,16 @@ - The OpenERP wiki + The Odoo wiki help, quick start, wiki, formatting 0 1 Initial Page - ==The OpenERP wiki== + == The Odoo 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 +The Odoo 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. From bff7fa85e2565851cb180f5cbb4d7ae597fb9fa9 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Mon, 7 Dec 2015 14:19:10 +0100 Subject: [PATCH 30/52] @dreipst not corrected --- document_page/__init__.py | 1 - document_page/data/document_page.xml | 2 +- document_page/models/__init__.py | 1 - document_page/models/document_page.py | 1 - document_page/models/document_page_history.py | 1 - document_page/wizard/__init__.py | 1 - document_page/wizard/document_page_create_menu.py | 1 - document_page/wizard/document_page_show_diff.py | 1 - 8 files changed, 1 insertion(+), 8 deletions(-) diff --git a/document_page/__init__.py b/document_page/__init__.py index d8204cfc..a7385355 100644 --- a/document_page/__init__.py +++ b/document_page/__init__.py @@ -1,4 +1,3 @@ -"""Import of other document page submodule.""" # -*- coding: utf-8 -*- ############################################################################## # diff --git a/document_page/data/document_page.xml b/document_page/data/document_page.xml index 5ecf10d9..9cd3c0dd 100644 --- a/document_page/data/document_page.xml +++ b/document_page/data/document_page.xml @@ -9,7 +9,7 @@ Initial Page == The Odoo wiki == -[[File:http://www.openerp.com/sites/all/themes/openerp/logo.png OpenERP]] +[[File:https://www.odoo.com/openerp_website/static/src/img/logo_transparent_198px.png Odoo]] The Odoo wiki allows you to manage your enterprise's contents using wiki restructured texts. This module provides a collaborative way to manage internal diff --git a/document_page/models/__init__.py b/document_page/models/__init__.py index cba5781f..2d33cac6 100644 --- a/document_page/models/__init__.py +++ b/document_page/models/__init__.py @@ -1,4 +1,3 @@ -"""Data's models registration.""" # -*- coding: utf-8 -*- ############################################################################## # diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index b20ca6a3..65e68600 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -1,4 +1,3 @@ -"""Document model.""" # -*- coding: utf-8 -*- ############################################################################## # diff --git a/document_page/models/document_page_history.py b/document_page/models/document_page_history.py index 1161ee44..47a84591 100644 --- a/document_page/models/document_page_history.py +++ b/document_page/models/document_page_history.py @@ -1,4 +1,3 @@ -"""DocumentPageHistory model.""" # -*- coding: utf-8 -*- ############################################################################## # diff --git a/document_page/wizard/__init__.py b/document_page/wizard/__init__.py index 0b1cc0de..af150490 100644 --- a/document_page/wizard/__init__.py +++ b/document_page/wizard/__init__.py @@ -1,4 +1,3 @@ -"""wizard's models registration.""" # -*- coding: utf-8 -*- ############################################################################## # diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index b3f67695..fd76ebd4 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -1,4 +1,3 @@ -"""DocumentPageCreateMenu model.""" # -*- coding: utf-8 -*- ############################################################################## # diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index 8de13b01..bb3ea244 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -1,4 +1,3 @@ -"""DocumentPageShowDiff model.""" # -*- coding: utf-8 -*- ############################################################################## # From db0a10850412fc4e07b83aeba6a65f486074eab3 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Mon, 7 Dec 2015 14:51:43 +0100 Subject: [PATCH 31/52] images added --- document_page/__openerp__.py | 1 + document_page/images/category_list.png | Bin 0 -> 70027 bytes document_page/images/create_category.png | Bin 0 -> 76808 bytes document_page/images/create_page.png | Bin 0 -> 74927 bytes document_page/images/page_history.png | Bin 0 -> 97659 bytes document_page/images/page_list.png | Bin 0 -> 80960 bytes 6 files changed, 1 insertion(+) create mode 100644 document_page/images/category_list.png create mode 100644 document_page/images/create_category.png create mode 100644 document_page/images/create_page.png create mode 100644 document_page/images/page_history.png create mode 100644 document_page/images/page_list.png diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index deef9e1a..a550491a 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -24,6 +24,7 @@ 'version': '9.0.1.0.0', 'category': 'Knowledge Management', 'author': 'OpenERP SA, Odoo Community Association (OCA)', + 'images': ['images/category_list.png', 'images/create_category.png', 'images/page_list.png', 'images/create_page.png', 'images/customer_invoice.jpeg', 'images/page_history.png'], 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ diff --git a/document_page/images/category_list.png b/document_page/images/category_list.png new file mode 100644 index 0000000000000000000000000000000000000000..01be2584b77432cd3048a28109f228667d812cb6 GIT binary patch literal 70027 zcmb4qV|1lW({3=aolHD2W?~x?+nLz5ZQHhOn>)5`+s?^6-+A$^b^e_FW3SbHcUN~+ zS65Y6UmYSNB@74s9U2G-2u@T)P!0$PObG}GqzDrHtHweGod5_39M@Gr#a>RwiNM;{ z%Fx8zfWY3x+JL~o*~AbC$ay70$s(4x4DM}`!u{J6gzv6*^p6cVcXzV&`P~ecQ#e3b z=y7QdkZ6fQDDvkA)o7P>gH%KC%2C~8sCc2oA7`w4kM+k0p59Ftga}O@<+9uR*VfR7 z(#fkPgi*~=v%JgQEF(1@=2(F1>L!o-pvl`(@CHIB_|?YVvN1PJ1l=36jwp zj$b6TfUo@CXm)AjA3?iY-4e2L6kNTY-aZpxKe#_c2M;M}9x=0?lg3{z8E%XE<9Q4Y z&=zQT!#J((JaEh!-cB?Ruu`s53B}nVSMUQpe61!qrxYw>{foh%(7z4tj3zxKHzaKr z=XE=3$7(Z}Tu)x!d`gYo!N|6O{k&`q)Uuzo^|RCNk4=&gcsmk)t@vp6=g1Cl|rtY5*-g9eWej+eElz!cL3HU`gKVIIkYs*8RY z4wE{q-ouYNzrJPZOvL}?m6-mJA|;*O)pCJzgvM#Ej`~2Fm{k_|LEUntaYjj&ZzG7n zW=HgGa!uS;Es{`(Fut>vgMZXSr*cbNBwbSY)aG$bPT4$>i$2vUv@u6KTTTsiSpniP zQIEgUE`s8>kK)`z!ej`h0+mu!wl zklem2w0Yd^ie!JnCef8=wpab#sW;A-FpFMwWwWM`(~yb)6kIBlLdtst2dKRZ8Hc>^ z^SL1YjWX=%hyFMHt)0Rw^cRiN@Mi22mSC8fK48(Zoig`Ki+odvSl&m=)dnPoyTuwS zmKY=h@Mfetw1G_oV(4{Sr!V=qXi|-t;rphcwk+~O`}nI!R9k_Calfj_%)eDc$^kK2 z{7Gz(JL%`o%HfhVX^gHrihx@FD6 ziHn`^JVvtGSIi?e5;(YE!Nm8IVD3+RRK z7C6SquxD7Gn5kob`|B{PJLyn<$kX89CwV}HNOV7raS@Q#g-|Bq?+KBCvlT3OXh_lI zuukejQX?Y)Q@;Z=Sxiv2q(0_Skomfp%+lNRfImJwh>BUb3~E$vQqp5+SLL8{m6aU% zfQ2GQaB@rFjA9r9%5_GaYH5Q~1P;Ly~F zin#>1>oz~tR+`{%+|1=5`OoB_#2a-&p4eFkSq5>i4d*O!?BgBN?3s(~AThgA7Xmym zk=6vS2&s<5-Fl_7K{~D1$>)5m8zBVfk}R}+cLz{8X9@8y^snBYN|3x8=SK_Z;lKL~ zEaC15oM$i5a2#C0-lNUq;C@?g@VSY8`x&mVt&mM#HeRD9^;AfLzzX{^!rvnGdlH`i zy9hRAM-+n%u|Ps4l~*)Kw^y9KEIwkXD`qIzU=~OQKW3U$#yNP1Sq{07H#2bUK&DS$ zf&i!CX|8bxYgrDZ0cA6-a}?7(^H9?+>_#RkZ43f-zc68F85Mx+Gq{qqpmchTMI#~;@DLEcxTeS1^}ac8 zKEB^~Ub=K>J$f*JLqG^4@k0{&BmUn%n+^KIR*?Ty(;%zmcK&Fm0r8(!g#OK?`o^iG z^1%Pqm9QU72DrAa?ywc_fAv?y#KTKuQwsRk5MN|=_)F|GfC>Gd^0DynGEXVh=l6cW z{ENIY$gm39e^CgAA@))H*T=v0&AiC}zYX#y9Kim~BcVTQQl4;B=F8{N5qY}*G^~hi zY!k!>4ObVJ$ity!cTCo#5%;U=!8l7yN{pzG5I7bVR#B(h?KsQi@B0Bj`nUh^V&f^X zOkGjjeO{dn(NW*z$Pk}=DwdI^%ba&?voqXM8ImlU5-o9r^EO^(Z1&6&3D+TclkYR$ z8N9mgRP*5j@f^Ru(o$LQz9+Kix#AWWJZZ2$m^`NPbLAOKA2vgTal(8c5UmcbZ9KH_`_VM{w)I`; za#GyzkhkCKs>|~shl+g#*eaakhSw+VLB`zi(}1R}t>xBef|iawquxuef3sj6zKY_F zN>@wjn~gZVE&%e*VYag?${LxM(CXcgbDH$~3V+>#wz}hidSXJ-?k^Sp-(caG0C0Ev zdIwro4YNx9y28%y6$Vspfrgf0nqGWU0<1TW|j_AlJgRprQn@Svs^r$;(Fj~GWgktZ-v z0uU?;Iq#_9XyCI{gKoJUC#|^R&!A86sRwN*oQUi#+(IL-epe3uo;$Rq{rO4ZwQ{&~ zjeVI*7wyq=XG(v+8OC`hPigP;-MD2mpQo%9=^ z6m~Q>xHQmM46_LVd|-J%f~AcHw0t58K+(40<$9(>S!8WF3Paj3$yX;?bS6nSl7Ut*sAYB|IU-Lqa_Uq4#p2#4+N zd)5SJ$nA?X!=-%IkMGmYWT=GtIERnx>+aX1WppN4sn5`mbUg+mDomJ54FT(ZqP#t+ z8iJw$L9Ht|nHJ_otSS1{1wIyoXA!;Xj-+H}W@SSNPSY#RaX!^Prgk#wnxYOB2^y;p z^v(qcpyRY8ZRslzVbdKIj7*Oxp=By|8u4zFB@HEvXAc^^M>+gbq7>o~Z%_OfTA|Cb zBO^Of?j8)tC28@)s-g}hBOkbG%iQTesOFVorj#t%K~2*(U|@K^RBV$QEmmbv80z4M zx0yeVuN&v^8|m>%>}KY#7=yU^x+E$t@NaHl6u;rM!Sc;V!GUVn)lwU6V)fwI@j*FG z~%YH0*TQ#c&9xJrCo>^&OacTJqswymmp zACei-*@s(fb9viEIW0?Jy+Dw%LQYE4QVLDhWe7&}gSP9vHgflpkOKjoY8BbOj(P`p zB-m4x8*x=N)$tb<&{a1%Go5}voa2kUSq1+4(v;#Owr~)vY%=8Zr=u?Nu~(eY(6AcK zM-!8L%SpBuo$;jx9ykj(flKY)WO+SwmUbR2#YYYz9u+l zz|){t5n!gGtl7^GN2~j-^^frdx10ZDy0Vl(Ko|}jERj&Q8O={F!dNk8w0p(mHg}o$ zpz-v80m!LNH-t`dZO2-}j-Xs>KNV{K&8nV~*;xrq7ZS9}^t)pD=#2%#6$q3PAf*aF zZhX`>RQ4u|qQh7aRi#j>HRJa-V{`o1oK#}=xxUN{*+f>|<4H-@<#1Y$^Plzizk3?P ztrpO?PQ#-1=Ba)mXaEsEbN-G24CzhyYoc zF=WKc%cuAWq1_|g&$Q=Zyq+wxa(C<2UEBu1Z)voZl2)u8M0Vm^I7T+_n{7jE7{ULfV8 zE_W?t%V&+C*+J|sJJ_3BSnsbm+||jSHlti;P(BXpqwNiSqPL}LPlG+*NDuScUrf>9 zw4BY|;fC(tl8rpo16HBg3ER~=2SBB9h@qFbc(xCDmWOnI@)vhyVC1eGTd}iTjotDL z?s|)Ki{HX8so?LIHF0+L_-EYUf5elSiPz)`%mE^;xVoKI1Q_bJ!!dn;hnzTQ;UXH? zl+wj3{G-CPC$V0)6wbHwEu;`~_81R~TcVjxsmT8rXAAQ`x#lzz4^{?ZU`eG8X)1*j z_4|Mkb&R322M+$6#m*y`3}g}~TASxjQsOtsgi}NR_IO$NER#%pC_CZOkYw~xo!si- zdluSdnAedJSlD^jFy?R9M@spF!6GPWZgTqYba-k}xNKM@l4>V|TWu$Pk9J!isZZeYK>ASF{=9OK5A}Al_f-v=ef;I5MEa_z%7akC@-DPu#AU|I}ABVEfe;s)H%` z!m+e^KonbNsE)q_=MJ#SVHNjF6|Qb#nl7!B{uDVGX!JxutC4z3{9#+6R7*|wqULm) z%L5-8L6UH)l48{p{2S8QL%+g)cJm2!J!V$|1OOF9H{HYxl6P^;Ul)$YyA;SXq?3^;ck{D)mCjr%gF~dW6*dYHW zWzN_#V8aePVNmugJ`qDl){miHpP{m}l)|@k*JQ71qq|fF)S{28z9Gw#Y@;a)-ib~T z%rQQ5P6Jog3xUf!_AoQ2HS;H~vcX5Yi~GWZ3HNJ>tP}{o#}gsGAa^&xaD!4r%u`VR zk4pi|i;_!;-!*L%3*bk%!#XLmVw>Sc*XdsL+b(c}QkdNxv<&H2+Q0gDYi673Y(`p> zZzxMB0~;-*r!XMu>~I|t6228d>1(Bb6L@{tsap3gvc_&R@&q{!~@B4cO zAiyfTlwrr7Q3wXe^VS#moPV$ut})G7+{vsxGIG_}Y}T|Em)atkS?mdW$fB+ymzpig zBbjdv$RJloYa!~W%{t~L+sx0&H*%&C(FEE!Q&NOBO;@iAtJl<(7os!0$4L$UEUHy8 z_-w?tAurXYDJxj0L)H?&CL{{XIoM)!oVv=x!o*_Om#G&q%I30mRF&lkazBn@qbm6o z*f>ab^}8p&DX_KF0SCtNFj~huRe;cfktskV^+rWm>vu|C(mJl&(q(zy{`%m9fKB{b zLtIsw0hD4wKscjSfyq>NYkq1gC4x^N`orCUyq;Ns&LP2Gh0$&~4n88*nV$YWC3E>? zZdp@SPB-GVV63xqIdGF)yCqX(4z9V2YjA!`^!+^^rzel3$4hf8YOQjGQNlVPvH};D zOybLv%4szCTSy9^O52_}sW-Y16tZ&zz^3BOM;6?wADL$D`S|8h`(%bknr0j9VBC6# z!!|zS7K~EuXhQACp z$1NS*`-G3G##!2r$aSdiTG4D*?T+M<`#tpy&ot=7)*xf5NuGtYuJ3H92a88y@zN22A zKh_xq>XuD+YU*Yp-;Dc}gf&zkHjxbV;K5|tYdf4cT8AH^cmIi)aqrS4Kk$&9eAAJo-%&w;3M`eDz5o2H5CcR)ni*s&Z);gaqQU z1YNVo&c|{Mdg&!692jch49h6Q16_~9nr#mL5cH$I{z#6KxS!M zlF^D;fdJ;6x8B3zY&(Yvtf|r0`J#T_->*lzbKWs=}9p;5C3N-AuLfy>r_ZfUJU;8ZV3ehWteR1_vINBse7`MP+3q~ z#ZP0yN+c!dq-7{a7L*8nqwH|oqzHlaWA13+M0XCq)y7+0oN{rz+zI)Km_UpWQqcZznXPcIEp*0=P?S-g!8;;LIIq zq@=;ORJqytWR0SvxK=|pNJi#qJc!j=D>>zh+||v9i$9~3!odd>(hSMfa?O>2Vv0qZ zKm&Acr@#CW5Bq`v(}Y|B6Ljp4_I1sbu?kHiyiv#U?rx1K)ij#+CshF?2(`m-rAYZ@ zL=qriY0T&!Lp=s8+i8716h!C)O0uJ_W(+^M;v{(V9pq{z1T<~^u~uuDF-CDQkil!W zC>^T39{t;#B^=Y4F^^NvDeg!`ghd#nB6U-$kUqCG{%D!@#W)dJK?FM6IS21?288#! z3-Qbl68TMsPn&?0K}YUO9j!_pcH5qegw^1lY|U|%%M+KSK;!Gq-Vm}2I6|K@fB7Ky zpXY+=R5r^M)N{G^7aM#|!3?obxbm>IsbS3NBP#QgY>;>aO|E@x;MS8k>WeTF3H=zl zI?KyY2yAhrO_E90Nn(^^P>s{b?8+d4DZOy_@j+=%s{Ntgk4d91>ia=G1m|pRsi8e= zs%gq}HA+Awqmbb5=(s67Ykkg>^>FVKrfMA!{Ek7VTkq25&|a4w>{&8!`A$Z~s~?*t zPww#To~}xXLz>~)4rWorKr!idgwO*ne)w*92KI74Ts#0ny9~f%F8%gGC5Y@Q@Tn-} z^G&z=MfjTxCrCFbtyhEwRDjU+;S8L2I5Nk~r8(^O=mG}urm1F?2ehovSl=W&>PVi2 zK7`xR0@quxG(_y%D)*LMF|=i*26TKN*soo6EU#un zoS(PMC}WO#z+2tG;~+yO@Z=g z*Gs@{paab|03Y7{D>7etK`FB^Gv&4CkYI3i>b$zo6ACpYFiMh$9WTJ^mJXcFi?xTvoEd zo?iacLAc|4xuz|H+xTbw*kHjs7UrZ^)@Yg7pP7bLgK_)t5*gp|k|to_f?BNnusMLy z-Jl`QUzvUU@8{%f#aXIZXU04@W_&a@;lH=@>;V*iq5E?-V}Lmq&L_D}X1QLn0hPtQ zs#`y)Rg|y?{#m|};K61ARk5+6{(b81J*Yr}WxB!tilDWn)0Du4!B};=7jBHdzKy&l z#o!TSZ(gZe@1q3rG9sUq(utd1KAy6JbI!6Y(bOU9-A|yQL4=ybUz#x*R-7$JyDc?YfeL!+UNm&KZ8wC*gQ3o zlSxi0OvhHky&?c0EYE8Vqi`HN!p1Z#)?*O>QUUzbDQxU9pMg5fHZURgFEo!LvoNXv zBD!-dIK&Hszzj}rL5RF}p6%JD_1Hix8_ifc0FaL?LN-JhM3Q1XJkam_B3+!}lXe4D zizhBwR?3CF2TVcNO<{^j+U7tU;fg$})ZwsFBel+~#vUQH`#|I9ow9~4LJnw#uhR3H zd6n)%+ds=vtuJ*H9da@IYQD@WM!>%Wmpkqbf#CCwNn6o+c#VqSf2csYuo}hkmQs^34#YhomD}m0PHy8Z0!ByjcSUO7IhIF?ucg@G4!n7;Y&>|Wp4 zsL4;FI93Q%RSa-8Q9}vJHM|)qEurStaEtqGpnK{1aO#|jbgt`E$0w@D)DZb~@?*0f zw1TqJWILtG5PZDMw^{lpHtAfGNUdIuz(Gm`FD@kh0 z{m3SafKu@fw9=Xa;4^0uWTJzw7Ii*&6GZM@c_= z9jFsK@Gcj4NJ6vqN~AS8>;edeY7Ov;aICi4;7S7X+oWZV2W!Yz24m$16E1q1u6En3 zxHn}eF0`MYXm@BGYZ#Ih`v>9`@*F2B&6@NoG0%e0PI^{fcd74ksZM{MQDi4ExXH%y z$jH7WX9HesIMNG;n#nm-UW#J)QL{#hM82mAx%^MENUKHo_=E!Lvhuu{T)Q)C%2r%F z%e;~S$&|KqxH9xyA@Hllh8eo^xPro%xsapmpEEMaCpr*@I3#HCXocTdKobHeaWbzc z=FRyVnoE||IX@J`y}^%dfCP9vuy2p|O;i-703AhuogyO)#{I2Il@KaGcqp*xLP`@R zCi`{D_wTd2#8cI&g)h;mD}cV;#~LX?j^9L${FH{-&z~Wh7>vBY2 zj%=xmi}@xuy4A+e&YI^4#;HB?U0km`k- z=N@jg;%HsVEc|8G=BtarYis}>)a(lng)3|pvP@}R9F=&K{?y+~a%}weN~%t@iKodH zw%teAHXm+q3N5pG?_7k*9WZoHj|Y^}1;$nrOI;tO9I*`I;}vUa#fZ?arZ-w?9Nb=; z#U{p>lYfVTwHcUu+n0K9{l*6^+<*w=b60QEIbshi%*oZ6CqT!3{LK~VBa~Q}ZTxFw zbe*-_w3JsIJ-p2ZFtr;lX;YD0Dxu|eN$CY8q_T(!58~Y##%qsX1nx?ZdqV z0)3QKoBb<&ILVsYDRMydgk-8=*vZ&8UTtZ5@BYeK7x0^ zm3fZMcym3JraV?nNispa$nKEYm0uL~_0AxpO5Zt}_P2atp(H9yfYhgyyg7AAsZPQ& zpt3M>^n>>dc5Cm5JSB7_7u$;Xg)jIlz;VOv(nIP^88+?RH8zH|C5xu}p#?`sSUQ$& zoD)dtklwt<@A%_{RsiIS{qh9(e7Iv z8MeN`n$->kc+Vu7G8RuWw<7YUfB5Wi+-jjnbKTPLysmSfp5J!IlkPw>uHnnePV(*g z5>ZEeU@Y;nw73-<_Gu@85>$bycl$soFjjklLSJWWa^uc148a*I7_9(#vk+_P0UlEU zjY9?;LUaY1Vgh>l9A7Pk7L*Q7xe+{0!i^T?@NErDN%Fb*R+0a_r_ND^eopu`lY2#$ z_OL=HePoi(EyPRAOTcbn92PEr4Pq+bv%bzrd;YPbF6X*e`W6! zU)+_}@nP95_%LJ2tfYj9nIzt@&uqNf z2&cuE;`!%(ImVVNwL92;`f0A&{?2A!Qi{xwH?fd@VSSO>P$Ad*>qZQ%piwHdvEUG9 zOmnm_A})$gGgdIV51^owfU1p`YCW1dKafg~!d206WCMC1?ol37fK_sKaLat(ie&>@ zA7BifU-?X0&J6RS3L$5k7>NL;ris*eh4iME5vd=aBXDj{trZ1;uTc;u^K~M8 z-t|r)L9oc(E3e%VbnxR{RdUR{jR}jxe^rJiniAXf#6D%N)KmOyyc^moXs&zUuuk8=}Qt?r4#nG8plbkR1~c&Q@#d;NU%YJ>f1 z8Or?ZWx+DW@^n4#Nk_EQUO<)Y=;DgeHPo^wGN{Hk$`KokWt;CFXRssy5@}6-4&$Gh zU&dw{4lT^J^}Io4ytu@e%vC`cq38gJ=hV1K%3X(^L2*LxaGLvhNAR7?U+HIG3htmz z)RqPIYM4!+tEPT21nsho3-eY9ETZvu9-1Zdd5;6~2VLl&M9x9E+8XQ*Zk($4c~+?b z#gr?}r*)+!*+H~ZAt(6<-gv9*sc2{!Lm>g>Yt7$jKgrxs9@ zLV1cy%EW8cQTe;5Um+A(vA&oZtC`t)>Uky_FOsI>H*|1t`AValmA_Ki8X{ko9)|c8 zXVM5f$Ye@sXq^@fL5Pk9>DaLw?H;JVLo?VgO`(979^XL*>(h2TT4(Lcd93z)`NPfWl1{TG zKf$!9IeKIq8$LZf7Y}quJtbr_{DWFm(fs41IVs}KUiXD@*c7Orb`V!8P$%8fE7aWE z4xu)ZWgO^3bw2}7ooAD{^H$t4jdNRS8a)?@jNK97Kp$Sk;=6j@y@o;1wIr3_6hN!3 zAt&je6P#Ef`Lru4(PA*CV3l276QfxNy&IPm3$+s%qdBMmx+?0s0UUm!i!(wXTNGBl z)gupVHWf11Q#<9`yLY>)dBT?EvXPZe2Yq0Ufrd><5$tTjVQV<4F#PKg@7TZiSUG*UiE0jrb0(N0F~dqWWTbM|!+m|1FY?P>LCb7oOTv}n zpcD~MLJQ=^>cZBS6wxett%ZI}i4X1QrZ9NemFgNDw>rcdNXNOx!|o#RMYa(%M2azA z80g(j6dR+X5q&3(l}I?IbjU6_X@-B32;DKeMINov?@J}oS3^S`@c(Irb!x`BheDDl zaj7Q^_4^oq!4N>7{wH{&`?-FFGPO{$&GMR;22jtRxSs|LR#q0fl4^@XsqJkl7C}C~ zah;?4^H-6n0NAfr6-3pZROMdVHa=@w=s)O`>^*nIp=?$DI{_uYehd$;w*Gyd8R^Iv z5BBI8^Qt{BOaUrItPfShuB?Lk&2e0>yUnGXdy*;h?%cn0KBeWd!nh%fhNdPUo=)P} z5xTB8?+wj%fT}P?PRpua z($Eohw^-T&=ocn1D5|qa#2GaQe&nH^?PCNI&Vq6Tvf}{2k=pl$grT9`Tk;mE`Q?q z>zE(C;E$k)&2c1Tt{wTRXQ&X@~(hr$aJ#oxzWS+v%0B7iLiG_-Q}Ti&Tn-K>Ea=eObO(m`T=HYj`p{BJ^13^_U=0DSz{ri8@k3XVNFx}qt zjRR3Grs{XOzNn|^sKF1eiCyUix^(|9kJPoDy%ZBMYe2Y#i_%z3E9NV76#`Bcj2p>EGVZhij8`m~z@=T2ND zMHhqocMXkWW5r&&(H#*SDoUDCE)i*BXj4SrULJ4FZ*%63q_iM91`_7XDT&d;kdHQm z)x6LW60lVpcNdFBLtl+88|77H0eP8s`2)i2QU#*YvQTdo7I#%u*&l8D{knuNt`Jk} z(9zo3T}d*EXlWnpLe%KJs~cif70}X>U@-@F8Zo~lZJRR&jfBay6nh6>=8rA#@;BT3 z1}}2vdM>SUTAGlh&-3Czj|knz$4khVrItPWF>i47_D9%1*t-&Nj6G`4e~5`8Uzp@nWJivS@Hd`!#zWXh*qKYWe$LvJXV!6JxWP}v zlS6o2DRwGady{E7$9^bs6uz0iHsNhuX1T>`wKre^aZOF=X}trN=+6N`aBN@VN7fcF zd?P-x;*wbCd$f7dp)ulO8To`o;5^%F>GDd@lLkqZ@;cph@52rdLqddEjTd7OD0D?7R`(G_s(>;Vn)8i|95ycXak>hAox znQa${r|$44Ryzv6gFJ1cGlT*aV-ucKKt3Z+lCkML&)S3JKI)|Z2XK1_aJYS_o^Ex5 zhDL(3DT{1msF=UcL`Ml58jbc$Ss2aX*h8&Jk(K(w)!q4QiNzus@458NbzL|$igiOF$iijJ;j2S0eyS<&13KaW10x~<&kH!Qs5Zk%dJ;AO>wJo zlu5=4u@6o`-5JTszCt!q!<+<1EhNtQ5eBY0)^*wbWJ;5Ziecz|ufKRemg?OEWNibKzHU#uPGsg+kH{I2C)<#}dgd;&cAD>6*EGE}_*_)I%C+;I& zH)Li=BHhnos}9pAMK}_mL&m5*OOBYU8VdziCcc*h(E|(VdpDbbMmg738?*a(xLpMj zVx_g2G4x+wSdx_0#=ZzE%J3n4-8YMl>u}I_BGgo5^Z_T#BUtu!c7+_=wio|)d#vU0 z;+jvx`yJ(vb>+&Y6zzJWxWp3nuJm=~8c7kw#I&F6@p{ydB**!oc{2nQ)W^)pWJa5+ zsox5*E$)%w zEsaaCWSKM%Z@KO4qc@VKsdK6TgMHYF%7Td@I57i#v*YyPQ#Y$<<^7*CGK=<|Q@tmT zjF`vIFa$jtiPVtra0z;PdQ9Amf7YEDV=jY?fky!9%4YfxMfc#j?CC?qy^H`lAN6v=hKgxJok^nD!w8E>b=A42-e z*Alu<&kkGQ`t;W$_2qN>O5rKN6cu3xzZ^%z*V?zFm0N%1wfYFYhwIp&>#)Evqyr6H zxbt7bO)w zI-gb5`V*=FlkS=*77A8|rAt(!%5})VD2Y8jG10k21N{Z!WbNxq+U9o$tF?N9^LojN zaT*h+XyV0q6ZyYuaNRBj=4f(xG zEL+{Swj`kGZnwTHJGR#3xHUSM4oHPdKsCs)YE~d? z_9AO@ouDD$TR^UkcaZ~^^6z6Ftrtz(CFz4gVIQ) zM^31VNP4j4;KJ1pgsHT3`sPv-Wt1Ck*#eg4uYPR%erHa&pM6qb(V4jDQ%Q1SSBZz-Lx|G3BOsNhXA9lr^EB<)}P&2Fbu{b`sOxGT(6j#~m+~ zB*$w_qT&w4gy=rYmmjhCS&uL{`;LgQ4!0^lY>7g#tT3mnXJMiJ*o^;8kMDtZ6y5Qm zKuh`T3n-Pt$V0_c*N&u@U6!zrxouxvA1c-aIvz|%zhy9_DQ4*ey6RzrYDQQ_IZ9C< zfxl$Q!xgMYwHwolTu;O?k#0H`4|s7!n9hKU<8D8ZgF`?N*H(li{M95aq&@HdN*3hO zQlH|c^afOQu``{7P|bD+)Z|`qAL~n^{J|vNqp2w@X-Oj~x$a;6_tKM!sBMC)=xAP~ zrl!6X+{u`1b!8Gh9Ey$!s$5EFSVP<+Az)%q11HqCqdYOSw~D90P96S+g+(q#>O`$U-$Zp&lc!x(Y~OV&2_W@ml&$vmNGaUGgfLQv{>fj1xZQ9;Z3 zE|P-c&4R3!1`z1$QiqmrDgRjho(zYDhoZuqg&|rA1=7RiG7aBfC^Z8q)=Bp9aZBaE z02Y@^EDD*FbuX*v3?@mOEPd5GBMWtBm~33gs`!1A015n?C39GwV@$tUk}0S$Gd?!3{Rh04}nus((Q5p%yYa6HsOz9Z7ut7w=#AQxT9d zesxKD`h!;RzYU+7<30laPQTwJ<_o~C92O3XnLrWq7wS(pDkMzO{Ey^p@V?0OE9xqI zspMbyzC`}!Km5>fL6t+>Bt*9({Vl5hnz{T(63KsO_+K*F0r{WD0{>KD(!BIQxL@@^ z5J%!?otFL;z>eOKK7GyBidoGs6>HIbk$;KHW+1o_v@~mc!tl%5+G*ha9mE|Lm&Y^x zanmd72m)VS&RX${pMQiHOf?9B@6J1M$PHjxRQJmz|91zI)WBTwZ=bt7|CYs*vj`4P zL z^cQFfG;eU3#Mq~}XKO{uW;-41;^qi0mD1G!n$uSMg!WOy`>5l*2&G~bO!H=>hBC}G>P@T<|msGI6!E+Sgw*;htgS>r=1v zSG&m8IbNTx6Mt=hB|9-Ze%@=T{9v9+!)ppK-k(oj*eGd+y7g7yO!ZfOY-4wl@*ld#0Usin?9{+{oMJU0Z?a za-Y23#XawXnnFl>?AOPswK_m%JB2(;Hix~up2G4=%@99!fj#e6d1#+Be<*JFVq1G| zTXwpqacO8KUwp0)S=B3YTEC{f>2AvAE_#LR4_2{ab_G-|Zbs?7m16UKc&tjnQ&2q( ze!5{armXG#vxWF^0Gn?Nks#I#4WCb}WwwJI8T)%-QJfP-2Ua_mD|vzljMr_Y_;n{Q zEhQCy7nvK2xY`wr!{vq;C?$nn&kraZ(aV_uxR6IrHIsQbNWr{mU2?fu`A1Nyi{&Tn zL7KAl<@%zYRN(Wj)#L4-QTSNwlPBBAfZkW;Xm=B`uJ02E;`3!g4S(eM6hCR6Oh&V| z0y&zSP7KQhvE0vrs@kt$FJ%FXmJLAQJ)k_hT3Vk#r$4EhKO0ZCGkC14pPv;#^+1@` zXZk;`I9Ih?vG2cnKVGEOARApZXx)y8OZwllf2_(;WfyYed--8#$u_&po7$GQEah>- zUvP*`Mn~$cyK#nJ`i#C`fhNw5Sq}l^2CtZ@r&j>{D?Bz3cBM?-SMT6BEH6~hq`_C6? zV)V5hEzf&Pb(a>_8_T>iD#f)1g5j+yEfRg8LB#bSZtqj2tA^LhTw0o_-nNTFn#;x; zDP8w>zqg0(RpRlc+Xngl_0(SofnJYl6UpD1@kkFhs^mKNn4xdWmn=KO%wu6Ynf*Om zWqPadNha>89W--hG5_+kGm{aF7+(01X7_58eAg8BEM)m9ancpj^kYcjuaWBqD8Jns zJ*B;L<$Q2R;)F~};(n<_!qCuA@+oC-i{TL_Q0Os;+&I(CnHbXW5 zCC&qBM*!9n=%8J#T2~wM*h|IcAcc^7NCqbu{#puo%!MU`PM~c6plwKgumjN}t%o() z@`Yg{d4RW}U_>024i)#YHFnfud6(O`CB%S*f_T$CqNir46lu_j5q{Z;z~*mEvZH5? zSA-|$@WWI0W)hdDr|sDIUedA{q_uO|$-~m4m;${8 zeZO+)HHrWEButMM@HXj{*_QY#nlg&9d0g8J~aV+oO~i<|c{jc`Mpc+y#% zj`SH`yMKcao>+5p`1A3lg$HHf3yL2KpIkLNVJ@S?1oPy9~ZAzO;L+7_E=e(6h8A*Qn&MVE~q*mb+65z4`7GJ)CyzFX#9F!R7M>}P#5(^h#_qZ6+T(`AE)RY{-sIJ82g^;9nH47k5!23o z3VxR$YWK_Ui!Rk0#V85Wk>rh3G~tcnpX}z-(-6am?s}rhK5WmjiT|NfD-kE@be@fRVa_5tsqm>PV_d zg3OQXaeB$P{1sK#vJ{^74|c!lQ>f2t(D-(@A+9Wfy1&-2(o~hiYhcmqndObz+Bc8q z6+Y^&d}{-(DJ}!-^1)$xW24X7HPPFJ4ZfDR@^1{|KGyGY>LkqSInJcca4f7@bXu{C zil&hn>HSTq3TT%>X4Cank~TrlrF7 zfc=WO@yL0;U^;R;F*X@__3h=9^{0dD>sQF46L^}yl~qG$`6lv5k5nG0F#y57^Vws+rprs(v2Y?RFN7kg~sPUV&7 zGx3S%4YZ5Z)%R!`^zH1($IkOkP>X2uvnB*N~Xg$=?krWu}~(hUd9o zwr##=*=dAGx5kl4e+4@sI+*RAPqaexUk@h-v3%rz%Zg-j4)3g53dqWB(?XSNYHUEi zL9nbpwTM#*zEWpRM&5e8Zs=!M1qoPn_Pr7jZg}28cJW*xTXcO&BOj!-e4e7M*~95i z1m!G#^jp)0I=+KA^9;pIU_42_3E6V954z!J?9H-e^|bQt_N!IdJY|r7I^6u3+XY|r zJgD1K+1$Ru_Ka-DGUzPK{amC2Z`Irh$OOXoIB>ieQ{yc(Jy>zlIz#~G5s+m-zbE2< z&uD*YgG?NY3NFjqolM#oVoE_jTZFfJir}%?<3UcAq;z!-&V0adw)l2K+1Z=%@XYJG zy|IWXVOX~p$w`fZU*j}hv>jD-9pr-~m27Enzur{Mi`VxzCUG}!fBbl*{!@RX5Zi-w zpcQp`K~s0fKo%_cqy2RwDE;dpd|Gd8)zy_Af}PQxlYK`90o@yAmm5{u|KaK^qvC3s zwM`&|;0YFV2=4AqAh-p0cNyFrf&>o)*WfU?1ef44xWnLs1b4S@@;vW*&N|<(S+HjI z?q0j9tGepCd$&H5r+|59)BmwuEE=V3N*olYm0}UUNptD`eOxofFW%={GB^@^3=Hbs zCGfu!JTNh5S4MKzI>b&UKVhJgBL1%bn2~YP_O+H}ITCm{GMBmhkR))|2d+9R+sO}1 zI~39Fnm=yGh5qt*3%JGZw0q@p^u&9t^Jz8X0pItEN^Ftg7TiXBIQDRRlGM4a+3EAu zu>JH6T;!d1CPUfX)KtyhD^B7Y4Hrz7vkac=vnmJL)H;W4RP~$q+eYeDf)pj2=BpRW zlND$_=;ZNbw|OK@ml|2ViSq61KDeYnLY6@Fe2p)1^<2m9xhs*ax(i3LkgACl#GA%V z`_L!9luPpZwWQ<9rq0OD>sPLDYRE!wyL}|Zc8bgFbu-K!0GeB7(EJLt zo{!nNfhetKxs#aowx)`HeE0Ts4qIEI2J>cXQk1jEV^)AE-2Z^$-zm?fEfub?1kyWC=%>;v+pQBP-p0w*nTiX( zV5e173HmBrOXDP~pNne8Uifel_58XK>iuzL>p{KlYEeM^g^scHYgOXPq>?3~ z-b+m9$;*-&?qKm_3)`lG{NJ&`f5Ho0{!UlfkV(nCOose-5FeW;-=~MbK1B04=byqf zm6A?FeJtGsqy_lh?krB6|ta~Cd%XM4pT;58^sxJ-b{~8=b!#|-%&(b1 zE&^WTwB;9{hx+U~wFeljTI7Yh*KYGLtut+;vjn6;K0B-bGs=JF2pd_?w=dLhkRc5| z%PC{u1=K&@xzrXN6EC~fM2Brt?f9|Q=y}?>hQL(kVYxqUvL!;?z za7Y3uFwxbI{(C7>@iWz{g+Ox?@cB=H&(~k}i~q|4sCH-P(em|8dkQKF0+f1b!B*NR zO?j021(1dn=yKQfuk@lcfB;t|<4r|XMp1;|>x(p*olLX-Im67w-G43M-CN--oUPsI z#o4~DI1x#n=nV|1f2^g8>YM8H;P`m)x(bels^VvvWNG?R>u78;lj1zBmI$D3i2?e6 zG!I6nK&~vktWIXV0+9@XXYOdjkpcNy#19&48~dFfI~Kt~qH){}zTpQ}dyVk}CQdt5o5K zG;g#$erhseLI`-{H}q`Xk$38dQU+@i^pDfQcTtIU!9C_u{Kp0t^z^zx=AV)U*q5*h z_6q%o{Vyo^`IR{3Xfdd**`TTLuo!!)bO zNoal|a5AyH99?9sl`JvB3hSZCBzPAfea8*;WbDtSfJOCl%C0YO!$ItIZJFZ=8E*nX zAhd$|bh(nl!~MLP(g-CClDzzUgmB=GoRsi%9NPRz+90EMar1IAPHd{+VSEAaOE^h4 zcc*MSTj*~oQm4xaGO_r#7~u#x<0)3A+9BlcVfNrg1o&wsyGf>$ z{X6CVF>gm&5q3KD6ZLFcjnO9*vS>B18Fs9b_#y*xrAPl@sju-VF zY8iYVAf%rO+-t(t0{@B;EGr*}olMPAMpLTEZq~8sY{|s-vh&Lf8BeR@auI)--G&7TD zv_s{T=!c$u)WupQl55@}nx`m3fa>`^#qd}O`{F|yki&bdH<(ibQ<@P)9<*dr>zPo) zi*iBqk(BQvKYL%sW8srvAk}C^SFz}Q6Q3T_VYRceGFp2$$p_K5ROTOe>%h(w3b3JX zNQBO9IIg?4)+qb{%gWw9D)3}M%def{#qLcP8#-np48>+uIYBDw!UWL%=kfpRs&K63-8Mx{c-DI+M6r^9uy_(W$K2+BV8yU}+)Srlgk(7b!QC9g1% zBAph=Ae7_kuo%~8@*4h?9e8t_MBuidnLt`$H*J?=Ho&GW#pBRu?fD5mEdCDXPKC zPdN5*Q=gwgKg2XX#7HL0$eIR`i_#8RJ|ZN~hAL5Ab^lpX$W0Czh=Ns1X{v)qgHUXJ zcO-TAc(PUq|3?$89!P{-E&s#tWrruVNao|aKU9zA3C%$LX-*i14_inTrl-X08s4SS zRqr^%G`(r_H3u;~yr)AnuCA`{#+UYUnBX7{u)wuv`V^Ce6=<$aO&Bw^xH$Ac>iZiB z2?H)uy<=8h`AUcChK7l96>dnooc{K6o>;pU5SI7~_Y)zcN_-6*XO~lr!CC;JUyqtumF*^q+8a zy6~Nq4b~h~`^Q&<*6YIfw*GX%U+%%x zOhhtcPce@N4jmDd2O(m)fINqrLdx^}mKA&WAUHr(iml~Xf#=~uX7?6s5%%x>ug;}E+yCraRs>*kf`A6fg{ z@s6F5XT>c3zJsePSn{B%rL{oOCmuOsD&T%37ALuPxG#3xbC_ce2(zLR&=SMg%mFPRE}!TP%j~Sv+T$HBacmv)v)g36s|xDBUV`=} zLS9!)?cbdFBQH^ynwEm57mxh)(?eN^2|pY=JMz=CqW>p*(10c!`aAl`nKt zfEtRwy*KNyD+MH8UKD-AWW#}o7r*cAmA_~JUHjS zk0TWeC@d>0o7cD>IiS0|J8fD~Tk+%ZlHsvorj#+Ub7J$r{V?rx&)Hd4){{#c65OR$ zyWrB#semJqo1g!+k%;im;h}u1f=ja@mqO2xyJ{8$P(o4cKuVj z0=8X-5pCjyw~9&W`CaE|qjPPkMa}Iq_X@CGRh9CeF zBm8R`hXt$kW^bmL8~6-*2zyAM8LM2*h zbvjnF@bfd#!a}cIzHWW5Vw7<*I$$y=F>^ z%l6jL)3yHAjq28o3-oIKqMyjYvEUb%{%eN1wHY@F^7nf7JP+3=miOwKSM*_2RMTWL zomY58*4GEmqhK(?dV{XL@#UY%Cxe%!8dCxucg79rkQDdB-wnV^D;$nHU-MXFZ9JGE z28xGcuo-v1CIkI{nZsB{F17}fXxOPwvDM2heldkUt#iM|X+hmgEmK=Ml7vd?)7OUy z6urF*;E-f36(d%6TIOSCOiT!R?Z|e36O-vlQ}BJjGn2EPB2KR?zou$vb#*QS9;JKl z&$12PyKU3owX8rQ31us5AQfQ@R*a<2w-DuFawsq;3j=DKUMw;;ypvCoOI4qlDf@uHq* zn?XO`2i3c~@tYRKkHx>4z|P%lzT-k|tpOr2u*r#&nVfl6?J6qcnAG66u6ce%#-`46 zie-^}b{Pn7I~@?uM3D>^NPJZ|aj+#fue8PD(8|6Gg#|rVH@94({&!N`yu4Y8=YGN{ z=NI7uIR9=P`5D1^742C@v@;Gh+OU5~$Ddp%Z{46?M2k9N^g^8oMIOKZ00MiVXU0*c zo4pY|+}EOQ9%wPu={V}IR=xJsyK87`H>J%)74Sf^5kX$*NOAK$hok{~PGVC|bVFEJ zSkgl?uLz`FKa?fdoys#BjVXZ^ujV^{A32)##$-dKKSJ1@^)|ldv=5=bocMk>S4l7x z7Z=Z~^$i1Q1AWJ#PB}t4RsfGMeH`R&{H^HJI1j ztazmP^`Hv@>VO$>ghUaNVFTs$&NuxR%$M<4ybYj}(&CyQ4gN z`+xp$y$LkNZ(6n&wz4y`(bn#C@vS+_5fI)=(^n`_#7t*#XzC&OB4&|k>A~~r5=&E{ zwT0D$tuj@Rpb;X3Hi<46FC79qz-(%9ma6yPt#K`{(>W!mr)#EEl_hQbIrnErM|Nan zslf!CI`i|_!A zfbOsqwI!0VpDZ<=YHE=C@-lh7GyiNoF`d*BdB!o=w30^dw6PUWe5*U=wx8XhQAq#5d+yxS|GiNSo<7%D4IdLq@{sN$- zMm$oqH+Nes@lz?R+pEFjHN6rY| zKYJ`V2T67tuX;TkUGnAN(e$DQ2!`xmexwsObg{3F$H7&@WO+RMQZ>-h(t^)pzf5%% zo&-6vSZ;FKgLnEj?P);{6N@Glc}}=Lge87o!;7q=iFlYTf$xGuCwPEIN749f@apQy z>bU>pAYc7mc!^;VaX0oP*W~A_K-g!kqy#bTgAqZ-LD!7kBp6Zwt5MlWo$m(2d&&Hn`b0L?g zcJSWTeL=dt_8emAeOmYS)x3U+`_MHFqlNI??b!e?7djP1vF%QSSJgatnZ-AE-fNf8 zG_pGwzA~M=VxF9*&Ot(%cVT%Mx*YcO5YY!6)NWR10?WRgtsTi~TuJ7YbfDQ^OxSNc zjAWoC=3~#Q;^M&5PM&njf)yupeSGd0ii1?U{!r0@ioWA;Sw8H`83GPD5{8M@&n0P{gM zV~=%3)>F5WQhU&rN^F!jJ~&CTS2QwMfVgmi>0*yv`Sw734ruenep$Ryj^c;0VPe%} zbIz2g9r5;+_!4v%8B*W{5Y}du-qJKfP&Uioi2-Dq{|H)fUp8NYM4Y& zB{b4}PiEn?&axrbR*N-mVyesyy3A%%|0oqhD zV)Jh4>FICm1pm)AG*}6{ma#YsB)+GmaAeSdgMV2jEo0t)#@fJStYgv5Wix#QNTPz5 z{5F|X7~%3p+DI;hn6T7{p*DrY|NkpM096c@)R-2!ui^;f%rx;lz)$7M~>N8EYbAJp$* z0T!>D{0!APow~^UJ=&XBu-(@J!9|)^EO?tRao<71S(rv4EurIjgpW%B8(jP6?Q3uS zjQ^82by)_@BtIsay3y*D!Adg{%J&r;7uF_&TgL5N-^7)x2M6WogF-{88G7sACM3M2 zq55V(o3O$Z9ZLrY9oV4OHK~uUuAb1v5;GFCD2k&0G)^w3pOw{=&q?%<##)Z z^z~%|_O%LxqQJop<=t_A>>)QQu8p8JHLs*>ahe0tO9Z6Y-JPomwNpdW2M{FQs$7KN5hYf#2z} zb&@5PIh`n>#O2F`wUoK^C>o^WDV`VqJDeT`a55F6&?#$%MlzK6*yuHU7vJRBvxfg; zzTv6=S)&&jcQV)TEmI%RbNDMP#=NFs0MFt;DVT6>*@nraSmTpigH$C zoPsW-M2|Htfy|qOgxy$uOqCUgI#kOMB8R*vi<6ijfW(6%ki2o6SYQBO1f>2fJDXcn zF|@bvBUY+vUXBv0>&W@)9RW+Cnn+6}1rNqAtyi8z1oSLP)7fytf`f5;1^VRiu z&1IN!VoOl!SP*80*2{s?0yc5UCr*oT0*MDADeGuVwVV&4(~=;(W8=Pt;#4TnQZB@O zeo9NDFEcNfMDy=c4<2V`nwhivDLi3F6myOUF3FyHnolz5jD{p1Qu?f^tS%ROZgc^C z-T2B^+OXD=ZSdx*%ybnH$CCMNAPgn+q??HSMiUwXEmv;!Ii*=u!4jC7%IR0(r7$V) z6&F#-%C!8u--i7ar~r$;JU+BLcG@okd648f7U=g*JLV`&5m*s+{R4+L0@2*;G;z7{ z!)A=y6;C{0B|+dOqF}2Rf$E#1S_C^?&bVDXJ5wl3p7en7T87{Ki73wgiq#er9>+gE zas4ajw1)%$xKDXmPsXzH@?wg6-lCEBai*HTs_4J&w=x|+0LtI)ylk9lYts;pKH42g z3b#1%9dz=YCqPe?Ouo7+aITP zBdj%LfZwPM0!^Te8k1V>!4l@p!cl%W4-mdDjS=Vv9<{k$Lp$liWOsUmFiW}OjnHQM z{yVwlB1fk-)HuqYMpc+IQxU{~`8sdhhe7@(}>b8bz`G7h7Su zooHx}eEjv+8MGvQPEP(8W0a?0wtHSn`>HEpsJvwvBe;n(CN>sBHZsZwlN-*A-&<9p zLuK3=G?5I&l1W}BN?N=b&D$Afo&zrS&0)IHGH-VI3~N7VVgPj3cv;0t%Dy8uMw=e2 zMt#;I;a(~Uut4wuWP>yFlqSgy{xKvaE@4@#^|OjmKc2I3^Xr~=kqoYvC&8!gVPf(b zS8gDD4z><^Y{Lw2ozL`&imZIU0ro!vnHbW!3k1E$L0~s0@ldkOo;p>Hg zdvx>>p&zzf7wO?>q)7)2Yy-RE<$j34_Qcp7BcOmZ(Zjod^=*!~WwCh>?Z>0i5oQ_M zSgQF|`Lnw5=_TZLU?th=+C6sm(mk6ooDy4I$GyUH9=w50Ycep4?RHP(bj71{6g!H> zl2=1W?QxH%`C!Q!2OdXpJGm6`kbfrZ6Y_4M8zGG+&;beVs)}S|XF{&6zKqm32|D8K z7#KP$ihXr&2gnwox%nU+Texnf&r1UaOrj(2&$qD}x^=O{1OGRD%Qu?(Ay9a1sTTD680IHiD3W#$lC=7+QS-5HKXH|=ppkLHC&phMK zn80G{>hjZ{r-hFUZkMejpq@>{4T2YV80dFPf` z&3E@rB+qj^Q*1=}^YFG>)9-KL3(uPZGn}8j`NYEDpG46y88N>IwPv;WDR3eVYc+rp z!eVq6<`+KyG(l9V$__vIZ3EB(6x8Nrh4tgU_lHf1z4@Ln<5>9!}FI5^0T*m`l5 zX|NQEm02#fmz|AY)wIub<@t!&l{oZi-NOZ`XOxsaUcO9H{S8fBeQ|M-=0sj9hP{pc zY2tcU%=t-gd4o+%JhZi_Wjh6b*x;RUU&4d%Pw5dmW+ zHh{9C83H3n9({IMYE+FmO&=FaHTjpGb1sPW)GJG57gDc;q+P6ukL!#9(W5MazB^ZG zJNX3z36jOeJ#R47%8T5!&7J)-6UVfrM|WhG>aj9K!9}5h^_JYYOuD>Z&Tuj`?n}VG zvd@1hx1Jg_Fs}CZ4~J-_w7jUDwfN6jKI!Wr*Ok!^>UsqRuJ-naMwJ-qfLpef7^{5< z)NN%KwOSLWT(X;k#2svn#|d-OSW?cv91su7M$s`an99OVHr-wC zK(upxiJyshHJN63ui-WxqZJ<|7ZPD^K^ZGmNC=B ztUWu&{J6!(%l;D+17T+$G|hG`lA60xZ>T>EZav?3(nf=Yen2Yl-VLn%Ya8wr+zWB? ztf1s<@sI-JyUbT7y+fXRcjkIIK$>wA_x)I>1P@q`v*M4A#g?Zn>g-Dhsah&!0E)59Y zYWwjhKcFwQosfrx){htU&9Ig4MUWlkl2 ztv=3IgEo39Q~s#-1w7i?Oj`W!q-S&(5Ohs}bdmU}o= z5W}BeOJ_;nxtaNM+l@(axgZO*&L~0tbEj=6?(-O4a>|g=w~iC5Cm0yY=CVdYV%DM<|cuOvOc?!jpAu8g^>R8)92pfOa~s z-P{x`J&zHCcKG!I|S|M256r9UBjoD(V zUQ6{|RK-j(miQCpJBe62YZ*;)<;0=rfxAERCtsYE2x`eqGq@9+gG@B1Uf<2B`h0`1 zQR*t9fVi=Ybg=-V5#Xb4TWNr*FQ@|21B1DoACeoD~NK0!lI)OO2%x8JPBOK`XHRcBCY0KeCbmf9@ z@Nf!3hr7GQ6mx`QC}sAJZoj`{X9AOph~zxMdUco9({CsnW{6XZh6Z9{KEqmJ8qXS# zhDpvCWSLy=j~5dLjJM15y>3fm6N(N3!`G&GKb8Gs;;!2te%xt_+pUop?R^;d($XHE zekCxm>4f(4X@YJ^pW@82-N&lWwDgNWsTW1yEBtWGIw5Zamw_@nzkt;9*SFwO`iocm zeTDvy9nFb+uOjKL2sjZFz%6YkAO@@e^4sCER4gqiai75JikRCnO`1kR9JW?({(BIA z`lak|B?Rw3}GT#aabHt|xg@ zM5|?QxPU8D%47@)HRjZ@^z@Z_#tL{&>ahy>N)lh3ho!|@bAhX8S^6SIv#b48p}D!a z^IK@#E-?_Mvnkj4wJ-lE3){N~DtJ1vSOA|ohAqI&&H`LPf5*!C*fCSSM_i&kD6X4O z`!j%931|>XN>Xw8$)3p#{?+wWbN2rH@yx(I+HhTCC()?y%j&_c|9;1dhK3*?3F&%S zd68KU-abN-noZ2i+^+Jkruu3f$yXSTn ztsJs`E8MbDea)e%QOHCVvP5o)FLz&1Ry`4GaV^S=i>}qo?iXXuYV(|&eRHb%!$n2g zy{{t*Ez)xIC&jL#Z?1nacCSINmXW-%e_bis`?05iCp5c)b-9w~xpP^rq0=|Yx~&;g zAihM6iXv*M4?SnZu##l#*?Xm@9zu62kebs)WPtgQ8Tv%(bymQxWr&skk+%Qoxb3$m z@J-47*(x5zGC_}1Xz|1Mo!nk*=+oHgVvL9l;N^Plf>p6&ydmfDn^eHzdcez3v_FdN zl?N00<88#t`W1c~R!j6rNVbuBXDM9K#UB^jRIUZ;vWAuN=Q-JiM)7K)w_c6s3q^!G z=uUvtE+xc|9;lko%J$46eWYq!+8KksU^%EQ+!wDBe#@sV%;K;zPU`*1(tn+5lT zW4hEAhB`Jqe4tc4bm7lx5(M}Hl;Q^ZV~7Ug^Q9vCOxl;TyNtd!Sx+r3$vQcm1tNzd zVFG%;^|9tn0tQsQNyF_?!V z$tZglypnF#fMu!kZn6V$Cr)F9pFd(D&C0x=P?}@=)|arR!*IKTLe)5CGLRWP@b$fK zNus_FE_erL6X}b(EOGnVXRZ{493RTEmyNOGuNYRYe1XPT8o$at&V{dqt%OCqRy+o$ z(U#Cj4B>pA(e^mUpy1v)xbZ`8q=c9d|R27upY(J&ES! z=$RelR{Ybv{6|Nh(&t4)xBIt-!h$wf$gcbgsUqA%$I7iJ5&arP)SrLjG+UbDIIK}4rHog+uV_>OtAnVR`x7lmRB}WK z5Y8+sVZ(E>yD)f`m1C_$5qx~bs9*b<8(7d%kg%VCZdZ!Q+S-(S-$sv@ zbS>ytvMUl=WkR4NgdPR(W*+bsiqp;UOi%Bac~y~$l;fR_m{v%iDeU`)c%dWg#G$+x z5q;FEcri7>v#mY>)V8}YRl>2dFf1Iv1(yA7h5Yl*Zv|{t@wU@q!Xz+fWZuQ_wUvW| z<+%98LiTgg+s!gGu}Q(XO4M3=arCH;7p7F<9P=`bOIbu#y>S@RSYq|#ZmDzTGzmWt zL5eKX*W&}JSEc#28Oyr)X8GO7eV<76E))YK%T7{=fr3ihyTtxkjY3{-A*lE_!X-sz zn6SzCsv`B8UKgz>5myYPQ!vQzd5cRYhCp68#}{tN%0gdv@Sw_8ZKNd{Eau@DJ{NEX z3S!brih^^q&Cb89Q7HF5CQF`Ax>)EpPejC`lL<>88>&f9sOVpIM|?0`jRMLc2dR=b zGZ}WP$eR>(by%+b7V&`x%{x6;s-u3VvYR$}322W5rKf6i3uP#Z8_^KH*)*2jp%S)J zfhy23K-+KDkRV0#JFb5#yZdY2QSU=TZ=arfn|If}N9>5+zV`GxF%ZlBqLVqYOz5DE z7YTBH`ZZq^msS)30?ETJ@S~`x7w@sWtsK_sN~0EdIYoLt3__a1m_&7|*l!ujaOhNk z#kO7dQO0v~ZM+5UAF^^jdb=Zg(_WTq!my@h9AAQY8jLVA*S3RnWZm5?yR6oj7ZLKp z#7Co2vG35{#8Z|^y=Mp4I`U@?){gv{%nu40|K!8=&Q3`2hXebKl1k|dtN4s7?%ALp z#p1=Lls05SehGnE!N;TSH0euRXeGBhea5c$;&V=b(bER+(gHj8%hjNPDWP(f=oTfH z?ZG0!(bcI$%zLX7cOd?&CG;4S(TH)RpzCO!9V3C3xvW#&CiQ=4rQ76tgJ#U|1HN}}-(Xkqs4{X{`P_K@?>)|xfP({%R@yk6Sh#%4b~W?Om{xNQ`}$=2c2>gy_fW#tl#_r1wHj+J4~0aD*yKH`&%OK37{}@{B4L zICC?hM%0aCX6%SSS(jGEAyY` zAG~&+-r>YpoFQzF#BtRYrkq+&OuYLY0RB9@<{5WiGJMIm&8Q+`GHZ;aqgQ<9N~{KJ z^${vW^pKAu_A-f5jU!4PAn)hTe-Y{dXY+`C;Y~KbiOKVqLx7C8&D(h*&(&Eg5#c6D z)E}*i{iq5?>BM|_WMAU3-w?f0DdL4J)Rh8u483YGhG`Ant25*C#KQX{xGk78KN@iTK>R+7yKp z-rwJM;U?5LVSKhSH}xGVQ_JJM`pipcjN*lN}4m|ktl7U6u-6(<>=DK9R) zG=6MP{v=#<)0}-iX;417IuUHZhnT)!0vt=t$~>s!(9cxVeZsTReHx)tZ2K5#p{c4@ z7v!d(xFe#zw3{Z*{X+1E>8icY6K=`cj_XeVrhn}7r90ZFQt29Uea%C21t$?)I_@Mcuf1zu6nF zD*daHgR$aud*- zP=z4j;G9Bt+2Z`|DOf@J+y zjy2R=O1j5%79D3dx)Jq=$b=C%aA_t6OZue?@^^KSW+D;Ya;1VlT`D`XQ#_7)IY$A( zmiudGTG3xV{w{0vP-S;#hp;0j2++L{=T+d21CAa^-0VdZoR`i`k!|Uv=zFF zSLxI`S6CoTkz~)hN}bWjuq0nw11kRYDy@;F!foEt@%`M?VLtz4-?B)FI6E_F_Y_&@ zn}52B!Vq4%08d1h8^Pggj$YxT@-F>W|o)R&Yv)ynR!oO3`|qSf{-!GUQbNT@I|QA34KD6XYo z9kP4Rm|?)DQOpt0#}82CVoo0ori;64wTi?6olroPC-E5y_zcuk*J?$!2$)%h*KB>$xt_&s?<0-bjMlM+W{qy9C{k#0pXKxdxc+W!JN&}siX&dc z@FvGETbmck@VF9Pl?ha{?0@Tg`dT!aLQ2u4#gy~`<1)o`w#)i!&{Oxcc2^JPhq}kI zq?yaJzMpkw%naFrjW?q~qWipVHb$~FIYIJHXB8*UVbe4MZ~J?shhDtjMsj-+6Edqq zYZ15Q@4I)suPg_El)oBj=kAw`g&+3-@{l|RtUq+{)KvVaQNB`uRdUk#swb1GTa~tE z50=qzjLF5xNjbC;oNE}FSOnxaXgNq__4i#;PKR;CoIE@i1MNQXW@$#O->lQyUyDK- zYBrtDrJ{|7w}wVC+49$#R~{cPtl8KE=56+u&f5%N_~d4~ZPVj9*k|05RP3PR>EZ5Y z&HEl!?+8%ZytaQ(?;I2FPsU`LN zw=$iF8Xh_w=6^*hEh)jTXS+h+60FvmUhasKMz z2gF?*x1Kn^Jlz;-g?|_f?SP?hrb%1L_S3H=jPFHOyKG-<89-+5>P%==y4_OWbz!}k zcU=BmFOTtj$dvBC`up~w(&8}_nOCaimG?K$nPS%UJf_R~U1LNTd1^zbalcPgAXaKB zEhT7vTu(U-z%%cDdQjD#j6D#Cec?G3T3DNv3~TS8gidhA%&+2QHmRS3|~eoHQ4+RqAg$;mG% zq19iYcUg`dQ@n1!0fb|cN+wXkcxMfjlCeVpu403#4^;ykjCubN5d|5&rA-?Exm|<_ zpma%u_#2^eU6~8s4))Qg+z*!xZjW9nq)A;Rl41UpN8NvJEe~eV<6c(Q%S217MhVOd z1VU*Yo$oZO@-}t@L{X#{oEtMZnJSllLfA}NA}p+l7azHivLRn}-PrO<;Bpw^n1wz| z=^}M$eHWAh6u}HOE>9YzHgkmeyE903D7q4c@jTN~Gp0xE+!RGwn*YFhhB1b5qvIlR zkZp1-1afZV<$IG%s>SPgT8UJce1@MyaiW3 zP?-*>=;%ZOA({3L;b`%^9Alo0VOcmX2L}g>cf$;xf`G>%y^0{|5LF-$cH+*!5j7wV zTfx9Z)^m)xoC?gIUgQK;;CWTrV%)4sCf|N83j=_@2aZ)%W_mfm2!VMwJ4n&fmW=!1 zvJ5S8zlbx8RY4lv_=tlxwK^FD4}*tbC`gUj`|=UK(L+sT9AXS44>gVK+06f;aD$aN z_|eM%Mnmo~&2d6~ZE`-)l)p4iSVS(a#w&0`JXM5~hkW5tJ|4e;ZT|EhSQ+%wo+4^s zNN_L{Szs{HfHJ3# zSe`QJl8&tF5A!sZRX-k<=VOm1s?q`X+g|(?F^YtcG*{1SsW=z**uus`FuUOhEw>vt z{QB(nc0E8q(%+aYi@;0XrLW|G-@Dcj#w*%7gv;knHXuuo?`+i@_eS?@jI$2BO_#dM>^DVwR@GC@F{|TdX=r zrB>Xl1KSPk?v4!YP2l=AI4NpN0*@S}$o@m6NVBmXaL{a**(|o(z`{~;I04D=4-QSPy#;;GPz`^RfpKtf{z1bqQV-aug71BWIm5p` zbX-y`Gi&Dkp5t@8$@18o;)JRB9%9(GqhTaf59_y(p3nd2*TRe`Enu%3o)yNmEKb^ZogzdEFCXPz*@sDpR#}AY3KZg`o-SFS7c=zRDv`B ze-QiG8R9+srSOM+oIv6`>63^H3;Ev zRWmhNg7uwrZ}P~e^c9by49=8RE~<2Xm?pu?3nmR|T=iz4Kt-848k2af7~^vCc-MA) ze^3viSJtP&N6Q;@&T-mlnL7l&B%8yObBHoGC;A>Mp&*PCu-@Nr`oCzT;~raE`)45{rRU z=UUl7Yi$@`8#j-dETOGUF#UrL<#R6m{{i*jyF@t-H9G9x*Br+4$@3FzKwlhKq}GH& z%=?@M>DeIN^(G6_S_DJN=AsECyk>|J>Je#dij!S`(oE@KumZ1?=M<1dtzJIDrPRMD zF$sp`M8gnz-`kCFPEuicM!H)*;#h!b-=@=uC-L7}gA+7WL!jRvlu`6h>G32DFk*llCkQwYZN%VVD!2_&2VaQvChQX9_?e`=lJUV>M`a-j7 zFa}%_7njZQ+71nNuw@L^oLjkC5EZ09BPAS`fw=H`UwPyPJ5=6c^-zEAdru+B>Ts+F z>zC6gW*3w;r8Z|#+ca2AY(JPMo;ETqT965r5yDlW2f>O!xGpK z*aL!5^xt3_-=7Ek(pY9&>Rbvxnt-Z;?u<}b+0-vOvc{4&!H0tFDe#6Z{^a9_Heznx z%zRF>+|YMXjwcG(K0?VkIpZ*nhTt!QPEjdI{yr8UB=;h|*SoqTq_XG18$IE4 zbac&T!Vie>UF*j9Z=~V?RO1IE$6sJnKQ63D#l*yvn3xDtRWs8)ZQ0?M++h4w(RP4q zF+UU`^P%9qO3lS@FgB6<_+)r}EW!xl-*|cXaVdWk4MAgCM|T!S!PTg4b^K80u~{i% zU&;Xf)rxt{d=y5Yp<|t)V^OC4Oj|f(-VZ81tp8ho2f%yJ8U1OEypU7oY(wE?%PL8j051229F2`m9%?)~>9L7-%X z!BjD(q=1LIcgu7m4Q{}?$%0bWu3G>8|Ksc}fZE!=|4~{f6nBSEytoy&mLkPlC|2Cv zi%V#M;!xb7#ogV4yA+4wnxX*$fk1$N?)`o5{r%qW&3p6a?U_s_lP&A4v(7$if0k{l z`+#`_X{0W+@Egm#T$Z@^z{36frb}8UYS;ef&y0~Dh5HBW)jH^oMpWn+4~V8+Oj}M? zRtyc^`Gwy@q7|D zGgqfG@%VY!Uz_jci7YOG_SB#D`4-XB6VI%iE))V0Jojvk_&*hWmzfQKe<-*(`Dw)V&j7-B zCyk-9@PFDn;Zk!g*?(F==G=c1&M>2Ts7w0qxC0iCipYP4g?~=`o6r9l*j5S|a0(js zQas0~idsYaXUxG9^{-OT=#;L2$C0v5PGEaQe)}ERBTW(ge zk^8a~5`{trH$BJ1Z0+VE`Oon91tcqHu#sKeMwnAKKZ}WHLlV`cOd;!?27V`v zEII=~GWPN*QXLpP_>9yWkqd-`gfwL873I5S(+8kaxW(3w747TBRIrNTA1>sif&dj1d!~rD{KKQ~=sS*R z>lA+fg55HvXB6Vs)U1xySm#*#A1}X>8N!Um&fB|rwiGt84?jPj0H3oMxYMyTQ}Gg| zH@S%^uB|0^T8;;pP|n9wN<6OGR9L$EnCJ<{r%yo*d_^Aa^@m5;3T99j=F%mOICrEPwMS7)=w7mc^srmQS{$02m~TS8@S-}I>y~GyMw;KJwL35-I_RuMOamK>+IB0*-1*D{qXDwtcBh}E#sY;s!Ib_gP4;lZFH*_b}L-J zqy+kfP||Ek!%v&t5g6O z{DUL6E~HI>NfJs?!?rOjN)0GDvbu zn?;p!$Rv||aTQ~@GL{Jn2fxF|cw8rysHq`2sQCrq#m|?TGpy+CIQ#$02h-uucTzw;`ZB`*=r{>>qfY5!anp8PLU)_S9ODMlx z^6?Xp{X(0(hO;?ic-%VuvkN`QK2W8)h&Qab-0H&rlPUCapRiojPd7JpstHS&1>F=g ze>me+EEC4B9*=K{`_rW;?K%7Fkspv((lLKN5>YvObyjbEj=K9X#Pz7)l^vGwvuf#W zC(F?WSDe!`Dta97pXna^@M+#AizjhltvW$x@;)#wYlrwrzyo)0nRpjBQT%E9u9@&_ z*{{Y%^VuB)6_|P|O1SIOF(X-n$Kx%UQm=1H*>&HYR@oir7o8)M{F>QC>ZNGP_C2#N z4EN7`rKN*LN3KGvDsxosr%yx-9yh&hVWRO~PE37k8k*Tskv=}IHdwJP=TwDV-?^i$ zi8)3_rm>~W4sI}Ld|5YM(-zb{IUua2M6aYCI0R+pxy2m zXDny1;h27@+$$c$o665)LO~IvR~r#o^TEP0)?(NZlcI%4<4Y z6VJ(9@07bN=7UPQWQ;!J+D8)Zd>0TM!jEluP3hT)#Z=bBv0`71wlgEhgy*wIj+c(c z0V>0+Vw|%ib5=tsG)=(c)w$3aWCDD!YQ`S(v93tPe5R6bE}8u7vW_SNC3;h1K2$EP zuRiS+JNhaq$!>BJXey`4xRB7Qp?MoH>gDZXrAjZb99!(hF@{xk=2hGJyS?k@n8$OW zA6CkkgWpx^zA2PxY86mN4_j=Xy*JXp@Gj*p?QdXBAnTFPCr%SNGexq zuD|hlD+aziWFUmAUHD{dlu}uq6wLO@%fO%=HdM%v1J1yA!#u^So#b&_5+^P5A2no| z2~wm|8g5>O(PG!j(|@%wujYodB~4)7x%I-!M#)FMGKhB328`_RMh}fY{pv7MIc5hb7;Y zayh%XKyEYbNs@2qx{i* z+0RbvZ@5JK0+cxx!6J0bdp>g?Q?{%=gIA6kj;NP3UA`TCPa7z3r7C5gafJ003^+1^ zRtI`&6^~1JYw;Bso7x(Dz9DaUX-M)%b2DZ^0aUOFwrtz-G(Q!TB;_n^|9-U}K&;@< z^33_jXeqexxa5f$|FDvJ&l`sLcr~O&J$kZA0HMZUe%zz>$q&c17LU_WKIt>EHsI^C zo8*BrChEXDqsScYLCu{(^|^FfV@}WBilC|Bp$5JJ>XR!EPs3NbL&EX(KarZ1sIruV zR1lUM;6}B4BlBbHeZf(-B~s7S_N%!Y^!gQ?dxpn-dfzgJJ;KFVI5>M%{=vTomGrcC z2(D^cj_KjiqAwPE96v#;Kz1DO`Qqm0#}uuKUqxpt7g@yz&+f3H*~3hxBpiu4yQL8|YQ38d|$yu>3p*@^~ZVN8A9c8f!Jga=Xz zUlZSzm2#}f$PLaVLKq#{%@1~3=lU)AxmJ{n*17GD-=@K~WfP($IRiz)BJoBY4k~cl zJy>RE)B;UIO&f_%?M0?tNf0l$hlmjcLjENJA!_@62KSm7L4cXcH+yyCWy3++8*cQ*i(T?N{FybLt zsD9fnX2a(CKdEOkls-jI+btg2NjI3`u1kuFuIYpo-;cIg)XEdmoE;2e=$^U%(ozZK ziSC!J*I%S`^k@WFyXlnLNGF2p_G+|L!ycYU4`#Hmm;nv$>D((K>ZMPK3Tc(jx%#f|3x`r$&x_)M60(r}t z;Qq@kS4d$&!FN02v-uB(VCM6=9c?o)*WC}D_87^*vzYGWA6g2()lAQ(i7|!B-f2f3 z3B?;*uui7wbXqg6Z@TWlnytF>7*K zLtCO0l#tI~-CgxDK#KX6jo{}ws#GNvC@*XMi0VWRR@3owPeE^(_AG&>!YKr+M0wau zL!QRd@1sjY$$X@#Em(qXrOZW{)4X1T%}`tEd^S!qHA5wOt)MC|DN>A>kuL%*?3ukU zJM6+RX`lRiQu^0gFXEL|6Q)=eI8N7i-K>3#TKY#a5)B!w{aDpG6qqclDMcEeXNjk# zK}&FtEems~AZv<0S2KcYOL(Hq1S;i5gx-XW}KDc+FXXmVL~n}ujQBvpM@4! z^zU&0b~9_RYX4RW4<%V}U;u_?Z^=`_ecD|Vtj-+j8fTB9hxe~v`;{3cK^ha5 ztZV{wj$Az%9ePwpQn==}3V&8*8SZ(!#-Y?J6ddWR7mM^SGG2*g^79#u=kY~iQva+_U>asGdu$^ARtuWT2M3ZOgwg8_@ zJ2kk>bL{hUfe`>vgr7Y(Hu-+t1g+xX(sZ_eeqs1KYX=;_BTjw&w|EmTO{0z&$AP_; z6HJ`UOHP5={2CFBkq$w;^6IRPVs|z^{G|7>Xbc5Q@^WR`-cL{wI{4}1s``?XEdvelx zlA?7vb;D^hCu%4-x-R@vNRR0~j|qB3;3X%e9&WKmFBq(Q-)x^zbSs(tJ`hG?Ln$IN zb?L8|i1MwdTgQYxB)`f)L*<>?S5D2NkaWk&C&FRBNR3a_!NSZ>6LNp`!O+0kn;}eq zX)>tIad)3|OR7-k+8{3C1p2eQy}yW-pA3;>rvaeJn-Vv98&cO&#-%}7uyscAOzpu~ymj4UvhQTImJoXFN zNy00tt3Bce^mM;@85BBvgwE${!Q|Q5|GLXGQrhKwHdkyV+w~8+#rNoRofxE%-gr(6+=7cCe172S=c!O?Z*kLe%NT=gv*_ca~Hxz1$|nX4o| zPKZ>h(WqsBY9K{z9B=_H;!ncxpf_dOecM+KzYc-S3P124ay-hk;{P$%&^g@~325c! ziUh_SzTH)?`r)u+I{M&~bi?tL@j4dZw4IBaN(fXX!e3hw;PEFrKsw`MlSKhYNeNqP zdMSl0iSD3SFDH!Ov6;juG7E5&M=9Kk?^iF&8W}Mc34Z&a$&!tD%KbOq1YZz^#?JHD z={+hrmKz%kdgNDIZCakq_dLcu`c!`_8(hdg>Ds3_OXj%|Um*<$PQE%BBNfU3oo(57 z7zLRl?klqqo%1s}V$w`F+fCH|9r~wM*LO~ys0M(+;m3{?I>Vnl6GViB@$TjkZv3vX zi4l@oMl-|}ft_Jk#D7r`Z*(#)u3bqOO+z+l`8rpbhjH8ZWC9|3b+P4lS7O%@O$|J- zu$f!*zr4-$uBLBUvRp7BUGEzbLBEvTFW&0EE9B|1YDc5u-pb&U-rlGdfg64bs7#$s zl|mf-q7!iaqU>3{`?CJ?el-w zG9_|49-1BvKpa535H2c2i@*o^YA46-Na`v}-LKD9_Q<%OwKPDMyJ)ok#V~iX3}=vT z^MCFFG``(q>s+2gubUqSA3t90NIwW~8&hMJbI46TIvc|&%pBi;e}@fmMTqT;~PRYzgP2*!2){H!bewab{OEimKT z`TqgYlB>R(-Rk=SH5#kU_l|=NSRJ8yFQ+$Wt{IC^2*8I73c>I_@w^*Ua_Re0XvZQl zpFquuI<-DG!wknC3T8L46LN+N)xw?BaR0^Z$1l0-Vhf;;Bhq&w@2CaBOL**V{$Rhj zFb>x!{%^q8A2s_iR!g5Le~89Z`TUKNPzq{5>-H#xQ>!S^icht{zf36r8>ZZxe*(O+{^doz+QX%pSCVMzmF3bIW8{YtjT8QX53O$&w73IHrvUL8y z{kzlOeSJ<#ku#J33T-iWtA#8e=d!e3rvClopPAT`CF79@V{4F%jLdViNoS*Qu_UF! z3x|5)hByB%$L_~;#f}n>o&Ohi@0Op-$k?o7PO108IrNczrUX5rHU2{wd-6ugvEO-H zx@?!9*l)@$3Zx|>?3JLP8{+2NGxcP)82{(bpG-`M@5U-`#jR2QotdEofdZ-$)okkJo9p6dUc+{3+>u%adttG(6jyh+7ZuMAtr<56=&^oJ45;2#|X$}9qHg}^^5ijgE6dd<` z-9O6#F;>1?#bpJ;Bv3NA4VLh}o7Y`g>9XRYtI(4*ib%cm;ecNyvrb_vNJ%E1c%Yxa zUAS89n`#yvzY?mMAqU(<9j!RWX~1dKkOqt0r%0EW331~U#E`VqZi2E5GUQ?P^Q`L0 z12S9*iPxXS0sWUuMZdiMk!VX`Mxh%3EclcAAT%pUs$a?33?P2p`^o?>Uh#~>5xZO zsqX2h&NZaui|!J_D!h~S=)NVApf{u&jrm2T)UetyOjWLT|4yZ2w0)!^bG|+94+IvJ zQFzVqZa<}q2YE|AT!wbE!LAXDmvpt#Kmav(KuTiq*s?vP#izb*l=b3449FG_%ve;F3R?1&zw9 z=JNnuL{>|J7RUPLo~Sf~tJKnTN*=TJ`xIvxS zS8flSQg)Z$V)L!KhrLYRIG+pGipMU=_j03=LI9D8?Vf%~Q49O-2`wwH+ExeNYKHA0 z?-0soUfic5@07ksLJ+hY&cIdw=Grfy4zHl$q$hJ98^bFP$i>vxDHSWG|}mv;bj zgRe0J*DOU-OB3O)s5fJ|(nE$i_(%)=`LGQGYHrQ;PiqsqF=Pex`Er(;VgKkoe4{wm zUE)Z$)OuHENfwhB%E23jQ^o;+!$ySTobG5wVY$mZ{0T2ZSVKm2YKMYc>Bk%`PyfI6 z3EINqZP2nk-55fglP0S%!cCpsmJ8gU-oV!R4b=hb|32r+P#tNMSmBc}S*iqPiraA<@3%SM#KK=!^SB z;wrT7mo_wprMEs)CpF8hD@QEnERR+9<3dQQHI^m^z+8KV%F5w^?;zGJGQ(-R6n=fi zgDbaN`Ldv55}QJ{XtghxIP5(5{&66&HFtYQG*H~0WEQ*{oNtCZwn(PAgIYr+eSNDO(gU{9wjCf9~G3FP_67gp3e;z?eO3Wc4y3dt?3358iOYnZ7vfnDrgnlcG zDr#!X+ZxYxtE_AygK6)MM9KIGl)IHZMxOL)RQFv>X&v)@{L3xFg;39*ak_d-&7-5}#Jx-GFKN?pXPclxBCFTodv-G#G{+^j-N4-! za`Qh6q*JLnY%L!7yjF#R6xQ!JP6-b}0wBJp=|GIfnX{*s-1QT_04SU{=D99kt~u&d{vHs1G`qY z=eDMyNptY$I9(0ohyb?aPF6uPt-rUPll@fVzzAgNz4Gd=Lw?ZhVL9HI?LnF&@KX)0 z>Ewqc4&n2y`2CH=)VjU^!2?WIg^JtjDpNVa=jD>v11j+Ul;h=vtEc!}++gW;^2-E=gs* zS}n(kK3jXj-tfI-6@bCiBxugF4Hvl|2{Zb=rA``k)?R?7PGE$$n?E--6?RdOLCy5a zkzf^SO{uqnXsJ9@3+r}Sa3AbD9ge5$;qpp@c{au@77*k-X5L)dxCCZQ{gyW-_F87enfx@2kSk9YUYLq)9H4pLkb_Ktf26ZjCq0bK1DZsd z{z)W^Q|E~VoX{!b(fRbobot@FUDkrUN1j`X#^dEtr}Tp&vLlgN$1%A*%GFgn^W*>~ zhpDlS+f+u~ZHT#D8!F=#pHZ50j;=bPvNj_A?40NPVyqf^;qEovyW3KrVm+up1oEX*@5cQ8J!1W#GK~Vzx7bp)? zFH7sTRj>*VqHtS@{_zEXep0#fKy=&att(knpiVt(zK(glNwA_rN<<-^-tbcGd6tIS zi_I6de+afKCiZA52O5WzRSuIWPSstgxB7ppH$D3Cq4G)qi??i0Xmp6po&B;L(x*0d z2QEqK{co#V!8yjfu7?f_r?w8(em9~m8&Q(nH2Px@uC4xMRT$l+8Df(KU0>Sz&KU2B z%jIh}Zgn&^SI_QVP=WODoU0B-Gyc#10bTvZeGAEK=jw&M&+9os_w0fEm%hhbC)JM} z+|9uSXbL>=I}LU}^)mCnq!bhL$I`AR?NH3lVqfUagI}e?Xz9XA!KL;zP%0 z>>+!>R6uurAkCPdJw}a6aqE2l1?9dszm}RX+U8-ID3ICHShDLo!PieI0yTp%3~aA% z>UTzMD!NepZJTnYy2&j2D!B7nj@>g5+Ew=h5O0hApnVuB*U=M`M?%JgDjRN)G~<59 zV1i#2rjc@pQJetI>f_>Pw}*Y0UwLF{?YgY*S3%vX9dsu;oMdt7K8Gq+w|)XMuFl=R zM9qO!)JH-@a02z%fG;lL>|6yvh-B~chc?5Hl%-6e7$W<8J-oj;t#xtF($mmfAiBLQ z{H@Lwz^{F>B7DY2ZolV_stcLCq?k>2d|WJmyq!U~`5x_@LO8Q4{#mw-fUKE^vm=)x zMEDB8Cjz-^gchIjzSNV5%WKnITn+T_vFq0rOiWLW{KVE!U6ZYxtRl2lpvC;P^Nk-;Xmnt! z}(L_LQ}w(*FhyK`}}J!Eue#N67DOa6yC^omRMG1M6cu9LJgmXy1x{Bgw^hcvL=W8 z$sP045NVf$WUl#i6@bI`RXW9oN_jgfJe+(FQTcNBCQ@Ft=obRFR6&@mu!$6ScMYZE zih0v|STLpNEnCqw7jhM!3TO8&r<`g_pKe};n;ciSPO4EXy?RSw4=G-pv$=HL#80V! ziYf59*{8nRPihN~lI^(eAaWq|cIkwwwCp1cR?xX2e4i{##`BZYlfj(@kG=zb?XM^|)4e%U& z&mIo-H=iFqXbw<+Bc38tdjS1!J4u_ndP!S}#6-0P>U5!;E$ZSL=xkqs!ndYR8~bX? z)u8!{zz!DOO6{i@LUkqs#Ui=hF|NUmzbRHGMJ;>dJPk78>)K z&e=yED%#=;m7C3?4Tp&t(X&K=2FD=Q!a89~e31G43)|mHR!n**XTm3z=4yCQ_Y=bXVe8bFNLN^iyl+2MH`{{xs;SjTzTw^{2_V*i@4( z-xkOPi^ywG{N=Z1w2oEvx;ylA%u(^GfI&mB1|6A~!OmTAJ;ECp>&VANFp-p_YCE*} z+aD1m%CkYc4ytb*e>3P_?XF+0U_gy@r)3p>#D#3qnbuRKWoJ&qj$!i-{Q< zufff5fhM-6bP?HIX_SgTUo(nZTh^Cm>s5MEf2)3yo4bF6c_!!+41#Pm5+W5*TjBD3 z?qbuM#PN2no8=cJIg*wv=R4K?PnXOwOdR0UPLBjMWGFnRWh}?%sAtKf8atw|d(1&U zQFvA9iZI=QccOYwmK}R7HEWMgy;Tg+YsX%1HK4T%?q?`gOD}uXI9H`0J?bR_RZLPH zmh#dkbYF3Mw`p%+3p<^TuWOth->|Qtf2b9rf{|&O(+$k^OjNoVD11r?eO86)tsv`C zv@<8RV&pjXr$Z8Dy-bi(7vY7jZa8QdEU2MYzzDw5LLnP6IURl%q(t81^&6>I+&)w3 z1U}tiRWU(0lh-&^H~TnA-$juLc=V#NNL}jhS1k9m4Y8bsl(UJn_6(G})0u7GUkjW+ zgr(Jw4!i-5xhbayKHg8v0?ZYsAB1Sd8Qic|JXTY7^GlGyZDDZ?WfQW*#)%PxQZKye zw;rPtCV)fM=nxanQ8UItyKSkZjt!yvm}~Zco<~@ww?De+1myf&_}ENY4>fIFlUs@k z4o$G-{2lnBg>I!cB4#E62|{%FWsG8#*5ET1oDqXc?ckbDh&t*?lf%*Mj%(i?zlB-0*86=+dT}<8;=cim2 z0UjcKv*-kY?s(N*=h|oYNKIu@S$#D`@>qMngE#eO16T2^n4|RmJ{pfca+B-9e|2It zTZGzQxbbV?2cGmPt#X>U7pWy~VE0td$+INyDzlr-Uz+=k1mXymisWYwr58_)VC0pB zb!eY($g|e)o-dlk;`-wbH-m^tN3)Q zV8%M7Rb2Lt+}FGR@Id9qo@X7<`3Xl;kKq(j32({0KLQR_tg0e*;qBob&gMREXxZv@ zE{?oKS{TEMBUKsrf`T0;N6giGNm9lYd-pe{_KS0^Mw%$d@Jsjidd0p;L5Z5>zJPv) zXu-ux0Q`WHM+Vwjg2X^#?M2oCaYnUtD@IoXbUtPB^IySuy~jFvD;PW>Bq(f-Cwm( z({g@k$iHOsLf|Y$rmq?kNcdC43nvJ|Asu)J#|Z!IBu~=NP)%uBDG=7g

    gnwL0rjFhwQ}yrpo1(y@8X7l)xcc9}ZX6 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

    A(b~7iXdlb#7REzrQvEqAr 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 z zH;%t;O54Zg$fca0a0_sf1B++^uI=`%k2uq8*$rDLyxEaWs`&B3T5G>O*O{)r_R!JW zbrXh1Am$hQa<*d740Nt$Oa1UDkQ8X-P!H_<<0-dcb;)9D#arvB#IxYO$)Y8!do{{I9b)?VXW{{Y?(TLOLo3{sh2? z8He2B$s^Gfj>nj=%*M`{%d!zt=dI8z0H*M&C&`hcWV21 zxNphvD~eTm9A^^0)%e4gOhF+Lk_3NxqZ$-_ko|afRVsdn8(u%f;@vmcDeio+MMjLq zJd5@6hyB@}0>RxX9?Ff>On)iXuY-u^d};^3P*WiDZA166__kJ8e&>dlcp2w(N1I>a z00lAxWAwSjPjynO22mX@GzZE~^ncGT4=E7mTe=OhrDanmXs{nC_S(qUw_}j-L|31= z@0JahxIlWIQF+<0;RGT7zH>40O1Iq46JBU0|9T|dO|w#cjf?TY?#KPb3b}3old-#$ zT8`$I@FViBzuD_#$a_X7E z-9Sc@%O=~xGT#r6_&Zm-#d9=*x@tOWOeo9zEC69X>$&niEh83h0DtpCT& zEq;%Qo{FO4z`q-tP6Darzy8Yq`Ply!meeZl`?0{_V2uA<@V))d?da8t`;`N*iQ?l40e+Q?o!x;7wyac1 z#o3t)0D2>TTL$J&FX8X7JlvnF%?8*HAgA!Fzl z!$`fz-+_EP8)!@o;;$ZQl|hQAD~a~r1re-BXXc64onJz;QKx{*uEpl8nwGBo!I2Y- zKx2&y7#aZGSj0N^mN~%QnFZ9Nncsl7=l(NR6>!Ei&)ntsgebnwI)c0WxmbOz+ z(eIOzix-9-`O7gy-?l-q8=pW!+El~ z{r6(-$?|zF@Im1L(%PokNp8DcEQ}8D_y^q|=UC^CM7G9-ULPM%>gj~{p~p{NvJM$U zw4*J4_ZlHRav59Zv!eZ;{o)rPGtiTFcARd~UiDCwGTBw#VH7iwA%;WTzn?Bd>rkb9 z-N%91`a4^AhL=2v@q%*3QXK9q>QqC+_zT8GR_`zrhr;r?V{+Yu$xoY&1UONxW7kP= za>{pPEGt84$cLSJPP{Vmn4L(;Q*Ua9&fNn)u<<2TWy{M&)(b&M*qf+3UXJ0NS6W0S zU6Mg6X7&2p2XS2$h~cDUwk||6=_)^zaPo5aCI#rSSaj$V05z z`~Jy*!BZ>JV=fK5dkpTyrGptV_p5Nks-OUzI6ES4tcJGvdf)aKEOegOWA@8Z6`xsj zVktVW^iS~uiKa((7rS0*-p6nQZ~>evduFWZ{HH0}`EYL7<)ZxQ=U6<$77E6L6v|k+UmK|eLHl4=BG;H69DVM_7IO;ElW@Rs}FIKFsex0=5 z3_WcR2HaU7U&y5)>Kv;HY}`heGkNQS^0h3tbS>#5&0PPP@@l-@XuOPz4FbxM{&}Pz0exqGW3P+w@`|~wy z*sMd?B+mm9kXc|-pi530RHLG=hp0gBToMW(?hbU%D@fZN{RUVn7zF|9&Cf^-UK?a`_AZ zSo_o3cW&0$-LF!aR_A?!iRJ~Aj!M(Ot+WR`v4_j@`}Uh>RG1uvqwrVqj}eIqwR__3>n~@pSi(G1BB+Y9N_`Ex#k^NEM@w@EejW;_X&ad&2oCJFK#W1 zgZmZR#V?@QO3h=teeb9^GJdYp3FR*)#6LZPvE5U0)6+j(PHx{EQZ1O5_PwY;vZGpT zd}%DOm&!GHk1Az4YPWI%7lgDO*mOU&QF*t9k5L(?f+v-$U_KL{H9G!b%(x4~r~(fU z+yxVqc#(u2_K1*OftH>pt&=J6?H+T^jTG})v_;EPCJ?9NilUKgh36Jw1gVi5jFD9k zt>4t$Tqr{2sX0@&C!eZrL-N?OvjZR>sd6fw33bLAobb_+yR|Z#O-tDTt(iSNNl#Rw2+HKi z3ad+0TWBB~KH<(%-h{%*jl#J3B%=rzW5{S|zuBVwt9r}wuyfINa``m(6J=34_sAn1 zIW`**mt5a?v>-pO1>fNcLA~9OPqeQtMPvvbzIa3IO;))n0c(~=C)|W}QeVfiA36 zbFK^EV{Dp}wQY-X;lE{s4zDcr`&wxX5#8m}4kWjoL73myg3xeeXsDX>p(pOB{fV(1 z%9YWB+)w?#)Yi*=g$c`!7BL0fED;w|-k=pe3kU@InLsW%EUge*VuJ(NytwItsTuTpd#yr9WPo( z3+wykg7|-@nhtukctPBV&xsgj?dH{E*{XNC`?B&XDEHm@1lz+$FjeFR&j~LY_p*P? zhm36@SxtJd)R_xwEHc6=!SwwEapm{5`ZbD>M}@ZSJv}1L4hQUR2;b?P?(hR*c)BO07u+}`FCP2~=P%_j zv;Cm#n{SZ!0i1M8*QVeTe5pAU_x)^5M#0gr365{oQRX?9XI7_@uR4+ta+$*NpCM!V z<(?83lW&~*x+U()?C0wo1}SDt)qY-U?l!tkwmohWx5@dH_;F>A?&jUR6Y`aC%VW-~ zW;-SIR>>n!WP7r0Irlx)68Sae=iyHBN zsK){?G-+57wm2gspm4zNd3aT8k!j%h%v^;yeIZO9f_e)xVirRcS>I!AOXvcef;^np zUh5hLXQYY68Hpks+`ibJN^h4=XhCOgaO}?N>Z8*X9pJl&)JDsNVsJ5Z(^U`KhTo55 zJ5bC*DYiU|G_fJEpROs{yIe+aO)xH&Ks_dE>UyAk@I0Qq!x+g^|CuKmEIb4fAgNg3W1NZ}Hr)n!1%I_^-||I1g(0exfyDs4BC3()CtX zR_msf3}c!-PiFAy+Z^KSX}#^En2ki4xZ~G`7}Jz?-3FnQI`QSX3-yS1(_W%1zRz2P zZ1W$TT-&eC&)@5?86(fjG?SR8X+%_$1_T7AcuT>tqPlVd{dk$gi91`BvtIQC*H#?% zILrTr25CtO1ELel!;<32rZf*8N51{O7|gj+!jx-jD5@20C-rHW>G0O(R6top?ad40 za@(E30t+QtzbQCa-;};sOdTp`zjB32MPaCZHm?-DWM?5#tUHD2y6KY`T=eS#pl!EA zTc#GwrD2>~mw;nRPC2Q+#QJ(N)-Wu}B)cZhPv@zS^>dd&HLcE2kTJsL_L+(bLVy3$ zHxG*bh4V%#U@^}3d`btBxIaZlM?WL|H6=2dKy>i-1ygm2%&3ZY312xhEfo(f@Eo<*U?U<<`61%bb!xN<~4lAj%n|C#O zYd@vT|8W6&ordlT`H)Sk&qcCYrSj%5YV9FzOCJNr*c~uktgdDWqHuty>LHA>Xd&2l zpK7R0ZX{lM6OaryWZXM1BvCjaUq~dG(}6RuCD&<;y|^?6j?78l(dY!4rtK zYQKa6V{4CZaLhu$^Ht_9jYr5RS?gZ}RHC$`RzC-)^i6M6)PY@i(qOoup`ncVXHQbA z5*gC9ps~@62ifg0C(Czs>P>pF!9anvz>ue%rpWwhoPvIoAFLoN@;8d?W>$2SNKL`2 zy=&BS$p_3gtl06oxyG5H&(k-;H*L4?R(Q96z$>UO36U~v)ofc%&%BcqK<19$!5hJD zKbq6o_vqlFkcWj_jLl358YRTNVp&vpYMqk?0!XowO_u|j&;ScqjoEmY7a(%tDoi@*gVac0| zED~vrq%>Id3z|rUH2$5xSQsZEQL>cJX#{^oEEVN66p<3e*bD3=QV)FZBK%^gFX59B z$5S5@JrL(s9`%C*S#6>1?pWAUx|^u|Qrm+XN1g>}byS>sBZ-Y{LJ`bJqM5ir68iyKQ zU!f|~-89mSB*}I-?{rIEPio%I$4aHMg&G&LHW?ND^xWMBu?WdDzk9u4d7 zRJpj5ERpQK)bV`a)n#Vt9ia2LQzaajmAw-?aQpDnu~hi>vz|YIa-@L53iG#4RIm}? zTm_YHZwMs0d^(l!*lN%3b;IefoMMR`QLsaQ(bNjVZwzBMX{pA6#yFekx< zn;cO0en+0S^9SeCwPuaxDwLRNFgC16Yr#` zxwL@RZc0Du>xYty3+^Y@JRF(Qjj6egcBd*MgM+^`g^jJRultY`4h#$czpVe<@NwUz zdCu7x_UZYX>QWo1g}puJ($bQi0tiHtpP%2t8;(%>*bzZory?Pj|2~Ck4e{9H9;BiJ5Q!*@yf`=jt{a{tMaBls-Uq>5Gd-(=#)uSXh*>jNtC4 zzwTFnfLrt-m-ibdj521Trv3=(iug4@F9zUnQ7<0a(v*X`fO`=GR{#eF+1K(v$=#DG z0OZXIA23H;{F(8Rxg<190w^T~UgqSs8K^;ZX#C4yDEJMh=@IZHD@qeRKzleOy#KJh z{|g`d|KO7z{~P>#KrtT@N`LT4;Bh#y2`roXfPKfc$`(0Ygl|27z^?t_KO=bY=SB6I zpb4wHXXu1p3A_Z92cu<|pU|}q<{0vh-~^bwVa84MM)2r_BCqY|rfv=WDnlvQcXOaC zWU^y;3udh!sVefZFeUy+TFb0AEx*> zirhV>F;K$H;27hbp6yH*S6i~aq{yerT^Z6PQ-%62KQnKK(Lf$od+KvAMAz>6+!vnV zHD9?|atOheV+dzbutBWinO@mU)8YqqpyXnRT9%e=kn}7r{!N7$!J4|Z2tJ#Q*i+293g_45{T#o=WIE;SIxQbq|+dcy$S+j_WmnYK*U3PPyLb;oVd z^a_&E3L^SsoPNvl+_n~^tN$ikSDVt}$AR-G!O;N?(kMfbQBrj<8(np6cn>X`ZeMR* z)P^_8KzaUmwy@SmWdh*?k*05|7}5vSu{5BLBrD$Gn5fVHZya*Pgg^%eC+dylf4TJE z*mM+&F`XEWg*?#WG&-zZT}fNCBWEg~1;$pC_Wz9@b0R)E>*f_fI6Su;R0jy~SL@+c zW=E3ny8G)sF*wxNkMgDO6umWJQ`v;b$*WTq^2INODA8EDv+@SITlEIvi1@CjXQi5^iB z(~>;XV<>L#(XpI;5gq3V?!1y3IXaPyTCAbGx;q7><(gU8M8}7L$Qa#a>Z>&Jar*H$ zW#;JH^yV-(=Q_q4*ufRn-aWzVT4%IkAWS%BVW5281l zGKpSMpdG5hfeZy2Bkde(-#efMO})-T%~YeWwC;Oju`QAq4GQK%Obm$#Z>NN9r8|3+ zZ)?p~rn053$w!ytDa*e>C9~YlbGCmUsNPbR1b-kjm%wi@0)N!2XGB}(W=zeQamcE~ z^xZ*|bB$qGPSfn6PVqqq&zqMU&?`voniGTZ2?V<~n?+s^MTpZDyl9UX4jA)=# z-}Bd>Sr{ED11AY+wF=y;a~D>Mj?GGRti6*m=qoX~7YkfRh8+-;m78q`b5RQiF!Xxx zl4b=`4O&7)t2TmE-jRDZx9Jp2MkUC;F%zBd6FKTE$+E4|AR~n9*BTJbZA@XwJHE9x zsY&9j9zBB5MNa&mhzerVj~DdR6GZ>$5p{5YCfj4kJ=!UKjU2Cq@;RQ3hIbt|7owMs zC+y}1pmI?2!|5PXE`{3oQQYV@`hKqR6Z9=D%hG* zLEMfQ$9My=vG@nfPwJ_03fYke;9|xiknDuF?Gd8<{yO3TL01kM_Gg6Hq5|6~8!79< z#9GD3qd)TBAHvbwX_VJjA)AnQ#ENy+ye9f3pALHYBlW6{>iE@*TRMtMlL_PH4uXg& zWqE?YKv{TnR4g)Hq)0uenT<(;CwGk`u;i1MO zxKMb?kX)y2kr#^6 zNP(SA%_u4AV<~nW%krZ6xkXh7o(@*`FAaBuZbEw!+V%B23Ikp2##QunpkhRcG4Yj* zgB>CI3HfwonTP0_$N9sW97lo>+yG7z1+qPc4hgig9!k>{+uNg(~J2ZVZ7nNq>lzSQ-tZ#NB zyEa1`lWNN(rm-~+b|PXFZsPq>@VYQt-K3PXeOBbU436P0Wi9hzJ*JlV z%(Sj*&*Eg~j1Ibi#~;Rf9;5c2#`->VJ zq4Zmr4rCv-`+d?BYY5dh{25hg<2`ybmdIsf)^a9OQ?qDtRJQEM!^T+)`dl{poXjs3 zSvF;KWjw;kC&VMtS6fMQo@bK^DU5RpfStL9HTorOPA!16&4tcj3~o=s*tDWO&Bb9| zj|AkYHa^UHPY&}{@V39cT+f}E&0E}}6ZRrpISZxdX$@WmELyTyMw7U&`UYufppQDr1UxyN zx6vjm%_zpokF{ehXqxlxLfhaZ@wnX`w8h+!q*vGRKL~#PZkA+9uhd~`*t=8Ub!OFP ztnQ9WqCKVM=r~!;lJIdgq34x+TfDB!TD+dfcsMJ}b@j7e7lD%2sYXIsaW1{(q=}sN zkHpTcLoN92^XK4(p>i>hC`*I#n=-Zp^%)N+#OfKMw<$or50gny!Q1_IR(x-&Ta5w@ z;_@DUMDJAXxN3yw>wYbszh4`7jXPjiRy!>{Vkoxah9X5fK+WrdfG2bpagqeDkivm4 zt-e`wAM4r|Vf;B!Qcvq?>l@DR_l=(x8Rx#nvE=@CR7*$-ZNQ=oO2mFduGXBLvheLn zDM)sE=5qxIXWG$PQOPpzT&T`chdB$}V%a`eu`Tp_)9lu>W*0Mn@ z>0x5+Q)=`2_NBpEw_69izE-_OOYAwRrY#xHkS3spuHJbKN0y(@Dc~v&{gG+GDyO}g zBfz8u3Cwg(e&y!Q8=`qcbtvQrv?%Gjf&{Bn=)5-+C(0mMl#9`ihU&4V5|WxeJv#HE1Oz zUt&0NvpeVk6)AoXy5eitSdP$q@mY%&**WVi*RNL5QV73F!!6z{gYH&~!V`+oc*@1w zMnxWHIFNsx`?!;83=M}XpISp*bh87^vF+}ve}#;a3(}LrwPv8=F@&f28oqRI_tCcu zEA~?Iq@KAC_X!k@+#3Ff@5NmbA$PZUVuDixlfh({P{rr-rB)j`Co^^X>oGT_;ByDN z9a_rn;7-C(>D%kI2ED1CfrZA@Kx5~Iiy6{c{;q?#2<1GhnnMXF20b4|hT8j$?)UgX)pK&4C6SklDl8Ndivg(p3ZW|z z0^Bc%8s;DOYu=>GORcK9<@b9BWZ$tTfdJ^D0|#wzPI?E?YU^_%85rf7+QfBDwJ9qe zF9O#BUfu%vb2NxUu;^_<$+zy)P8;UV=R@@EOP}fUx=TAgC&lh(<5GdB&pa!cdZ%8# zQAh9Txl=Qe3>lj3?K42EZmfIADkIcS9lUs1)yr*dJcUUrK8$URGN)k0Ah#hqcuH4UZqv8+@ zrxn(+7Hmk_>@3qk%?=z*WZNk$$r>EUWBg0?2;(DSEBX=1YmfUlq}oxf%uv?uQT}IY z4^sWngu5hbs%l&=wxE;JMe5rL+ab;nY@ zx!)m@-C$2b(;@ds=aDFOBNHpN&Z-R8^Wxoxceg_vt*xmw==%FostlL|ta>CKzZugR zgIeK@V5Ik)^s{kDs|lkZIi23+G`cOD1Tw#?kFr`Six4$^iZ0KqBA3GbRw{ZH7nTc3 zU9W7`N$bWyZT6;I7Eh+0AD?iWi&MrWJoLp4o{0_c1!D*N9DQJLOj^_$VfCXAIcHYHj-6`FfN`%_h|EeA-u zJC5$JK7>)!T&#=$W9b=C)MtA-K#Q67PUs$*%679>THNwzy+6G-;Ul~*14`O`Vh{|( zGv@&s3VPq%YL5QQ_cm-DwCgnQfrx|m z(NC!#2d^xUr0SYTBYFFB#lD5K{brT1%`dNo9?QmdSz=9YFLB{o3Dc_)pk7n^_qN0* zDmXNt;sOhyG}Ba*vNT7$9k(8}vh+vrZW@EO@Ol5VXS-GF+cy|~^@FHdtt%{yX-g~u z9&lLuzMrBRDnCQl|z%%YrviR=1WTC#E87;|Ty1i$BevL!ScENT?_yybgTb z&r2EJ?+R7Q8BItCr}0v{$}hNiG$*5k^Kuft6P=O+@7Fs8PO#7<{2~7WHL0lK;KPbX zuN_&Y;x#2~#^^fVcIFxvvS)rPL!N1?E{ae#=c*=Wn^!Qtkz`dbeY3-_ zJ7yYAhikX%88`77)1(lc$rV1~M&OHzi5eaU^SO$FUIfUPl`R{oLF4_GuZ{768Fx{L zP0MWageeRKllrO>)kJm^Z}caIiI5hb59AuHn=I=G;*TN5#DtvpS%@0?HhYxs!-AES zp%u9S6^hAn-F8L=9^siD9JqwbWe6Q#*2`2XEQyd#Tl#rC(iO*+PaCmqG%3_OrSZq% zYx7Ds zfFVv!&PSW?HcY|FzOur5K+O1Ma4=#Jh zrP7#mqspMQ5uNIYjhf?d!^CCZ z7&NXHn@AW_X+<9d^q_X9J9$o9mQB0D+H0oYDh3pjnH7#)9jUQrFQha1kdRfZbC2k@ zK~u;bAgL{BRbiOgJr`mgij!(F7kyICTQFQ+|&`DSC+ ztTQVvhv$>Gr#eFL1ltDKPj z=U@~}hE(Y3a!yD964G%TJIZlFq|(v+9?c`4DJeBGOiT%>Hd>pjF@Qj76{}{d`Bzt5NHWN zPkXSZUqwq=mC5L|*8D8|Wra8uELX*>-)TrQS6a64tv-|O>#JlVpAS1SGsq(Z$87X* zQtk11 zR^4UxsPjIIXnDp0C7UHwNZIhq06Mx*lR4II<;W!}6i0kJU$m)T>ww#*`rAx^&9U@% zo8^hruOyv?#VnR3j3_Pm`0ZcKdQJ|C*2QwqXZif!m-kIRsV|y|Jrk51xtI`rKj&i` zt_0pLOr=V0I2}U|kDMFXM>ZS-rW06P>#45uOE;Hk_j`t}bIw|C?xlFMEMV|+W0iHvM0Xh9shq;sTf(P@ z%#w1)*h(iY9q07fe1pWr1Sk38r8k~&QtkMrE8jG?&2eM&E?APqS*#Db^B=YrQXR`( zUZRwz6`_~@s zVqbhedtB-*me!2De*r_CJ-w}eH{}@s>01C3+0C62QWNzr!p}JW95DiF=c3;11d-V+ zS{h!Hru)vHQ?+iF)MFVME{JXXhIVo4NcC1zVe|-l4dGPtQxhU$0Uh%_(UWQ8%UzJP z8~O#<0gL0sg!WuUCD)=ZXVD%oEM;%9mIzK;X5 zHt>_LmwfJ6(8633&z;X$xc)Rxh_>80XW`1ec?U;UV`2xk@9ZIOjCNxI$iJxnYOiRp zv^iimt{eb@vPvlr0p$H<2L}d5`=+nV!!t%1e*;=10i|^waZ-Li@^0?u*OepeXNAD@ zu7(Q=mrFyfV6-LvO?YA;8QS&wW?YoQ=9Eg%D~rE8_qy?hNL2q1UcdTUkB*|yeD7ut zW5;vb&2|B3Uw@&H+Qz@p|J3xx4x+fa3{*hvjJC)8Ynvbn0OBxXz!f5a&Mhk6P~YPS zTKw0gPzoAfm;-dz;(4H|7yd_|J_6{|rw;`bo>Qgxzekwli4F6FcX~j;BV1gK%AsGz zujlxDV!ud8N+LuO@M9R_Jur=b{0vr)dIsRqm-nvzU8#T^9T&`)$IgjJ&YG*Jj&z#7;)6wnO7+2T~z#?u3 zX1?Ih5WalQ!{bz&{FE9L^x~BQ51|E9vAtcU1C>i#@aKa@4wLGPkHa!gO`mveL(S<(|o&!`#I=^=Ll@l)414scuc>vt+q15W3 zO&M@>cN=4w8N?=4R8YIX8M9=Ssm_Q^9bmR$)JhV@)YGFa)S%LH^BD^DPjTD27NUIW z(yga(5kYKt=={dTmj?*WV?f$Y#(t-9NZui59A|PS#4S+=)H1T9Y;p)Pe!Xa+4u#1x z36sArvSsTG%odOw={CTd+OM#FMwnM!2`P&W7PRRNh3VwJe+6Vl-{k;{dnyO zaGGI^fDSyslj03t-BDN%tY@65h_4nDepe<_$w>FrrqacbE93KU5|IhinK3=(BeNtC z)EH5OwB}*@6E;aV!0FzCv*Axj(C<#nk$;ZFkoSkTmtzNk681f zv{mu@i|2#my{9h(QN%1TBgD^0w<67s(@TskQy!-3_wkCqUEJiL zN0T6@jcft$<19c9)Zfj>l(VHT-Oj~X z-OPV7y#vwtLYyfe>fqy*g@MIS++ypCpK=A9fugadx@cbU1_EvyF%NI_=8Ik9L8X)c z-&HRg;Tx`fA6xG2EQX_B+m|BO_3bI}Mz|1fTc$qB1`<#UpTVEk0KTEo@Y`C>R6a>W z*b9>Diqyt&^_xY^VYIO|e0z3uTAr?;bAu3MmFIP<*^4S=&tXWh7L6F*wwr(EL;4~TpA zQ1hYruVle=6-a)c|~inMXVJH1m7)xmYncV0HUh>3N( zttg2{hg6q^mCb=J=3nvUcG%|URY1Mg3QHK^!H>u7XiADn(zC_LMo$jH_wBnn&WJe2 zoI?Fe6OJc9&%^RLZv}vmsLsPgZU*d&QwGzpywqVMw2QAV7Kl zn9@ri{F8agTE8~7FPm0tv}BB{dE}?c3rCnL3OI>1ae9B@{COXe+n|Th^4sYvRZe>Q zV<|ia_=u1yb3$(x_I&7-hFRWklk{Ir2vFi);9&|bGU4F0 z5Q~%@K+*F$xFU2oLa%c?K2PNN)nWZ!x2GY?Q#0qfKdy9&=U2eSj@%#u;s0Xqt)rs+ zy1!ur0Tlrer9-5oyUU_WMH-~LB!{6!kx;rjL`u55b7-V{XojJ4Xm~DA@9+Kme$VfD z-~ZmV-gVDnvDREObI!TWwa-4Ez0YUwjdG+eD!5+ttN4>Cg$6@0Y8cT0T- zbDHvkQ~-VFml6bOWsK&3)howy0ex;&-a-5J|G16fs6ove`RbwM+XRIxMX1}_r}#Eh zf>sP55)9$VLy7iMiq_yGlAo=)sKF?5sL0VbDN32f0>EcKd_l%Dt8?(Gz zjafv&hBRxEw~ocYaWG99&=d6Xal=VPE_+Mr#=ZCcl-R@QOL@g3mnc{yVsO|K%LRO^ zKS5xK!C(Y&AZk@t5t?N+;V9c-<~mTvk2 z{VFcFmSeta1EIZ-S%nEO!M<87gz>{ z0g*1J=0<%){uj!j8{v@ar$tVN11*H$r@A;x z6qg(2I+0bmT%MmGLvyV5Z!*q&?P#}7LKH3E>!^N)P+Y#xtuXY0y&jP_tkv1$3=g8~SSKnAi`0L#%JlOjJrIl8;8 zGn_tF7|dy05^GVQywJUDZf?FXq$sw`q;ujYsCpB3mT&j>)_`oqTqcDRmd7V2SxSfZ zPEJmMQuKx*YI48F>5_)`yLA9Kn-S;0`w|TnTED5*lI?QF_g=G}D&v1A_EQB$07PdP zD7VA{zjU$PEE{9YRQWHB{2t=(fg=?D$9Y@Lk<|E0T5-ty2X@^2koXp`bKmUM8^iyb z-qQH@$aCsX61jf&uOrXv|8<=jAlWGY)$`XQGrav@Q1SJ(B_I~`Um|cVLjfp%MdNgB zAOhHY-!&E|Uwq~gQAq6a)UjNgZ)~#hwTEDIU%K-)be!Roi^5Cyk)+TV(IZyoFSEI~ z2JFs79wuLS4Q)15MRh7MPeZmHqWX*H_yVj*@5oa^dOVb#+`WuWeoJ#BK1A0#7&x{c zxi%9}h=zuq9b3g!n7YLpiGh95`{5j*G^EDltR9p}QeE(jmAU;R-^#n=(0!n`$w$;V zvlL{3=C_Ujh~Qe!(7K_>Ww%7c|cNbx}f`u4>yKWc@0KpI!I5zwR?Ti z!gTDI{dBYj@RB^p3ep*I84OUS>h=HA-b2Tz&rH4nVvE?KBCL8 z!)NG94ZS_#koliOozkjLW@Y;4=BIiS$KZm^SDoGP$RovtTXY!xbS%_?HS#v$@#?Kb zT!kJJ(jFm^ZJ-P!tQ@a<>D4%SMUf*Tjo2AQ|16)k^5vNA+Qm`FxfnD{1XK6v!d7f9 z?@US(&TE};N->&-09BKGiGjbM*7`6Qie-u_FE|OlqIG^k~Hbikk{nW zV0tO%M&B>nytcz9=tBn7YR+5KNn#5NmH5qYi6U?m8%k!-dE~}S;QM5>_LGk`8;Q9! z+b(Wouw|Ow#KxvIx}YS>&!n%wEA#PYCkE)HYAxJJ^NOMjEA8gGKW z7H2GJX;887u*tYn#f{Kt|6O3j64pVFjNT4A6B73mzEi6VO#i%HNDC5EK*4toxt*0#Tt~d!du--hgguY%=dk7E95YY`3xtZ{xE&4`k$}y!w&MqlJ~6 zJU@4g5Ux1)@PjyuMB1Da3T46+=J(DR6yh42#733YZ^eny?Jr9NU~U^+iS^AN(p#?_ zP+o=iQbGpm6UIbwjfU_!Hq_ne@siydxenoXUD?AZ6|15USo-6Kzuy0ZB=;Wj6(Tb2 z$FG9z87_ljsg;v$&38bV*HielBjoS$98e7gK$=HY@b1c#$%*+IDApQ--Tthip>3E4 zGA9DJ+(MO8YUtb0-F81IFVJAWSQg#7cQC4CqA`c7Fj+q6a8^;7CdGx?gm)`2uD$;ts-T#yXV>+Ix_;LcL^ zs~mh3_FQASWP4i@(`=hGms&A4*h=Dx!6E%}dyCNW1E{OBTxtL{iSqo_B(4Zcdl4Da-Uf*IW=^<4I<$(??P_YG`%vkRf{2d`toW%rxI^5Dj zaXvoxpn`3FH>hG`bU(in&JNDA^v(gfA!nUxk%smCezTMF!Kno}A5P1|=AZy}&l&}X zN*8Bwn|x|rVaAY2553$xgBXdwrEZ_82sNV566>djRy*XD~z*GA8d%-5_9=_|976}DjBms_+>Q*`o5hJ zV@Ro3s6G0R~e6J(kB^H+OdPE4Ur#JGroN{wKu+|Jp-q5O=gb6r`+gHCp8jI??>_s$=beRzCwlA^CixhmH&nUkd zp2&~Q!(*F*FRsFs75Uk^LafN+vZ_o%C1)x9I#-ov>I-W8*uC6{jXIfG1p>ww%IZRvANC3 zClXyHQrqeV!eN_rPbu%|TV9?ZU#qIB6(%$#wGliN9pt3ga>8=W9P8~h)QpZ?u0Nka zCJ$kG$ewyj98H#oHbbwRKJ-`B&7NfR)F#4>k;2LS!|@#&9{B3o^fCD+0}GgH!@Hm( z@AAtBJ^34RSPjV}?fDxx`zN#QNjQfQh>BggcB>gx>&;>^y24d@`>8Qvw=4Hr$187u z#C#M!xu|lZI=^aN4FAQmYXh-=9FBI5@BS~?rYN#V@Xh_LF1J|Ed264WW&((>0Xq?K z4uF7e1poS<-M9bm0NB5P*>%pX{{fpr75>5IKn{gJe!t(t{|B4@#+U^K+mG2^3C0UL zG6L?TmYJJU4xt=O+}sC#(LnNtYp*a+8US!|w;GpVgYYHD#l*zU&(D2o{*)i$Z2kvI z{l7w^E@^+QAt}(mO)jSlH>H~V%a<<;u11xsee*fC1n+r7Ja0Zq&NzLlGNq*|V~fy> zV>8hXGIt`}O6|j*%Q!`BhllJ?myc-oA*;>CReQE%pv$Fc+VRLM$6kGmLweAOAlY}*};acTpOl{SqS?ouCs9_uXn5YBHET_gl zCXX+*!N?tXLt8&`T)?l2>1rVyLya#TRETQq=^4QE0Xp~bO=z-WD7E+MG4b(-g&f5Q zD}yuEFOgU)4_wmY$F=13Jn(pm=36DztESsdd|2qXTD}SN+^ftle9Kv^HL*JxS(6`Q zCGL6`Tbjm6g8DT z;lm_{-h<+2;XMKm3`wie=F9~e0KBgYSZ3D_^=u#+j9~=3r@nf~#zj?1RYV<+ljT4s z4OEk@XUQ7i?oyy*n%lZGKI9EHitYYd?jl*s+LK3XxGVFrdygUKNcXNHm3?erog)10 z=xWo$`k0LkbT7LYt6-zTF??y6g!q|s9)1zymn-Svb<89d6{7+_pN&hsFvE7jjbWZ| z%`Bi|X@1dUz{FsS`e@g%S(L!$>M>Tpy?eX_Z!`>`Ut&XI+H$3nhtgZxV^|28`69sltta>WQ@776=6?1SZ?#6gVikI|g+_%cFxP7>P?S<;bWSECYy{TJ8poZg z_43{EuDVL&JouQHf8*TkbVX*m29AJ$#Q3j=Rx3MO!h22>KL*fan7!IELW{Vg%rNFw zFGN0$ZPL+aer2q|w3i~=_dJ~>;KRn;>tuSCI(j$8@-=JM6Y7a62E)8)lVxZ5ka`%6)ES?lqRrU4Iy?$``p#@ieDP;$1u0n!l6tk^1^B z(Yum3Z-FwD_eQk47s#WooT?w02rBM~m2lPf3Uyd=rqveJ6`EO44@1M;FTZ@gY*_x4OI;?x>GufQuV z=vp`Gpkcl&NYRzujP@q7f3jMzyf(zA>c^+rADreJ6peBnx!%n3I*s>rOhpSly{itr z($aKiv|l@_!7o;3z;y}mp;JMX8XJ3^Z5=PRIvpi#Z(-yTtJHKemRSn7YW`wqE~D@Y zznzYZ35IW{E6o?qZvFBr^IMy}K+Z-h$Faz;Xw}!?IxKd4qVVRp1Ly6s?5eotgusn# zTTj}A)+IBt@ee-qbkWhHJ&mi2HqZHbeJ2v5`}Kg13IM zb?G0@2W>YkYsJqDZ+B3^Lt??2A9Q02YPQ#vDl)d{*lg&1NwhzC7lO?U)4=deE67AP z>+X58d`rD>QXgC9fWcFCI&T5&DTZuZJ%p_0w+f`Y6~bd$v~95uTUgVA8WGJFLUOxu zeH=M1gRFkq>BbPh%5<@E%^AT+{DJb?=Z)sIhe&xOn;ZvIArs%fjq|qT_xKic#ZXNZ ze;y8hmUTjWjf&_5#~OiKrH3-ZgwcA^3iKSe6L`dP-LoHc|8NLvmgBc5S9&vWp9nUg ztsGIk*a@pnieTqEbma?E9k{?SgVvMT$(VnXGzp0>i(yyArWKg_>3|uUP!;n4MV5@X zN{re`1FcPQ`OP~t+t{k5{D9WC_1=!+j@s5dJa=S!X$CNKsX4f!4|d8GQxq7TRM=T; z@ocH)vS-9U*rNTCGlB{FWp8+~X!oB+mh22ig~q$0Kugs|nFCvI$2^TL78R;elFa9M z`jC{>++y=nVjLrVOp}tP!WYuGb;d#ix~GD7h9c{glNe=i`kxr}zFV-&$2uD+3Qi~! ze_!=fJvLs}n2c<)KI$B(E5T4_O1E&pPRHT$da@~M^`*8;~_ zRAJut>N6{(J4>ej%9`+~HA8AsoRowyhV%>U2zUW)K{at4(|Dx|mXV{%f~s+787Gc~ z74eA$-@AePF>-k}FYt__3Ai)w%y7 zq)pvYW?gu#AQQ3GC9DFE9(qt7bEsJ?RXSQ|p^bw{Mn3gH&hhm<*+om;f~OEioX1@6 z)CAccZ1{Gt{oMM+D};%ordElFHl)Q^$ej@HL$=J=tZzA94Yhzx58U$*jdx_JU2Ta_ zR@9l)lM@5-c#}t}T(daZin+P`1JWLl;8@X9n^5AQwA4he`5)=|Y4!{re`iglJp*Dw z1trdYjh&6bc}582V~97(9Qi*Ez4_pe$yJ%1Rfra(fm74?@bSR1|4)znysef;x!swy zFbNqIR^t60?kIRkQLC$aPG7&CY9PMm^t<9Har+->_vv*xhd{11Rws95N;tEzyG2$HaCD9jjoxnz(h$y%J*o_F27g%0PMcjZ2M`tY)Zfomx`7; zJaWHhc&pdQ>Mi+}C~}N8S%+R`qB1=}qFK7DgJwcQ!M3jAt}*_Fj%GD^MTM=79Y5Vh zglg#)+S#q_1YJKl8m;R?477Z}7hNfKl|=zQj07xqywIX%Z79r+KIW;kbkNgbKF^3s z{cL2^J6ru*ws|G$KZevEk^03yl(Dnmc=}H5kq}zN+phcsk_|_NuhyETL<|f?UZ*dA zHQ#YERDSFF{T9d&ZjEDMNx&u!W>?QU9+Y!ibuu?6HT_8Z+8aX;gWdB^BA!=SO3dHm zTirGpJ6nM%+=#)D;@lyYbcr|5sEkp#sPwq*>^W9|61>uk!U#6~g>pap1#prb(tpGU z(oAF3E^+9UpXygq312<%Rd~Pn5&H1apvzeUk5}O@*0(6-rp-My&k8IX@!)fxW?nnL zgR_6UmC15*9xy^;0mRLojYa=DM6X3aeh0yQL=vZi1ZvZ%Et5Wjd(`n9mG z>itGOlpN1idH{WE6q4^_o=uwj8fv(=zBH=1hiz2XfN48aOaAJ!zgqbd5~ffh<>g$K zZCXMOQwq`#el3RO3l`6%w4T(I^Szs$^Lg^I<`#&Yrwm(-8h_%zT%&(#V9ZW%#$+R- zyb_hrcp)m|fl$j6-s$!L5_&o&{%k*irCYN4f(-UAIleY(DJe)yP&tip`7nWd@1xUdDbcTTH2ATNH4DdOOD3s1@n*s|1;Jpg;XA&(j_%d zGFBPnijs{@qqv&u)Ket_yvK&m?Kr7uHGdZ5H!7@(Z$qfdyTPVpbOpf{y`Dj-67FB_ zU~#%O{E8uvQTrLWmWeypD%Vq--YQA-Km^d4x#G85IdbjU?xd1V*jer{G}gb;R+S65DoiP1TV_Hg(YWgJ%T=KT^OLkt3`<91LE{kKQ_tzbLjr4~+Tt zZEKQYIwRV`!r>W%rjCASXTZof-}8k+?B2MoZrlU@!Os^I|v=i-U20c zw&7MHEE<1#BOe`ANlG!$h~$BB_V=ebetTgWgQH$}=3KX|b5rzYf@WkJctIYjr?sMv z^FNtWy3oqgjA)=3FD!|Meq`Im_Uhg~tZxXTW<{L)eT;sKtF}-Fp$;@c0Yw{XCk z+F&8;Y~d5WNJ=FT;U3i(4`a zKCc_H=fJ9NykoxkEbDvz>FqZys%p{^}++qRz^oOST|Io zhia}i#1+Hd4C`I`V3583$N&-`O~FzRAAAlAvU9RxFd@_}?tRMQif!v&iwW&>77{L; z)R0^uQL{2$6>T5LsY;pwgCpL9_aQ=jPd$w+9@<(lrR17o8Hs;l@Txqp95l!yY)DYh z;wPhMlnJp}Z(0!gvO3C!Mxr5Et3D+-z_Ei}Tw33UZbhD>LJBLgG|tW27FS&KJQMn$ z+5gmXw0v>E)kA;{IOt9qwc39Z75ZA;mmx?)XwyBtesr{Nw%op|jB9+jx_2vRJ1W-9 zs%Fx%?cQ)r0yoHN7LerCZH=MDx@mG9i=%o-Inv)BJ^pc_km*M)(-_*GQQ6F;#|dze zwatrl3n6TMgIC`(qPiw!vN!0Oqa^T6*q#>T#!Y_5(P=$M8?(sqk0Td&6fvT|U1$cg zAMkG3Oq?A&)o2-YVJ?+#=s0TIG;O@ATUHkQlc$Hb=hM*E+NNd0ojUD!q4o9CN3*nE zW6K9gLo46QS;`*bkx!kLe98WBq^jzktizgfbZUWZE)sm7>4nO7$Hw|@Sbtf%qok9d zwL7)i1B;b66QYcy`s_H|o&rIw?8|jPbRhCqFoh?o z9r|`-ueFKF3^)yH1{Gu_(ZQNsKPy^858nyC&5#)t33CjM-;!0cyfge>Nn`C(;fS@t`4-Ti^1_w{0>_6Yl8M%GP zx)wJByO{fFJo{PjP9Sa9)GOaq*yoDO7J2(G6(+5do8y~05U9l_En5+r)s!(Et36uh z3qlW@VmUO`LnG#)kx6y4Pu*MO%BJOW7Qg1pPh=;qer=a!C>rPTZl9TeDtA|G`Lpa% z)b19O{F*YK(i#AJFr2~^a(Et+*8F_Nlp6Xb?A4b${&!nTN+RCX;JWE7S2Vg<>EgldwF7Hs_51~{H z)i9Uz+D+ghYnb`&v!(v963H9G zsrV8UExK={t$Dxsp+RB9X1b-0fP{$JN^i{`CI>)q>IiuY)CYQC-o0abM(lGHPdtJq z#93B=u%cE5C@)E3kor2{m^(oj9QDG;i<7PW&m6bMXFdCQOU?_5uIGR_F-4+O+6s{VWMye0&4QRXI zchkiaKTMAx$Dtjqh+1fVN0wq{SnzFY?=x(eMAIbm{5kE5&7+q`8IEa@nZ(d<=E%s$ zZ`W^WVGr|i;~U1X-|A~we*gaLAu--C0V9P7Q(zZ&cN#ZL^NZY~PRBJuUq_{dmgktD20243UaO2q-OaVwynG*|z&z z&>H)AUvy!sRFAUnvwpUxg0!fvyApop_w|bxV(?>on3ZsRW%e2FYf5?5czSXY#u!N9 z9C=@2D(f`wk^l@bIhAdX944XX={#{i-^_|;`nE~xXA8a-H$xxj)Z?anrf(AY?YPG> z3@|{6cHSr#CcabT-f|bJtq_!Sv5DRu*M=Qk;;uVUARY4%H8vwp^j|PXy)ufhVS2*J zLXzr2PwT`kPIq)3l5Tw}+K;)$yty4`UM7yO2NPEZi`-_V>$x}j^%?V&EdLU!W>)|O z#lctx+=7XMkfL$PNmoqkh1uKmqY$f~>3xqSwd!cXm(EVe@DV7PQ@6 zN<`rGI8;aTwMS88>k~{PbY8$t4k`f9m0j*qs;AW9uQq=3`;$ztA9~qN8`U9}QE*>nh%$c`3)*wO{^r`JTZGttWKm6J;F9GOiCg zCt`cBKyS;9SS;+Fe(44pzm;*orDS&hCKb@+h{-sRiiP2R$@&9LPTqIM zX(46YWZ{`U=e3+W<;`sA*nQ>o7Eni!_jsS7TFa*SWXCgNq zCMnTP6919sS)0oeG12QqYh29SMVM>f(IfM8@aGdTrZ2hY=3k}gc=CN8pjdDt{HcrH zDoR_kwr%kfl=+-jiRcD?=o$p4@H;Jq6xq=dS1rdFrvr&hP`>~gn>r$*=TS3@0*+O` zo@VSf^j+S@p_XUtUx={?xw?&i*s2m(V3~jG>M%^g-f*>Nuxl;iX2HJ6I%tLsw*@Z?E$hMU8oQE? z$#*{VmK4PCg9xWpWNT&EVp)yZTdX^LUrOAtz(Q*^n=Sc6fvXOqY)Rhf5 zGv=VuxvYu4$y{>&MXt^mqtES6?fl7KGi$cgKHx$YyYUjdXSaG`==^bxi$Q&J=42!O;BPA9(xFmcQV z(~top;q?8S7AjMVEE4=6a`fQ5v{oMf!-h*@ylShrON@(v8{AjTwWFt&g{@HTh$8qt zz+AF&;%_u>BQ(v|f>Nt1tA%@XVr9L!s8>0iw{D;3EY!gM{&@kKl-5C^FxrPrc+@7x z7Kba`);vvus^rmG5Oyf~?dyG?SH9*kf{ywC>l7f!2pZ)k3D{=<)W9J`9ZSl;F{iSo zI8|h2Wn(#w?p+8tu07h_-TeeOo~~aKxA+{ety@TIyt(MGFf%3uE=uKC3_IBCKt1H5>#t#Jne z(TR|?{HYhPC=%h72M@WpzSa+7as$~>lmDG+65V%)c2nmlgm-%LL1?$(gWVF<39jkh zkiPtbNpr7<4aQ8n78u2E2ir*!+kI9)pLLtOwwhB;^a7r&Di6R|x=-cX!f`|4O$yBg zo+7#A%`Wb~WIlEN=k#SKLBYheJ-cOo6{wZMYge`|^*&IJoYYaXeQmiCS*!yjoB8wN zl=$Zm@?RvXYwr6Ei7HJ8ayB)4ywievvJ|dpYHm)lwesiO>k)83V_mx|VO_OM091ft zpYFv&L<2PzuUT7A1raUc9FzW}Wgs*|56A@J<>mFUmuKvLhu!aN+&(XX>=-r;7rZ)G zr(?1FwhNzFRR5kJxt{{v#R}Ndd3boN{jS&%niG_qOj$AGM0%ZL;Uk}Tn$AB|q0oq; z)8%NL!C$``St_RO#Jhjfo`@9yUY3s!22i2`)3OoB$g6yv;~O9=eGPc1<8hMCd7TdE z_3Nc<5HPS`!^5r7IvxT5*$WZ=m(Y~xQu#Nvf11$0k;Vh?lHHNS3YpEqR8%JwicnT+w*}8r&vf$%pnaJ#WuEF5N?vdGDfM*64 zy*N;ci;pi@Tb$J|(k+>Ashu$|wOmx=B6~qI2=22nfCwMF@9b3`nT8y1HxPHhMX`-5CR2hT331B#izSJ>5|_% zdx_*DAtgQ8DCu`O|KxgpY@1)RCD`2D?BhVn$i(!`&yS>Rom6@qR5Rmtz6*6bMP%N- zecK`4gNFiun^2P|?sN4}7P9aX$bOrwk!BY+V3Z;e$CZeuZIFaRM3Qh=`=@?d^ky3Vari z?E<|QXW8$gqN2L=dQxCd@ka$j?K?6jxT^kWI69fGvX@H|26qT4`*v5_E>_O_kn)4J zrU3y0l*XOEyg;EtsctnZGqWm2(MJj~>?!@463{NpiXzKque)_HYu7Sh1}vD#uH5Sy z*agdNnTc88>uUT*`L7}H%}QH?b?S6IBA1w;4&`gI!ZkAw;4WT^*3FA`VEokOtzpbf zjDV`_AGTeG+P{(f{~Ozmn&of31ZF@H-W_? z{OM>whH^u>e`D~p2aH6ex{jZ#uy+%l*q4%ID2nx3#9Q3aiF~~?K%VP-pdLpc+G5|G zx773pZPt&Z-k_PlYDW4nG?BCfR3o;<8C-NZ$ zmAq&TQ>H=3UD60Hwz$}T&r9k|skYg^2@(_gaQNhw{Kz9~SSMb^=g&asaE&q&}-@>5tt`SFAwl-Ew?QwdtrAY9R0dPY~D-_PdQN1N%k%` z6^4S-w|-_h;d<9F3T$qvKA;}<=6xym1|%tW+X!_YJb3V2O^t{y+)Qdx zuVPBTZs`tdG?sr`GeF(l-QQn4KiPK!zV~Vr2k$z7`sQGM4dAebD!6&Vi{18Yvq9$x z*g~388f6J5-S9<_116J7?Th0KlaDqZ+9nZg!uxZ-+;wZ6J-q0d(~S00bDcN2r_XU~ zwfG4eQZX5(LwbG2oZeOLi2JFE-`9YzMf`jpMFvS&!j{zCJDNC{wll^(_8rp=8@)se zSEVgJ#pb)j(#ddEjseA=Kb7i@Q#f21*+_0MGZj+S4B8vLT-ze2@o1Xn67ozD(%1Mo zlhDy3bOFvz3rYJ_K1;bAo3>mzMp%*^42zBGQg++l{qlM_!hyd}^JkxoVaoyGMA5VF zV`D+wXC-r0GrH2=ka~+sO|Az)MJ6Muh7D%ykad4%GscCJFLg*(PrMgv*)$kP?j0&- z$Hzxx!mCyT>+!zz*z!EW$rtvFXEAM{EeGQQ%36z=M*g}myq*o-pH~&AUk5Wr3%7iC zA3fatLbn}5HT(1S)?JF+$0zfYbC?P3J4fq-;Ds+&4r0?60Vt$zSjrxWp0f8N$6x4w z>>m}|?Wub;(Pp4~OfetZdsYS6-;muJ=D9D%2)SgAJTk`Pd3a{a+MXFwF?P0Ca7pZO zYEgLK#y?-H+ZIVFjNRCDLCH}8#x1BDn1*5nak-v62j!N3JP6b#6L3nW8F$l-p|3p-$|6Q;mzIGfo<`ReDla2>z6*dDkD><5dD zpV1yYeq3bO`4ANq1MZ)r`T^{HGz&>?YtGa&(#EIC7NqUo*;XMHKQ z28uWRJDL*NyPMRnv_5@IHr3=O2~kL&`kwU>y@03JXx%=G`bedRcaz%5rJ7-|5w0(B zpjA#6L~(xS)12$MZ=OMm31{hjb?6!gGS{OvT0xophf0z8FIR%1pSXI3)7?{>WN*!?>JaO!kTbG|0T1C;eZ;vB-`IgpF0MJD5?cxrij@NO)P zb85&~D#4y^W5-3vx`D%%fR!MUpvL2pBy-nft6KSskju~IXEx;MJM@hDUtKs|h~mtT ziSElctTDj4Tp~8U)CG*kCpFv0W4N@=iE}oe?25_32M)c-W{PTMNrT>1mOnTO(?`=M@z+vp#s9_F;xwYMOohJMSR5)l}N7S=c=au>C#|raL z_t&DSFU)?doRsB?jlXVH@)mx~kziFt^h&_tg0nJsXXD4jBa-L#T)o0w8`>Ci8C4U# zq<2d=P(b!vP3t~Yd3C!r(YYq?oX-a=3Gx)EQV`F0c&zW}yxb|e*vK-|-xC3LppYwT zk|DydN6OtE#wF~>FEh>O7jgG3vE{_}$olh0P6G~X7u#*SSt{msol%^(>y9c+j^Fm^xF-|^WEBsEYRAV75*lr11yId z?mefWhB?S#^*wqsq{qKM?cqEo%iAONs&3yFKr@CUCeADtuk`P#h}>h_TI3vbt3I>vVDc7$KgOQWVXXf8g`#uezPVTdOLoi5-sNLcvGId z-!K7IcSn=~@ytT**7)!OqKGlpSkW2TB*WMe*~xO9`xwA$r@9p-Fspt=L+o!7?yaKJ!aX0I9WTQ z=o#7UTzNbOZ$IRNH=z%OCt8#ouesV!d;zU^wi_-M=Ww0>>^cyR6CyA~T=c4!uI4ju zC&iSQ$oHQr>-0w^Q&zSWYn3^u69nm1NWHR`Bw%*u$8xe(urUaOm8qA{O->&UCasUL zHHeOxm_>cyGxlZw0iYlFq(ydN_r^!loYghujc2Si-cqPxtblT}OneoK=WZuom@%TG<+X~g)Fo|af$v>T55=w>BJhOGphs8{QIgc-uCh3uEJ4-qo2jNKP6wTjl- znX5fK?5>KL$+}DAzOzjfy?7X z$qN%o&~#FX^i;W(ti64D_k&L|14WGMYUsK>U&uXXDbeTg~7 z#!Vvz6(uz%odqUM#hvQs9fK+Hnb(6PjW#)DsWABe8ZoVe^Oo>VQ}?;DWB5!GSeBx51C~}*#nIW!oW$jW%lE@aF4W$+`cQz1u4>>)mk4_MF-y?F5ma-Ww*pwLzDKRMvzBr03)d>~a zo{gP~5)N?{yZXi)&&jeGKE-)*P*pWQ%7k=Jb1&Tl)~2;q*mU8+Xi9u`UH{4`>9%|e zwk%h}``M4930U$x z^EGBLubJ3cWAMAEF-U)S=RTaiJA)oA`Sfa7zSB3trN{3t7eIyP>iGR$OJFBqW-x5= z@mVdO@x+MgO8y~stYi04aUn?BT64mE&g#cXY}E-8J@wMtwa!9iIV=BC<N62$PTi za$l&X1lbu0-a}y_JIi(BKBDVfny5M%y=ZVQBrBL`Pk;@C1|fljt>xVC00##-MJKv& zdR~*$337y~T-+GhF=eWqaB#|`AZs_`0<;XHhc91FNW0XO*xEw|M}>{Acn=C7+)Op? ztG>aWl$Sfc>J`@7`IQTP2~Lw{Svfh~76o-tzLXyPz-dC4&BdrqVCQ0z>sA#QaEFwb zk7N&zjluDgk6*8?ua~%=A6e!*DxDa1&s#&gN4ODxjqXyl?^!pHU&{f#l88r zYZ~(R++aekCG}j=rzN%qAfSK4URlg_J}bGSpAaTjdxZu|6*^Y+Sj15L(3v4^P>PU+ zN?k-W&XH>tN!(E43H1l%iLs5Pgqct+$l-9VrD@%9B!UQVm%U@kr< z^0LC@D`J0tbBb?e-=AQ45;iLhZQnLAI?A24gXeObfKsTWTYBR6>m+dwIj(%T`D!DS z4IpbaVqC^O9awC&Aq~g=4IQ>n@@QZmGy!Y~>9C0s6Zo`!KY2JbkzMbl#}Np^*B!;u z4VaUO$>&S-0`p$@gHu!SGc_QS$x^d3`2p0%`NE=m=z~QXLMJhsYF6=yZL=3nbYj0E zyYp+FnnVDxY`+9c^moVh8YkNmJdhJ+)@}@tYSR}ar)NWAwstEs=bKtQN1g#~gj`4Y z>PfDu4kjx+V}`~Mn`%{9eB_W#-{T?ZT$7V^PpT||$#P1@$Y4T{cZJFPv!l-P-YPDp zdsoMYp{6~=Sd_gjEv$*6SM%o%m(R`nAInnohHRI_U2N3nWj=1H&&e)Yv{2t2DhRwx z3Cak(64CjPu(Y>y4i9IW4V~UyUIMZ`M-$Qy!Ra9%wf4G`mNMeQ+CYXq8F5fK14(Oj z-yC(4)F?=Zn<-L2N9jsikUvzE7*J5*7N(`NftSG80{FRqbX#J>kna z=VXtqN(kXKvq=dBZ0fO&Rt@1c(^c&D?F*FOS4y~!0$fW>VUfN^R9EdQ2^>eG948e! zx_u%?(+O^So$6)g${xG^I!l0~xHBs=DQ@<>cebb0Y^eR92uM0xtlQ)%d^Bx;y-ZI} zPxn%A-Jg+@lb@97oRtlaj07SU(IPVqlttf+7Ts%HHLH1o6@=ic+>9-8R%a}Nj|tm* z)bnQO5b#JX9%$7Ws^_z=&htyiU1@EpIgQ+jrUx-Io$9tLEFNHS+PKgLf9E3wp2#w( z5GO=W9M{X>`4l>q9UL7C$Gs)hHKM2Lu*vUy3Y0cEImyVYK0Q7j1Gszn0Y|T`I0faW zH3Ngk_W-4Sdacw^m32YsxZg3jGYu}om=kpnizp~K(Lu^!WFdAJpKlKQ_mU7C)H;1V@hT zo+)D$Tz$E?pc~mGvyd)3uODsRh7Ir!Z*NZ7G$h`|H-}pp0mk6k+8U!fQRCV7n@$_g z1}7)u#&jSeKu^kWV@#Z z^N!~pBhBj#4Gm&IPFOQ*Yl_`dbLXJ4Gz||Oi+RwtDcRcg36QTz76byFo}FQd7I!(H zZC32B#M`U@mvatMP~JQ&vp2_+c@8x{TsBBIIBdmN?1{IjkHseCHN1|KM)FIh0&|d; zmv`2850?*!u6J;BG@7Y)1Oqj4?unH1Sd6|uT#Q8QYHDcg&ErCxTi1iUfr)VZIRfEWq*w7kV`C@9;j0deCXkA#1zj!#U) z0@{Jl&9HO!VrKU7Wek)O;szu=xd+jjTScfvLVp;Hv@<>rhUHkV|aaz&Bj2C2vr;Ah#Ne+!;fF6#T( zezz5_NYUGXw59I-dWEZe`d}{PcaJJMH`4XSLr~?nz@ebf>gwOfw38jJkjgC-6e1aD zwlD#C4&C(|6qKNlZ_3X?f=1T51+Oo3DMGVz4IW>A^8L2lpS$?oCdGem^R)Qp7WV%8 z?UjWC3kU@z!uR(+3N-ipZVZ5#5Ndh#H|>8vcgXF!=@JD+rt$Y8*);sUNK*dWBFSL` zATls{V&pkDT>`iMko}KFzuu=&o`YA_B5%3`I{oyYTe^OLf1mt+p3;8=4-kjH8_s{$ z(tp&$f7HW&_N5y<`k$@#U+Ccv=8FWcruZ_t-?`S9hksEOs{wQkARi6-@mZnRSr<$K)3@69F=KslcbLIdBRWCJ+w2BWYW%K?~(OqBG- zVi<|;9xa-jo^~4+L;EyoME&SfG12A`ub|3u3qozC7Hl8n6{!4)(QdDkUiI_=3cpXR z8v1u;p#Bt-`<>w!MUTC3NjJ*hO_hZ+4HRjpszw9Z`X~}y4a7Zn=JQm_4jPe)C8ZJ01)p{N`5{o5D!i)=5ZbZ>mC4%4bg<4 z5o#lY$KU+``_2epU;v-h$^+KXTntxX)jcTczYSY3=872T-#PeyFsyE-2{4!%F9E!0 zFi>Q!e*;eE?!^9?XD!4v21S9T{{ILxF3C9NUT)4_ZvH$c1E6j(|8j&<(5VRkasLSE zW8%Q8`D-PP)BD@s|8Mr?wJ|}OgCYq$mo4`KGzf+c4lsSIq~{bHx)2O&*TTmb*WOD2 zi6?4h-OL>luu6enjo5CVC0#d)!qfE!kS|js)Gjh1lN7*3iCI&p+^&(x;0%M2RseDX zjpA|sKVk66-)05lZ?j^KNJ&){)F^x|2>iMo)&z?NC%1?G1@hqIw6(dQkigwcs5#ijd4Fb%3rh$5;X}#$(pmm8+GCLpM z%Lh_Dee#_^cz1YB%dYd}u^2uzVLWDEZar|wdA0|P85k#3Vh(0?eP*VKjzTdTrRlqo zrR+b$>mCV{bZGz{Ip5Mn-*XD#Dna&dlS4z{wu`X!_vDCE8Uet(_7(n+KC9T(c5VAX ze>TmCqM0aT?ll@=#;E~eEITy0e;eB?itsH!qnx2|18dLx`Zn@8nd^A(vlzPu@bF(G zIh#9*9%d=3{I9OAJu1m;?bn)b#?>_0TBmhBPnppiZ!_bhC8l|UnVP225veTAdw$-= zD~(u+Ak^5=v%WfcK}AuaCdAAO*Zar& z$KLPW`?sIx_dNS~-)C=Y#O;LKLk$;PI?U*qM#{j&BFH{!!TAmfUgwHkTT1(zrI zHMi`<#JNumYmwp`9C0|CT6>EFu1Lclf`kU*g9EbHq{3>+4QNN1XS72y<>1yQ-M?XF zhfE?2D*o%$dHon^j}3j;BQEeyU_9qAC^Z3lBOZF_T4G%qBJ7ROG&i~-YL(0C``R}V z|L%p}!g0W|p*UgT;k^-bM=NuT_|P>GE);l;Tf#tV@fE@uH-WzV)77o?vf!H^A?f6^ z_DT9}t|Zmd)x*&a3za3^$w9|fJSP>m7W#|`t2;;~Igu{E4csJ%65A9?au5KA!l|3Qwp$5=4&j00H%%*%%vlg=TPJK`EI;bq?KLdQBDLJ8| zI{LQ;oiBGy0pk}xg9O!lhWw37NPE!M#u;Jz7r!Y0wd;Yt~ywjfFerw~$ux5@g_L%GU z4=o##U$KL1G`|bWPaI=xw`}eKv(xpqM~kuuXWXN0Muz&?jA*kJrSi&jQT8tDI9hH@ z`dn|Kbiml+wjesO;%chv$WY!kkfC^*C0Egq39Q(fj;ye&kybS(3pVU(@749xZxOkj z9$|Exhr%pCqtDl*VS}i#^{Cm>crqOar8Y%xbcv5i6fIQSn@xkBo|a%aqxW*^%Sb>L z0V!fS(>%!*)GKTx)0X=H!j8!0uU2w99e+G2^D!5C+r|(Wb6uBdwvQ<6UGg!s=ztSV z<{H}PBG@r_GVty;)13UjOF%oJHW)TTp+PJ0M!L1K-X~psM5Vg9u2Sk|8%D_a{K4)# zZjRR~R|x5xluUUZf%>8VlCQ3FUk(3-UT0e%C*V@_%aujSB0vOD={xy^5z9#IT)$UX zDcx#Tp|`CDk-UnQi2!C+HkFN&#;mL+vLX0d`t;WngrdAc@3|RDA_brj+f%#Ib3bbf zBsoQkUPYd^d=3e{x(k~>ZP>CA8J#EKiY)G(5 zzlHE=wFqLAR9HzYtoUSdlFa~7{>^60katrXh_FCc-6w%HgCfg2O$ZxTI>3A%SyLWi zT^+VGz$hE|vi^M^Lq}NuPhKn37n5e2WR8sNzkxlh!F)>M6TreBA@xIfPj9OaB%2YA`)+-#y zDwQ87v?RhUKT@_gxYF~4a6tNuiD+zijv0}Ow^u*i z)VBEc4zZ_n9E#~urw&Rq&Cuy)S9T7v& zPn0uf1CBc(5J^~Ep76aoVT#ojeYZa~pU)t;d-<>HN_hjk;q}huDmPT;q$n|O2)7!D zEg0`h@XO5hhZ_Pg_t{<@0qq$h(|BdwXBo=O`h7p8yf zZM#&Ognw6;i>#saV@eED3BY4w`P>McJxg)hla=ivr^%}5#0gKefWLyufOn5#u-w|3YZo(pT02x{ry+pC?&|Hh z5Vvw+XJKe9!>X;=_$Pe;ihd25ZN{u{oO3Ka9cr52o`-RH*;%i;r_DWD8WbJLO$Bu( z)U#9lDoj%Ds$&M|ZRuD2kwbo>$Y1J6gR9|+@)`8DlQxR#Cap^><+PV#GmmMT zgu*@*++qn5k-DvwO{@mpw664NVyRT@dpy2q^1I~ZQZiYi2(G8onWXZZaP8B*k>?e{ zns+jCV%E!cw08s-0;@kB3Ptl}FGR<$M)I><@V4@UMb9XcA{M2{cisIpl{E^HqJr+h zM@lwkS?%fb_nJfvX){$bk-X>iyDa#P=k;!=^~`u=@&shvJV=ztFoAXwJ`0;pKu_*u zVCQc*lrPGpoCA90#Z$-o{aRVNf2!18i zaVp195EUcyCRau)EN(9f$*k*mK{l~q>_u4}d#wdf-ozQ%%0#&%dCezJ{ z(%Hcr#n^h@95}e(r~78=C|$a_YcUE54WCV}p=}Ej;eXuv==-VaD8bVCV z=-5#n^oDoKw_i78HF{w!-zkc{D_Q5Mz1}V4a=)}!Ca7?8HZ`_a%WD?b_(e1}Zgl?{ zQ+O&WqXlywq^!|(-XaQLCB_DvvjkH)!eF2P`9gEW^XlT;f$k9VFCADIow|ZCJq|9I zUT6s$ujMsYGtFDF(9!N~#u6ijd9CWcqHa1mgv1BjFs?b#%zE>FsL229o})$C!}zs1 z9Kmp#7l>X&{XJ;)zSB}?6p=X`g#6Na4sU+?khzu&;VuM>R=H%o3}Xj)L2`fK(RRZc zXmH!wQyV`=fO;tatf-C14iC=F2(zkCj!kmfe zUw}3Wt7s|N8U9z50E=6&E&p1$k8e5&FpvsTD`D%O*7R%XG268~>$+2cWETfe@TMr3 zTdb;pRaS7a>Hm^@yt2qYrgU!$DU3SvvejqNIzv*H6Gpx~k_Rn#ecB}}uKEMqjf+wI zMrkA4I?l)tNxG!sYbo6pp?p>1*5!isU15#%s#61Wf%VmXeM^0CGbt;M^@WzQZ7Bqn zb;R4qg?3Saq|Rvx+@JTto`Xf4)<9h*{M9YwXswDA!K+}HjS+xUQ>fDjM#3}%`gqnkzlEX!|AMyYd5>Htj#I?p(dmM*Q1xdvvU=G%u zaERUWaX)%=sN^m}?AETu7$)aFJhbn$mJs;8lbmEet>Cd62a>~fepvFhU2K|agT<=H z?>=7zUdz5rG!=OG`M2gX4N0eE+x!{MOt2p19qMXZrBb8R;~>-DJ&YPPN-Qkhlf0P$ z7jyK%`vWR51Q(DKx0FUfT>Na*W+EE>FM84PtvA!2y*J5w;SBJLCFqKM^2;({G?} zmKdc+oDz#uJP_my>V*`){-j#l6~XB`*sq@6gD>I-ayf{Ax!NBY;7`)t%&oT}`sMrQ yc7t!&vEvaN?5(o;%puMTIPjhcn6)O`&Y9hN{)~N_{}+3Ku+x#>bf3KZ)4u>V;#e;L literal 0 HcmV?d00001 diff --git a/document_page/images/create_page.png b/document_page/images/create_page.png new file mode 100644 index 0000000000000000000000000000000000000000..ab8c980ffbc43342bbaf5259beaaae5ffc5b007c GIT binary patch literal 74927 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.Wa)US2MxOl;9;}b2Zy{_M0>ngv z*-z-OTCmkvwNU)KHX*}2QNJ?Rk~HsBPCR8tE8bBIuz_CTJN=ALqqSLy_3Uf2_5zSy zExOWhSXqX6RS1T`5(rKAb8CLsJT$jxfqs0~r(kpNV4u~cckh+&m{d|-J$)}XRmo-J zA!cXT29m=!kV=$A3!l)WwDkHKW>SudUNbi5E879^e#JwrCl50Bc7@hFXA%-*RkyO$ zKimU#pXhLGSmRDNARA^6s7uUMfB~wBy2Enm?G&UmTfMIz-B>y*>oNiXS+{jr>sL~6 z>Yn9Jlv3`&{D0@>C7+t;&AZgZDN+9XU5L1p^ZnU5>={T-zWl&Krw@SdN+xczM0Twh z3uTma5^19!?L|4o!OeG6_|0K%E#q?p;`sKcur!my{^EgQc1%93;l)z~lA$VlKxBj8q**xy`sT3qgHSP*yFrx%B$(-=sJ^<_md z9$gi7boh3LR2%+@R-3voi}7)fTp$~FXkFUY46}c4*V*ZMKXN@j2|3FmM;;#%%w>AKaDA1&pJZti`$ioWI5fDrw=;TS*B-aRtf?xjg#`WvHiiZ&45iC%%RAfinC%bKZ-0^uQ&aXy3=Uo%7@aR_WEt*((dKTE z(lwEOgXw~$LS;;LPdJxKx5SWaj>#vWC_E9|mXId4^cHi?c)ux}`##FH9|;Pi)ZI9e z!NzUEXJ)3{;=N7w=9f!hLjKQf{%9vi!-6`9;A`VI%2)YF$Vm{LRwD8SeKx_v0}qJY9+u#r0>wELvbGTanSD=wi zJX(_g;u^e%1}nN^>&KMVa?HYC*4$1FHi2rH|t{+D>lVk~;+kouH4qWou;q z(3MpC6-}k^6`w?E54y{+>39)$HuR>Qs?|ujFX(zHN4PS)A=BjLOtD~7uD`ym<^D`* zzRIj-q8MnW>?3*65gE2-+GDK3S&Y_Xk#KU%Vfj;b+r-j38sH$8_SC7vW1)16@P${3 zsN6n01#otxD}zW?ihh4C*SU7s#^$8XSB^+vQ8qsB}Yh=DGXA*xUuJ z7|$H#zz7-WTl5ZwU5C+#huuLQ^)S0{z|lN4OpY&H+-OjS3)4nMR0V~F!3YQv9F(P4 z!*BDRwhLPnGjnMoT>>!I!kpdtWiLmESNBNRlPj57SvVLG6{s_sQ4y^-WrlU_D-k&} zW+H26VAp?5A1Wf~9QzY;dsSv}rC-C#5OKOjkTyK-#YB@dH-aJ73qvQo!n3!kQboei z!C&N2$WOGv;L!JDpZtUlIOc_psE2Pii|zeM>P!NPl4YwZB6I&6fV5qQTVO;R#?&3^ zNyW9Q)BxvWNRXY6^@Hl;1k%2<#h{AODOij+*g6vk5tf1MU@U3vVH5dtZZ}^M?Qh2^EL}h=5-5`?Q~Fmt>I3Njc0S*H2r5_ z{J@s*O3+G&z?0jOQ>%mpC_3!Pe1wQ0v3y+@x7rZTXVf-8LF%X-vcmqduM~LQ???cBn2t(X5nUhYwLLUqug8^@}j1QO?xES$_U9AxivYT20@Sh*alUiP#ZUTr3TSsJv)hbLb47$*nxyTblAF?!PCnlx9!1rX5W& zhbFOm=AbNl8ERkosdM6RnQOi$ey@x80Nw^jPTX@cDY?bGhyOejR)5_+aSn}$UiB(7 zY#vRd95W{eFfZ7f_QCnj;Ca;E0K@*At)XyUbZ1e>Oi9B~+YFsq+Z0qd(q&gw=W8AI zGaf)YeVDPKAucIM_WEQEZ}gQqC_-8$cD8JeblF`Ne_oyX)1dG+jcY!UINpRoGXv5% zC#~&N1O^UHR7)NRud)_GP;1_Ix0k@FvEE~q^F__QG59gfJ$(5Wd;L{KN(G6s_3=s# z>Txzp@xW0|XNwO4)51lup3dI(lul?X1_|?wyy7|#wzm18uO}6rA))8gF)@>BUQyMw zf@36%bXlUjjQseG*J_dy?gg^l4D#4un?1xc?D!fLZhMU5wb;k zJEuCBOw%EFWE{nC_m5{y@2F}FkVK5La#Y%WJP@PMDF2lt9vR`4L%BI|vOskf;kHFO zH)67EW>)YhH93W>Mu{D5jY^-T1wRB}GqJLgf-pdS@5sYJdh)cy4Bz7Jt}IyqWyN06 zUB0{~fhuj`#s{vZUn{wmt!hD|4S;zvGWyW^my2I2o0H$=J&}e)i^(d5wkDq2;L4SWHhfB1>5UrR&pwM?r7>udbcvv5q zD!Kk%#?xyEs3p~_6;zT-6oQ6>1JTXoXznTc!V^a@x6sRN3;g3jQ?(=?AOuj*jGyGS znCoaRAT&^dz^|@@6B#;vkMl_W-zaHZoQ(~xOfCBTD_5d?9F9Xxsa( z?7^mYf(~xl9#nCOm*d+5O%rwg;P~_!Ejc9U{_T39GZa@D?$n7XD#fG$vq}rS+ft}s z{eseF$l4AR4l10;G*WHRvBAF7H{+lUYnq)Mn zN>C~sJ(BNt$=Qe=sVC_loA8GQF|)Fcev$1{kGu0H0rqj0XF}p?;?!u zEAd0vC5@ux{a5LMw;aR&3m-rBm(j{F@7Moe6bOGsf*!|ULRd>ap!D~3-G=n#-2}A_ z?Y~UE2L|kjEYQEN-#-caZv3w(-)>v`+w;45Z~tcKROSrx6Z0Y{NE~z{lD4d z|Az);zqEkx2L>??7m`t1p7vYGHphEDXE0yv0Rc2M>h=o~%+0|wTkZj0?|V+3mJ3h~ z5vQMY5M1pkUl06Pb<8(km#Pwn`$G3PpHDnY2%q!LpW{|5@-N@>{C_LI8!l?e7y6V1 zz1X56S4a6_VjsAi=3?q~1I_bt(%$iUAagyLu{qqku;b8CK{86KrfSc|_7Kp$zmj6T zQ=_bL*kSr#BL>13{HK@SqQ_2UmT#(4(VQmoXAyV1xgXg@G^7>WWMJ8TDR)sM&bv(m zS*4xK4wK6%$69ztbeZ^wT}kQuk;#bp@$Yeq?*SPK2U`JiC8Be*pK&!?BM=Ry3;(=f z@xJe3b2rOD0F;`t;p-xR~> ze4+td?A~R%SO3?Nmb5OtS#ISsmd^_$;ti^I@6B~2Cc)wzQVcVvOt%@6kDA=53Wc>v z)dQ9H+r7d2c@bJEGk021k46n`S2-F;O(zJHpbn-WuGb30-K;JGkp+`8Wcfecj_Z1R z_l419I^(+TVQ3f_85s#m8P#%#esy!!?0ZI4DGv-S{l%yEP@Z(Yn%O@|&P$vflexFQ zXEWw+?pxCz4!wyA4!O+w{%BnA8A zfv>mxY{#c_B+tNR)~7z;yNo#HqPq~B(ekFSRD`0Q6h?C9{&~RD>kJMip`=Pjr9fr|06+_5$_f31G2VeieDJ-ABV*KOla`n z#qVFPpI;y5FmPXA=5te@i39C$Eea=sSo_MLc9L5%RwDkZ^rPYij}*w5Vcb`hGwqe* z6}E3LZ^c�nVAo^#N5qfC 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 Z{C_g0w)lgYs$~EG002ovPDHLkV1n~EN>Ts- literal 0 HcmV?d00001 diff --git a/document_page/images/page_history.png b/document_page/images/page_history.png new file mode 100644 index 0000000000000000000000000000000000000000..9520ab051163e6a0231c2af53503861f2843a555 GIT binary patch literal 97659 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%0D1?^BCwSf61PhEY-)ohuA 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 z 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 z%0A}c0J=9=^k}!U0cZ91NsS732tK>}oNQ@V7k%xrwbXGmNo1S&!<^8)>>Brqu9fEC zxc)aWN!0MN7?-zaoJ(UAnCWg2KHb#Xk;+%r`b?>QIGD7) zP&3xL1X@D}xH0k-U`DZC%275>ir(uf0izA!9&C56U5Sfb*W!)@cx#e=!8XuL$>_M? zQm*OsuBDMhAd}uRM>PT2-Y6-)8s{{0ZxMOL!=@u3vC!+#9|0+Y17v|?vAStr)(5E; z81^>;v|z@C@S&=^*IktaABb(c1|y$>KYmVaPr_9`uNWB(^zy>bq{6p|s$0qjsX5_2 z&V?kuTh4m9C}|w}L50*7jt{-?e$%90?3^^Nt!3G2O-#*qV{e!WdNWuBV{}YFsWUU3 zH(njl^+_4%YbHI$-8fZr)qKjP*G8?iFtq<&+c4PUg_;vYLJVO(>>Z1SN3d0TaqZP0 z!mu<=)PYRs(%P_qvj&spv+X)K<5k-JaDE8u7o%bwwbnE*)>)j5k!D6u*G8?j#~?P1 zPfzjxoEqAe>Y6p`*zYVn+8%tser;HJqZ>4vAS~(HQImC#ae?@?#)Y#cR^;YXiY;Y5 z8&9cb-4OpeGw+XF1xRq;Gy)spGnTE_eW6keW7>(^+(QSjzh1+%ZU-|4JSc>zDunl7 z8;kLw2dmElU4u_Cx_tIyq5rA*lYyjQ%0$2aIe

    j=UP)0XBe?pu!o%HsTlG6+JIh-N_TTp%O?{P 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 E0PGxLMgRZ+ literal 0 HcmV?d00001 From f1ab5976b06a12f65a0ff433d9b4289c6e02568f Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Mon, 7 Dec 2015 15:51:11 +0100 Subject: [PATCH 32/52] __openerp__.py error connected --- document_page/__openerp__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index a550491a..13f2538d 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -24,7 +24,9 @@ 'version': '9.0.1.0.0', 'category': 'Knowledge Management', 'author': 'OpenERP SA, Odoo Community Association (OCA)', - 'images': ['images/category_list.png', 'images/create_category.png', 'images/page_list.png', 'images/create_page.png', 'images/customer_invoice.jpeg', 'images/page_history.png'], + 'images': ['images/category_list.png', 'images/create_category.png', + 'images/page_list.png', 'images/create_page.png', + 'images/customer_invoice.jpeg', 'images/page_history.png'], 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ From e8ecd13582ca15e4d0e55ba2069d57e86800bcc9 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 13:00:05 +0100 Subject: [PATCH 33/52] test writed in python --- document_page/test/document_page_test00.yml | 55 ------------------- document_page/tests/__init__.py | 4 ++ document_page/tests/test_document_page.py | 30 ++++++++++ .../tests/test_document_page_create_menu.py | 20 +++++++ .../tests/test_document_page_history.py | 17 ++++++ 5 files changed, 71 insertions(+), 55 deletions(-) delete mode 100644 document_page/test/document_page_test00.yml create mode 100644 document_page/tests/__init__.py create mode 100644 document_page/tests/test_document_page.py create mode 100644 document_page/tests/test_document_page_create_menu.py create mode 100644 document_page/tests/test_document_page_history.py diff --git a/document_page/test/document_page_test00.yml b/document_page/test/document_page_test00.yml deleted file mode 100644 index bc75c64e..00000000 --- a/document_page/test/document_page_test00.yml +++ /dev/null @@ -1,55 +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, id: False}: | - hist_obj = self.env['document.page.history'] - ids = hist_obj.search([('page_id', '=', ref("test_page0"))]) - self.with_context(active_ids=[i.id for i in ids]).get_diff() - - -- - 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, id: False}: | - menu = self.search([('id', '=', ref("test_create_menu0"))]) - menu.with_context(active_id=[ref('test_page0')]).document_page_menu_create() - diff --git a/document_page/tests/__init__.py b/document_page/tests/__init__.py new file mode 100644 index 00000000..fe18354d --- /dev/null +++ b/document_page/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import test_document_page, test_document_page_history +from . import test_document_page_create_menu diff --git a/document_page/tests/test_document_page.py b/document_page/tests/test_document_page.py new file mode 100644 index 00000000..6b4938d8 --- /dev/null +++ b/document_page/tests/test_document_page.py @@ -0,0 +1,30 @@ +# -*- coding:utf-8 -*- + +from openerp.tests import common + + +class TestDocumentPage(common.TransactionCase): + """document_page test class.""" + + def test_page_creation(self): + """Test page creation.""" + parent_page = self.env.ref('document_page.demo_category1') + + self.assertEqual(parent_page.name, 'OpenERP Features') + + record = self.env['document.page'].create({ + 'name': 'Test Page1', + 'parent_id': parent_page.id, + 'content': 'Test content' + }) + self.assertEqual(record.name, 'Test Page1') + + def test_category_display_content(self): + """Test category display content.""" + page = self.env.ref('document_page.demo_category1') + self.assertTrue(page.display_content.find('Demo') > 1) + + def test_page_display_content(self): + """Test page display content.""" + page = self.env.ref('document_page.demo_page1') + self.assertTrue(page.display_content.find('Demo') > 1) diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py new file mode 100644 index 00000000..ee8e4f7d --- /dev/null +++ b/document_page/tests/test_document_page_create_menu.py @@ -0,0 +1,20 @@ +# -*- coding:utf-8 -*- + +from openerp.tests import common + + +class TestDocumentPageCreateMenu(common.TransactionCase): + """document_page_create_menu test class.""" + + def test_page_menu_creation(self): + """Test page menu creation.""" + + menu_parent = self.env.ref('base.menu_base_partner') + + menu_created = self.env['document.page.create.menu'].create({ + 'menu_name': 'Wiki Test menu', + 'menu_parent_id': menu_parent.id + }) + + menu = self.env['document.page.create.menu'].search([('id', '=', menu_created.id)]) + menu.with_context(active_id=[self.ref('document_page.demo_page1')]).document_page_menu_create() diff --git a/document_page/tests/test_document_page_history.py b/document_page/tests/test_document_page_history.py new file mode 100644 index 00000000..a69ad671 --- /dev/null +++ b/document_page/tests/test_document_page_history.py @@ -0,0 +1,17 @@ +# -*- coding:utf-8 -*- + +from openerp.tests import common + + +class TestDocumentPageHistory(common.TransactionCase): + """document_page_history test class.""" + + def test_page_history_demo_page1(self): + """Test page history demo page1.""" + page = self.env.ref('document_page.demo_page1') + page.content = 'Test content updated' + history_document = self.env['document.page.history'] + history_pages = history_document.search([('page_id', '=', page.id)]) + history_document.with_context( + active_ids=[i.id for i in history_pages] + ).get_diff() From 37277551c7043f6b0ebf5aee0acb061aa52a3284 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 13:02:51 +0100 Subject: [PATCH 34/52] pylint error in test file corrected --- document_page/tests/test_document_page.py | 2 +- .../tests/test_document_page_create_menu.py | 15 ++++++++------- document_page/tests/test_document_page_history.py | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/document_page/tests/test_document_page.py b/document_page/tests/test_document_page.py index 6b4938d8..285df593 100644 --- a/document_page/tests/test_document_page.py +++ b/document_page/tests/test_document_page.py @@ -1,4 +1,4 @@ -# -*- coding:utf-8 -*- +# -*- coding: utf-8 -*- from openerp.tests import common diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py index ee8e4f7d..23de6419 100644 --- a/document_page/tests/test_document_page_create_menu.py +++ b/document_page/tests/test_document_page_create_menu.py @@ -1,4 +1,4 @@ -# -*- coding:utf-8 -*- +# -*- coding: utf-8 -*- from openerp.tests import common @@ -8,13 +8,14 @@ class TestDocumentPageCreateMenu(common.TransactionCase): def test_page_menu_creation(self): """Test page menu creation.""" - menu_parent = self.env.ref('base.menu_base_partner') menu_created = self.env['document.page.create.menu'].create({ - 'menu_name': 'Wiki Test menu', - 'menu_parent_id': menu_parent.id - }) + 'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id}) - menu = self.env['document.page.create.menu'].search([('id', '=', menu_created.id)]) - menu.with_context(active_id=[self.ref('document_page.demo_page1')]).document_page_menu_create() + menu = self.env['document.page.create.menu'].search( + [('id', '=', menu_created.id)] + ) + menu.with_context( + active_id=[self.ref('document_page.demo_page1')] + ).document_page_menu_create() diff --git a/document_page/tests/test_document_page_history.py b/document_page/tests/test_document_page_history.py index a69ad671..ee492779 100644 --- a/document_page/tests/test_document_page_history.py +++ b/document_page/tests/test_document_page_history.py @@ -1,4 +1,4 @@ -# -*- coding:utf-8 -*- +# -*- coding: utf-8 -*- from openerp.tests import common From 28b54f4f3328644d6eb680544ef66df32ada42c5 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 13:11:46 +0100 Subject: [PATCH 35/52] yaml test removed from __openerp__.py --- document_page/__openerp__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 13f2538d..d4e8a3e0 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -43,9 +43,6 @@ 'demo': [ 'demo/document_page.xml' ], - 'test': [ - 'test/document_page_test00.yml' - ], 'installable': True, 'auto_install': False, 'css': ['static/src/css/document_page.css'], From 9ac2d23102d31a426f217299f16b9d87e1a3380d Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 13:16:36 +0100 Subject: [PATCH 36/52] flake8 error "E126 continuation line over-indented for hanging indent" corrected --- document_page/tests/test_document_page_create_menu.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py index 23de6419..41450052 100644 --- a/document_page/tests/test_document_page_create_menu.py +++ b/document_page/tests/test_document_page_create_menu.py @@ -10,8 +10,9 @@ class TestDocumentPageCreateMenu(common.TransactionCase): """Test page menu creation.""" menu_parent = self.env.ref('base.menu_base_partner') - menu_created = self.env['document.page.create.menu'].create({ - 'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id}) + menu_created = self.env['document.page.create.menu'].create( + {'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id} + ) menu = self.env['document.page.create.menu'].search( [('id', '=', menu_created.id)] From 7bceb9600544b0d4f5cb07e1e2ed8ca6a4e51ec3 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 15:06:43 +0100 Subject: [PATCH 37/52] code coverage improve --- document_page/tests/test_document_page.py | 7 +++++++ document_page/tests/test_document_page_create_menu.py | 8 ++++++++ document_page/wizard/document_page_create_menu.py | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/document_page/tests/test_document_page.py b/document_page/tests/test_document_page.py index 285df593..9c3b4d72 100644 --- a/document_page/tests/test_document_page.py +++ b/document_page/tests/test_document_page.py @@ -28,3 +28,10 @@ class TestDocumentPage(common.TransactionCase): """Test page display content.""" page = self.env.ref('document_page.demo_page1') self.assertTrue(page.display_content.find('Demo') > 1) + + def test_page_do_set_content(self): + """Test page set content.""" + page = self.env.ref('document_page.demo_page1') + page.content = None + page.do_set_content() + self.assertTrue(page.display_content.find('Summary') == 1) diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py index 41450052..567b9d9b 100644 --- a/document_page/tests/test_document_page_create_menu.py +++ b/document_page/tests/test_document_page_create_menu.py @@ -20,3 +20,11 @@ class TestDocumentPageCreateMenu(common.TransactionCase): menu.with_context( active_id=[self.ref('document_page.demo_page1')] ).document_page_menu_create() + + fields_list = ["menu_name", "menu_name"] + + res = menu.with_context( + active_id=[self.ref('document_page.demo_page1')] + ).default_get(fields_list) + + self.assertEqual(res['menu_name'], 'OpenERP 6.1. Functional Demo') diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index fd76ebd4..9904ba4d 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -40,7 +40,7 @@ class DocumentPageCreateMenu(models.TransientModel): @api.model def default_get(self, fields_list): - """Add page to the menu.""" + """Get Page name of the menu.""" res = super(DocumentPageCreateMenu, self).default_get(fields_list) page_id = self.env.context.get('active_id') obj_page = self.env['document.page'] From 3fe90f464f79874534178b9f7e48e0c8266c476b Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 15:41:11 +0100 Subject: [PATCH 38/52] code coverage rogress --- document_page/tests/test_document_page_history.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/document_page/tests/test_document_page_history.py b/document_page/tests/test_document_page_history.py index ee492779..ced210c1 100644 --- a/document_page/tests/test_document_page_history.py +++ b/document_page/tests/test_document_page_history.py @@ -12,6 +12,10 @@ class TestDocumentPageHistory(common.TransactionCase): page.content = 'Test content updated' history_document = self.env['document.page.history'] history_pages = history_document.search([('page_id', '=', page.id)]) - history_document.with_context( - active_ids=[i.id for i in history_pages] - ).get_diff() + active_ids = [i.id for i in history_pages] + + result = history_document.getDiff(active_ids[0], active_ids[0]) + self.assertEqual(result, 'There are no changes in revisions.') + + result = history_document.getDiff(active_ids[0], active_ids[1]) + self.assertNotEqual(result, 'There are no changes in revisions.') From 2d379ea246f9cb9df4398defcfe3d3b298b62342 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 18:40:33 +0100 Subject: [PATCH 39/52] test code coverage progress --- document_page/tests/__init__.py | 1 + .../tests/test_document_page_show_diff.py | 36 +++++++++++++++++++ .../wizard/document_page_show_diff.py | 3 +- 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 document_page/tests/test_document_page_show_diff.py diff --git a/document_page/tests/__init__.py b/document_page/tests/__init__.py index fe18354d..4c507a03 100644 --- a/document_page/tests/__init__.py +++ b/document_page/tests/__init__.py @@ -2,3 +2,4 @@ from . import test_document_page, test_document_page_history from . import test_document_page_create_menu +from . import test_document_page_show_diff diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py new file mode 100644 index 00000000..3911afd7 --- /dev/null +++ b/document_page/tests/test_document_page_show_diff.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- + +from openerp.tests import common +from openerp import _ + + +class TestDocumentPageShowDiff(common.TransactionCase): + """document_page_show_diff test class.""" + + def test_show_demo_page1_diff(self): + """Show test page history difference.""" + page = self.env.ref('document_page.demo_page1') + + show_diff_object = self.env['wizard.document.page.history.show_diff'] + + history_document = self.env['document.page.history'] + history_pages = history_document.search([('page_id', '=', page.id)]) + + self.assertEqual(len([i.id for i in history_pages]), 2) + + self.assertTrue(show_diff_object.with_context( + active_ids=[i.id for i in history_pages] + ).get_diff()) + + page.content = 'Test content updated' + + history_pages = history_document.search([('page_id', '=', page.id)]) + + self.assertEqual(len([i.id for i in history_pages]), 1) + + with self.assertRaises(Exception) as context: + show_diff_object.with_context( + active_ids=[i.id for i in history_pages] + ).get_diff() + + self.assertTrue(_("You need to select minimum one or maximum two history revisions!") in context.exception) diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index bb3ea244..dd960a63 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -48,8 +48,7 @@ class DocumentPageShowDiff(models.TransientModel): diff = history.getDiff(ids[0], nids.id) else: raise exceptions.Warning( - _("You need to select minimum one or maximum " - "two history revisions!") + _("You need to select minimum one or maximum two history revisions!") ) return diff From b059908d484c078ee6f9df2a3eb177c480f683ea Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 18:42:06 +0100 Subject: [PATCH 40/52] test code coverage progress --- document_page/tests/test_document_page_show_diff.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index 3911afd7..2395e919 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -16,8 +16,6 @@ class TestDocumentPageShowDiff(common.TransactionCase): history_document = self.env['document.page.history'] history_pages = history_document.search([('page_id', '=', page.id)]) - self.assertEqual(len([i.id for i in history_pages]), 2) - self.assertTrue(show_diff_object.with_context( active_ids=[i.id for i in history_pages] ).get_diff()) @@ -26,8 +24,6 @@ class TestDocumentPageShowDiff(common.TransactionCase): history_pages = history_document.search([('page_id', '=', page.id)]) - self.assertEqual(len([i.id for i in history_pages]), 1) - with self.assertRaises(Exception) as context: show_diff_object.with_context( active_ids=[i.id for i in history_pages] From ebf42c8c26b70cd5c45166eb046d78a13a3f2657 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 18:55:27 +0100 Subject: [PATCH 41/52] Test corrected --- document_page/tests/test_document_page_show_diff.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index 2395e919..d13879fa 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -20,7 +20,8 @@ class TestDocumentPageShowDiff(common.TransactionCase): active_ids=[i.id for i in history_pages] ).get_diff()) - page.content = 'Test content updated' + page.write({'content': 'Text content updated'}) + page.write({'content': 'Text updated'}) history_pages = history_document.search([('page_id', '=', page.id)]) From 4a2b2a85f96f7337aab3b2bb1ff1e5829cabe791 Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Tue, 8 Dec 2015 21:20:54 +0100 Subject: [PATCH 42/52] flake8 error corrected --- document_page/tests/test_document_page_show_diff.py | 13 ++++++++----- document_page/wizard/document_page_show_diff.py | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index d13879fa..a43f7bc1 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -16,9 +16,11 @@ class TestDocumentPageShowDiff(common.TransactionCase): history_document = self.env['document.page.history'] history_pages = history_document.search([('page_id', '=', page.id)]) - self.assertTrue(show_diff_object.with_context( + self.assertTrue( + show_diff_object.with_context( active_ids=[i.id for i in history_pages] - ).get_diff()) + ).get_diff() + ) page.write({'content': 'Text content updated'}) page.write({'content': 'Text updated'}) @@ -27,7 +29,8 @@ class TestDocumentPageShowDiff(common.TransactionCase): with self.assertRaises(Exception) as context: show_diff_object.with_context( - active_ids=[i.id for i in history_pages] - ).get_diff() + active_ids=[i.id for i in history_pages] + ).get_diff() - self.assertTrue(_("You need to select minimum one or maximum two history revisions!") in context.exception) + self.assertTrue(_("Select one or maximum two history revisions!") + in context.exception) diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index dd960a63..db42214d 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -48,7 +48,7 @@ class DocumentPageShowDiff(models.TransientModel): diff = history.getDiff(ids[0], nids.id) else: raise exceptions.Warning( - _("You need to select minimum one or maximum two history revisions!") + _("Select one or maximum two history revisions!") ) return diff From 72490246385964f1f8ed36f56932d247e857e25e Mon Sep 17 00:00:00 2001 From: Gervais Naoussi Date: Mon, 18 Jan 2016 02:21:57 +0100 Subject: [PATCH 43/52] Fix TypeError: function lambda at 0x7f1f2cb562a8 is not JSON serializable --- document_page/__openerp__.py | 2 +- document_page/models/document_page_history.py | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index d4e8a3e0..8c129f3e 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -21,7 +21,7 @@ { 'name': 'Document Page', - 'version': '9.0.1.0.0', + 'version': '9.0.1.0.1', 'category': 'Knowledge Management', 'author': 'OpenERP SA, Odoo Community Association (OCA)', 'images': ['images/category_list.png', 'images/create_category.png', diff --git a/document_page/models/document_page_history.py b/document_page/models/document_page_history.py index 47a84591..9bbf61a8 100644 --- a/document_page/models/document_page_history.py +++ b/document_page/models/document_page_history.py @@ -58,14 +58,3 @@ class DocumentPageHistory(models.Model): "Revision-{}".format(v2), context=True ) - - def __getattr__(self, attr): - """Return a dummy callabale.""" - if attr in ['_sql', 'init', '_ids']: - raise AttributeError - - _logger.warning( - "Trying to access attribute %s on document_page_history", - attr - ) - return (lambda *a, **b: None) From 0a56887b1e3199e15ee8bc115054bfa67f365b42 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:52:51 +0200 Subject: [PATCH 44/52] [MIG] Make modules uninstallable --- document_page/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py index 8c129f3e..8fbb9d70 100644 --- a/document_page/__openerp__.py +++ b/document_page/__openerp__.py @@ -43,7 +43,7 @@ 'demo': [ 'demo/document_page.xml' ], - 'installable': True, + 'installable': False, 'auto_install': False, 'css': ['static/src/css/document_page.css'], } From ea3a65a1f1eec0135a9680f3240e7ccb2f867a3c Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:52:57 +0200 Subject: [PATCH 45/52] [MIG] Rename manifest files --- document_page/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename document_page/{__openerp__.py => __manifest__.py} (100%) diff --git a/document_page/__openerp__.py b/document_page/__manifest__.py similarity index 100% rename from document_page/__openerp__.py rename to document_page/__manifest__.py From 854db604f51c783dd1788f6b1c217281fd991664 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Thu, 2 Feb 2017 06:30:30 -0800 Subject: [PATCH 46/52] [MIG] document_page: Migration to version 10.0 (#120) * [MIG] Migration to version 10.0 * [FIX] Comments and CI errors * [FIX] ValueError: External ID not found in the system: base.menu_base_partner * [FIX] ValueError: Wrong value for ir.actions.act_window.target: 'inlineview' * [FIX] Based on @lasley comments * [FIX] External ID not found in the system: base.group_document_user --- document_page/README.rst | 24 +- document_page/__init__.py | 22 +- document_page/__manifest__.py | 39 +- document_page/data/document_page.xml | 43 +- document_page/demo/document_page.xml | 8 +- document_page/models/__init__.py | 22 +- document_page/models/document_page.py | 35 +- document_page/models/document_page_history.py | 27 +- .../security/document_page_security.xml | 6 +- document_page/static/description/icon.png | Bin 0 -> 9455 bytes document_page/tests/test_document_page.py | 2 +- .../tests/test_document_page_create_menu.py | 4 +- .../tests/test_document_page_history.py | 2 +- .../tests/test_document_page_show_diff.py | 4 +- document_page/views/document_page.xml | 553 +++++++++--------- document_page/wizard/__init__.py | 22 +- .../wizard/document_page_create_menu.py | 26 +- .../wizard/document_page_create_menu.xml | 69 ++- .../wizard/document_page_show_diff.py | 26 +- .../wizard/document_page_show_diff.xml | 58 +- 20 files changed, 418 insertions(+), 574 deletions(-) create mode 100644 document_page/static/description/icon.png diff --git a/document_page/README.rst b/document_page/README.rst index efbfb619..da347ffa 100644 --- a/document_page/README.rst +++ b/document_page/README.rst @@ -16,7 +16,7 @@ This module depends on module knowledge. So make sure to have it in your addons Configuration ============= -No configuration required +No configuration required. Usage ===== @@ -30,7 +30,7 @@ To use this module, you need to: .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/118/9.0 + :target: https://runbot.odoo-community.org/runbot/118/10.0 Known issues / Roadmap ====================== @@ -40,17 +40,29 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here `_. +If you spotted it first, help us smash it by providing detailed and welcomed feedback. Credits ======= +Images +------ + +* Odoo Community Association: `Icon `_. + Contributors ------------ -* Odoo SA -* Savoir-faire Linux * Gervais Naoussi +* Maxime Chambreuil + +Funders +------- + +The development of this module has been financially supported by: + +* Odoo SA +* Savoir-faire Linux Maintainer ---------- @@ -65,4 +77,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/document_page/__init__.py b/document_page/__init__.py index a7385355..e20b6b62 100644 --- a/document_page/__init__.py +++ b/document_page/__init__.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from . import models from . import wizard diff --git a/document_page/__manifest__.py b/document_page/__manifest__.py index 8fbb9d70..0f5646ec 100644 --- a/document_page/__manifest__.py +++ b/document_page/__manifest__.py @@ -1,32 +1,21 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + { 'name': 'Document Page', - 'version': '9.0.1.0.1', + 'version': '10.0.1.0.0', 'category': 'Knowledge Management', 'author': 'OpenERP SA, Odoo Community Association (OCA)', - 'images': ['images/category_list.png', 'images/create_category.png', - 'images/page_list.png', 'images/create_page.png', - 'images/customer_invoice.jpeg', 'images/page_history.png'], + 'images': [ + 'images/category_list.png', + 'images/create_category.png', + 'images/page_list.png', + 'images/create_page.png', + 'images/customer_invoice.jpeg', + 'images/page_history.png', + ], 'website': 'http://www.openerp.com/', 'license': 'AGPL-3', 'depends': [ @@ -39,11 +28,9 @@ 'views/document_page.xml', 'security/document_page_security.xml', 'security/ir.model.access.csv', + 'data/document_page.xml', ], 'demo': [ 'demo/document_page.xml' ], - 'installable': False, - 'auto_install': False, - 'css': ['static/src/css/document_page.css'], } diff --git a/document_page/data/document_page.xml b/document_page/data/document_page.xml index 9cd3c0dd..af054bea 100644 --- a/document_page/data/document_page.xml +++ b/document_page/data/document_page.xml @@ -1,41 +1,6 @@ - + - - - The Odoo wiki - help, quick start, wiki, formatting - 0 - 1 - Initial Page - == The Odoo wiki == - -[[File:https://www.odoo.com/openerp_website/static/src/img/logo_transparent_198px.png Odoo]] - -The Odoo 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] - - - - - - + diff --git a/document_page/demo/document_page.xml b/document_page/demo/document_page.xml index 8e6d2eca..7fb2fe85 100644 --- a/document_page/demo/document_page.xml +++ b/document_page/demo/document_page.xml @@ -1,10 +1,11 @@ - - + + - + OpenERP Features category @@ -127,5 +128,4 @@ Think of it as an out-of-the-box solution to boost your business' productivity.< - diff --git a/document_page/models/__init__.py b/document_page/models/__init__.py index 2d33cac6..032f47f7 100644 --- a/document_page/models/__init__.py +++ b/document_page/models/__init__.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from . import document_page from . import document_page_history diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index 65e68600..1c58ce72 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -1,25 +1,9 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + import logging -from openerp import models, fields, api +from odoo import api, fields, models _logger = logging.getLogger(__name__) @@ -53,9 +37,7 @@ class DocumentPage(models.Model): 'Children' ) - content = fields.Text( - "Content" - ) + content = fields.Text("Content") display_content = fields.Text( string='Displayed Content', @@ -76,26 +58,23 @@ class DocumentPage(models.Model): 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) + readonly=True + ) write_uid = fields.Many2one( 'res.users', "Last Contributor", - select=True, readonly=True ) diff --git a/document_page/models/document_page_history.py b/document_page/models/document_page_history.py index 9bbf61a8..4124a9f8 100644 --- a/document_page/models/document_page_history.py +++ b/document_page/models/document_page_history.py @@ -1,26 +1,11 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + import logging import difflib -from openerp import models, fields, _ +from odoo import fields, models +from odoo.tools.translate import _ _logger = logging.getLogger(__name__) @@ -34,7 +19,7 @@ class DocumentPageHistory(models.Model): _rec_name = "create_date" page_id = fields.Many2one('document.page', 'Page') - summary = fields.Char('Summary', select=True) + summary = fields.Char('Summary', index=True) content = fields.Text("Content") create_date = fields.Datetime("Date") create_uid = fields.Many2one('res.users', "Modified By") diff --git a/document_page/security/document_page_security.xml b/document_page/security/document_page_security.xml index 6834b69b..14308202 100644 --- a/document_page/security/document_page_security.xml +++ b/document_page/security/document_page_security.xml @@ -1,8 +1,8 @@ - - + + - + diff --git a/document_page/static/description/icon.png b/document_page/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/document_page/tests/test_document_page.py b/document_page/tests/test_document_page.py index 9c3b4d72..a0fb1b4d 100644 --- a/document_page/tests/test_document_page.py +++ b/document_page/tests/test_document_page.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from openerp.tests import common +from odoo.tests import common class TestDocumentPage(common.TransactionCase): diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py index 567b9d9b..2a34ec1f 100644 --- a/document_page/tests/test_document_page_create_menu.py +++ b/document_page/tests/test_document_page_create_menu.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from openerp.tests import common +from odoo.tests import common class TestDocumentPageCreateMenu(common.TransactionCase): @@ -8,7 +8,7 @@ class TestDocumentPageCreateMenu(common.TransactionCase): def test_page_menu_creation(self): """Test page menu creation.""" - menu_parent = self.env.ref('base.menu_base_partner') + menu_parent = self.env.ref('knowledge.menu_document_root') menu_created = self.env['document.page.create.menu'].create( {'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id} diff --git a/document_page/tests/test_document_page_history.py b/document_page/tests/test_document_page_history.py index ced210c1..f6d87702 100644 --- a/document_page/tests/test_document_page_history.py +++ b/document_page/tests/test_document_page_history.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from openerp.tests import common +from odoo.tests import common class TestDocumentPageHistory(common.TransactionCase): diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index a43f7bc1..8f897065 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -from openerp.tests import common -from openerp import _ +from odoo.tests import common +from odoo import _ class TestDocumentPageShowDiff(common.TransactionCase): diff --git a/document_page/views/document_page.xml b/document_page/views/document_page.xml index 06e4f19a..ee5b136c 100644 --- a/document_page/views/document_page.xml +++ b/document_page/views/document_page.xml @@ -1,301 +1,301 @@ - - - - - document.page.tree - document.page - child_ids - 100 - - - - - - - - + - - - document.page.list - document.page - - - - - - - - - - + + + document.page.tree + document.page + child_ids + 100 + + + + + + + + - - - document.page.form - document.page - -

    - - -

    - - - - - - - - - - - - - -
    - -
    -
    -
    - - -
    -
    - - + + + document.page.list + document.page + + + + + + + + + + - - document.page.menu.form - document.page - -
    + + + document.page.form + document.page + + +

    + + + + + + + + + + + + +
    + widget="html" + class="oe_view_only" + options='{"safe": True}' />
    - -
    -
    + +
    + + +
    + +
    +
    - - - document.page.search - document.page - - - - - - - - - - - - - + + document.page.menu.form + document.page + +
    + +

    +
    + +
    + +
    +
    - - - document.page.category.form - document.page - -
    - - -

    + + + document.page.search + document.page + + + + + + + + + + + + + + + + + document.page.category.form + document.page + + + + +

    + - - - - - - - - + - - -
    -
    - -
    - -
    - -
    -
    -
    -
    -
    - - -
    - -
    -
    + + + + + + + + +
    +
    + +
    + +
    + +
    +
    +
    +
    +
    + + +
    + +
    +
    - - document.page.category.tree - document.page - - - - - - - - - - + + document.page.category.tree + document.page + + + + + + + + + + - - - Pages - document.page - [('type','=','content')] - {'default_type': 'content'} - form - tree,form - - - -

    + + + Pages + document.page + [('type','=','content')] + {'default_type': 'content'} + form + tree,form + + + +

    Click to create a new web page. -

    -
    -
    - - - tree - - - - - - form - - - - +

    + + + + + tree + + + + + + form + + + + - - Category - document.page - [('type','=','category')] - {'default_type': 'category'} - form - tree,form - - - - - - tree - - - - - - form - - - - + + Category + document.page + [('type','=','category')] + {'default_type': 'category'} + form + tree,form + + + + + + tree + + + + + + form + + + + - - - document.page.history.tree - document.page.history - - - - - - - - - - - document.page.history.form - document.page.history - -
    -
    + + + document.page.history.tree + document.page.history + + + + + + + + + + + document.page.history.form + document.page.history + +
    +
    - - - Page history - document.page.history - form - tree,form - + + + Page history + document.page.history + form + tree,form + - + - - - diff --git a/document_page/wizard/__init__.py b/document_page/wizard/__init__.py index af150490..2b067b08 100644 --- a/document_page/wizard/__init__.py +++ b/document_page/wizard/__init__.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from . import document_page_create_menu from . import document_page_show_diff diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index 9904ba4d..ebc2649a 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -1,24 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## -from openerp import models, fields, api +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models class DocumentPageCreateMenu(models.TransientModel): @@ -68,7 +52,7 @@ class DocumentPageCreateMenu(models.TransientModel): 'res_model': 'document.page', 'view_id': view_id, 'type': 'ir.actions.act_window', - 'target': 'inlineview', + 'target': 'inline', } value['domain'] = "[('parent_id','=',%d)]" % (page.id) value['res_id'] = page.id diff --git a/document_page/wizard/document_page_create_menu.xml b/document_page/wizard/document_page_create_menu.xml index c18c4729..26828f71 100644 --- a/document_page/wizard/document_page_create_menu.xml +++ b/document_page/wizard/document_page_create_menu.xml @@ -1,41 +1,40 @@ - - - - Create Menu - document.page.create.menu - -
    - - - - -
    -
    -
    -
    -
    + + + + Create Menu + document.page.create.menu + +
    + + + + +
    +
    +
    +
    +
    - - - Create Menu - ir.actions.act_window - document.page.create.menu - form - form - new - + + + Create Menu + ir.actions.act_window + document.page.create.menu + form + form + new + -
    diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index db42214d..0ebf4df8 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -1,25 +1,9 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# 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 . -# -############################################################################## -from openerp import models, fields, _ -from openerp import exceptions +# Copyright (C) 2004-2010 Tiny SPRL (). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import exceptions, fields, models +from odoo.tools.translate import _ class DocumentPageShowDiff(models.TransientModel): diff --git a/document_page/wizard/document_page_show_diff.xml b/document_page/wizard/document_page_show_diff.xml index 4499769f..93dd7278 100644 --- a/document_page/wizard/document_page_show_diff.xml +++ b/document_page/wizard/document_page_show_diff.xml @@ -1,39 +1,38 @@ - - - - Show Difference - wizard.document.page.history.show_diff - -
    - -
    -
    - -
    -
    + + + Show Difference + wizard.document.page.history.show_diff + +
    + +
    +
    + +
    +
    - - - Difference - ir.actions.act_window - wizard.document.page.history.show_diff - form - form - new - + + + Difference + ir.actions.act_window + wizard.document.page.history.show_diff + form + form + new + - - + -
    From e3ebebc2f53c1a00615942ecdb9f96d48c5186b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Fri, 13 Apr 2018 11:36:33 -0300 Subject: [PATCH 47/52] [IMP][10.0][document_page] Change Requests and workflow improvements on documents (#155) --- document_page/README.rst | 1 + document_page/__manifest__.py | 7 +- document_page/data/document_page.xml | 6 - document_page/demo/document_page.xml | 2 +- .../migrations/10.0.2.0.0/post-migration.py | 12 + document_page/models/document_page.py | 170 ++++++----- document_page/models/document_page_history.py | 53 ++-- .../security/document_page_security.xml | 11 +- document_page/security/ir.model.access.csv | 9 +- .../static/src/css/document_page.css | 35 ++- document_page/tests/__init__.py | 2 +- document_page/tests/test_document_page.py | 53 ++-- .../tests/test_document_page_create_menu.py | 2 +- .../tests/test_document_page_show_diff.py | 4 +- document_page/views/document_page.xml | 264 ++++-------------- document_page/views/document_page_assets.xml | 10 + .../views/document_page_category.xml | 88 ++++++ document_page/views/document_page_history.xml | 88 ++++++ document_page/views/report_document_page.xml | 31 ++ .../wizard/document_page_show_diff.py | 24 +- .../wizard/document_page_show_diff.xml | 10 +- 21 files changed, 518 insertions(+), 364 deletions(-) delete mode 100644 document_page/data/document_page.xml create mode 100644 document_page/migrations/10.0.2.0.0/post-migration.py create mode 100644 document_page/views/document_page_assets.xml create mode 100755 document_page/views/document_page_category.xml create mode 100755 document_page/views/document_page_history.xml create mode 100755 document_page/views/report_document_page.xml diff --git a/document_page/README.rst b/document_page/README.rst index da347ffa..1b1a76de 100644 --- a/document_page/README.rst +++ b/document_page/README.rst @@ -55,6 +55,7 @@ Contributors * Gervais Naoussi * Maxime Chambreuil +* Iván Todorovich Funders ------- diff --git a/document_page/__manifest__.py b/document_page/__manifest__.py index 0f5646ec..38e3b19b 100644 --- a/document_page/__manifest__.py +++ b/document_page/__manifest__.py @@ -5,7 +5,7 @@ { 'name': 'Document Page', - 'version': '10.0.1.0.0', + 'version': '10.0.2.0.0', 'category': 'Knowledge Management', 'author': 'OpenERP SA, Odoo Community Association (OCA)', 'images': [ @@ -26,9 +26,12 @@ 'wizard/document_page_create_menu.xml', 'wizard/document_page_show_diff.xml', 'views/document_page.xml', + 'views/document_page_category.xml', + 'views/document_page_history.xml', + 'views/document_page_assets.xml', + 'views/report_document_page.xml', 'security/document_page_security.xml', 'security/ir.model.access.csv', - 'data/document_page.xml', ], 'demo': [ 'demo/document_page.xml' diff --git a/document_page/data/document_page.xml b/document_page/data/document_page.xml deleted file mode 100644 index af054bea..00000000 --- a/document_page/data/document_page.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/document_page/demo/document_page.xml b/document_page/demo/document_page.xml index 7fb2fe85..799dfbee 100644 --- a/document_page/demo/document_page.xml +++ b/document_page/demo/document_page.xml @@ -9,7 +9,7 @@ OpenERP Features category - + Summary of the feature Long explanation diff --git a/document_page/migrations/10.0.2.0.0/post-migration.py b/document_page/migrations/10.0.2.0.0/post-migration.py new file mode 100644 index 00000000..5c40d42b --- /dev/null +++ b/document_page/migrations/10.0.2.0.0/post-migration.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# Copyright 2018 Ivan Todorovich +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + + +def migrate(cr, version): # pragma: no cover + # Set all pre-existing categories template to its content + cr.execute(""" + UPDATE document_page + SET template = content + WHERE type = 'category' + """) diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index 1c58ce72..3824dc5d 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -2,11 +2,8 @@ # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -import logging from odoo import api, fields, models -_logger = logging.getLogger(__name__) - class DocumentPage(models.Model): """This class is use to manage Document.""" @@ -37,17 +34,48 @@ class DocumentPage(models.Model): 'Children' ) - content = fields.Text("Content") + content = fields.Text( + "Content", + compute='_compute_content', + inverse='_inverse_content', + search='_search_content', + required=True, + ) + # no-op computed field + summary = fields.Char( + help='Describe the changes made', + compute=lambda x: x, + inverse=lambda x: x, + ) + + template = fields.Html( + "Template", + help="Template that will be used as a content template " + "for all new page of this category.", + ) + + # deprecated - should be removed on 11.0 + # left here because some modules might still need it display_content = fields.Text( string='Displayed Content', - compute='_get_display_content' + compute='_compute_display_content' + ) + + history_head = fields.Many2one( + 'document.page.history', + 'HEAD', + compute='_compute_history_head', + store=True, + auto_join=True, ) history_ids = fields.One2many( 'document.page.history', 'page_id', - 'History' + 'History', + order='create_date DESC', + readonly=True, ) menu_id = fields.Many2one( @@ -56,82 +84,88 @@ class DocumentPage(models.Model): readonly=True ) - create_date = fields.Datetime( - "Created on", - readonly=True + content_date = fields.Datetime( + 'Last Contribution Date', + related='history_head.create_date', + store=True, + index=True, + readonly=True, ) - create_uid = fields.Many2one( + content_uid = fields.Many2one( 'res.users', - 'Author', - readonly=True + 'Last Contributor', + related='history_head.create_uid', + store=True, + index=True, + readonly=True, ) - write_date = fields.Datetime( - "Modification Date", - readonly=True - ) - - write_uid = fields.Many2one( - 'res.users', - "Last Contributor", - readonly=True - ) - - def _get_page_index(self, page, link=True): + @api.multi + def _get_page_index(self, link=True): """Return the index of a document.""" + self.ensure_one() index = [] - for subpage in page.child_ids: - index += ["
  • " + self._get_page_index(subpage) + - "
  • "] + for subpage in self.child_ids: + index += ["
  • " + subpage._get_page_index() + "
  • "] r = '' if link: - r = '
    %s' % (page.id, page.name) + r = '%s' % (self.id, self.name) if index: r += "
      " + "".join(index) + "
    " return r - def _get_display_content(self): - """Return the content of a document.""" - for page in self: - if page.type == "category": - display_content = self._get_page_index(page, link=False) - else: - display_content = page.content - page.display_content = display_content - - @api.onchange("parent_id") - def do_set_content(self): - """We Set it the right content to the new parent.""" - if self.parent_id and not self.content: - if self.parent_id.type == "category": - self.content = self.parent_id.content - - def create_history(self, page_id, content): - """Create the first history of a newly created document.""" - history = self.env['document.page.history'] - return history.create({ - "content": content, - "page_id": page_id - }) + @api.multi + @api.depends('content') + def _compute_display_content(self): + # @deprecated, simply use content + for rec in self: + rec.display_content = rec.content @api.multi - def write(self, vals): - """Write the content and set the history.""" - result = super(DocumentPage, self).write(vals) - content = vals.get('content') - if content: - for page in self: - self.create_history(page.id, content) - return result + @api.depends('history_head', 'history_ids') + def _compute_content(self): + for rec in self: + if rec.type == 'category': + rec.content = rec._get_page_index(link=False) + else: + if rec.history_head: + rec.content = rec.history_head.content + else: + # html widget's default, so it doesn't trigger ghost save + rec.content = '


    ' - @api.model - @api.returns('self', lambda value: value.id) - def create(self, vals): - """Create the first history of a document.""" - page_id = super(DocumentPage, self).create(vals) - content = vals.get('content') - if content: - self.create_history(page_id.id, content) - return page_id + @api.multi + def _inverse_content(self): + for rec in self: + if rec.type == 'content': + rec._create_history({ + 'content': rec.content, + 'summary': rec.summary, + }) + + @api.multi + def _search_content(self, operator, value): + return [('history_head.content', operator, value)] + + @api.multi + @api.depends('history_ids') + def _compute_history_head(self): + for rec in self: + if rec.history_ids: + rec.history_head = rec.history_ids[0] + + @api.multi + def _create_history(self, vals): + self.ensure_one() + history = self.env['document.page.history'] + vals['page_id'] = self.id + return history.create(vals) + + @api.onchange("parent_id") + def _onchange_parent_id(self): + """We Set it the right content to the new parent.""" + if not self.content or self.content == '


    ': + if self.parent_id and self.parent_id.type == "category": + self.content = self.parent_id.template diff --git a/document_page/models/document_page_history.py b/document_page/models/document_page_history.py index 4124a9f8..8334d6ab 100644 --- a/document_page/models/document_page_history.py +++ b/document_page/models/document_page_history.py @@ -2,13 +2,10 @@ # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -import logging import difflib -from odoo import fields, models +from odoo import api, fields, models from odoo.tools.translate import _ -_logger = logging.getLogger(__name__) - class DocumentPageHistory(models.Model): """This model is necessary to manage a document history.""" @@ -16,24 +13,40 @@ class DocumentPageHistory(models.Model): _name = "document.page.history" _description = "Document Page History" _order = 'id DESC' - _rec_name = "create_date" - page_id = fields.Many2one('document.page', 'Page') + page_id = fields.Many2one('document.page', 'Page', ondelete='cascade') summary = fields.Char('Summary', index=True) content = fields.Text("Content") - create_date = fields.Datetime("Date") - create_uid = fields.Many2one('res.users', "Modified By") + diff = fields.Text(compute='_compute_diff') + @api.multi + @api.depends('content', 'page_id.history_ids') + def _compute_diff(self): + """Shows a diff between this version and the previous version""" + history = self.env['document.page.history'] + for rec in self: + prev = history.search([ + ('page_id', '=', rec.page_id.id), + ('create_date', '<', rec.create_date)], + limit=1, + order='create_date DESC') + if prev: + rec.diff = self.getDiff(prev.id, rec.id) + else: + rec.diff = self.getDiff(False, rec.id) + + @api.model def getDiff(self, v1, v2): """Return the difference between two version of document version.""" - text1 = self.browse(v1).content - text2 = self.browse(v2).content - line1 = line2 = '' - if text1: - line1 = text1.splitlines(1) - if text2: - line2 = text2.splitlines(1) - if (not line1 and not line2) or (line1 == line2): + text1 = v1 and self.browse(v1).content or '' + text2 = v2 and self.browse(v2).content or '' + # Include line breaks to make it more readable + # TODO: consider using a beautify library directly on the content + text1 = text1.replace('

    ', '

    \r\n

    ') + text2 = text2.replace('

    ', '

    \r\n

    ') + line1 = text1.splitlines(1) + line2 = text2.splitlines(1) + if line1 == line2: return _('There are no changes in revisions.') else: diff = difflib.HtmlDiff() @@ -43,3 +56,11 @@ class DocumentPageHistory(models.Model): "Revision-{}".format(v2), context=True ) + + @api.multi + def name_get(self): + result = [] + for rec in self: + name = "%s #%i" % (rec.page_id.name, rec.id) + result.append((rec.id, name)) + return result diff --git a/document_page/security/document_page_security.xml b/document_page/security/document_page_security.xml index 14308202..57495106 100644 --- a/document_page/security/document_page_security.xml +++ b/document_page/security/document_page_security.xml @@ -1,7 +1,16 @@ - + + Editor + + + + + + Manager + + diff --git a/document_page/security/ir.model.access.csv b/document_page/security/ir.model.access.csv index 2b2fd18c..a61ea1d4 100644 --- a/document_page/security/ir.model.access.csv +++ b/document_page/security/ir.model.access.csv @@ -1,4 +1,7 @@ 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 +document_page_user,document.page user,model_document_page,knowledge.group_document_user,1,0,0,0 +document_page_history_user,document.page.history user,model_document_page_history,knowledge.group_document_user,1,0,0,0 +document_page_editor,document.page editor,model_document_page,group_document_editor,1,1,1,0 +document_page_history_editor,document.page.history editor,model_document_page_history,group_document_editor,1,1,1,0 +document_page_manager,document.page manager,model_document_page,group_document_manager,1,1,1,1 +document_page_history_manager,document.page.history manager,model_document_page_history,group_document_manager,1,1,1,0 diff --git a/document_page/static/src/css/document_page.css b/document_page/static/src/css/document_page.css index ddbbcffd..00a6336c 100644 --- a/document_page/static/src/css/document_page.css +++ b/document_page/static/src/css/document_page.css @@ -1,12 +1,29 @@ -.oe_form_editable .oe_document_page { - display: none; +table.diff { + font-family: Courier; + border: medium; } -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} +table.diff .diff_header { + background-color: #e0e0e0 +} + +table.diff td.diff_header { + text-align: right +} + +table.diff .diff_next { + background-color:#c0c0c0 +} + +table.diff .diff_add { + background-color:#aaffaa +} + +table.diff .diff_chg { + background-color:#ffff77 +} + +table.diff .diff_sub { + background-color:#ffaaaa +} diff --git a/document_page/tests/__init__.py b/document_page/tests/__init__.py index 4c507a03..14e2fa0b 100644 --- a/document_page/tests/__init__.py +++ b/document_page/tests/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from . import test_document_page, test_document_page_history +from . import test_document_page from . import test_document_page_create_menu from . import test_document_page_show_diff diff --git a/document_page/tests/test_document_page.py b/document_page/tests/test_document_page.py index a0fb1b4d..32da79e2 100644 --- a/document_page/tests/test_document_page.py +++ b/document_page/tests/test_document_page.py @@ -4,34 +4,37 @@ from odoo.tests import common class TestDocumentPage(common.TransactionCase): - """document_page test class.""" + + def setUp(self): + super(TestDocumentPage, self).setUp() + self.page_obj = self.env['document.page'] + self.history_obj = self.env['document.page.history'] + self.category1 = self.env.ref('document_page.demo_category1') + self.page1 = self.env.ref('document_page.demo_page1') def test_page_creation(self): - """Test page creation.""" - parent_page = self.env.ref('document_page.demo_category1') - - self.assertEqual(parent_page.name, 'OpenERP Features') - - record = self.env['document.page'].create({ - 'name': 'Test Page1', - 'parent_id': parent_page.id, + page = self.page_obj.create({ + 'name': 'Test Page 1', + 'parent_id': self.category1.id, 'content': 'Test content' }) - self.assertEqual(record.name, 'Test Page1') + self.assertEqual(page.content, 'Test content') + self.assertEqual(len(page.history_ids), 1) + page.content = 'New content for Demo Page' + self.assertEqual(len(page.history_ids), 2) - def test_category_display_content(self): - """Test category display content.""" - page = self.env.ref('document_page.demo_category1') - self.assertTrue(page.display_content.find('Demo') > 1) + def test_category_template(self): + page = self.page_obj.create({ + 'name': 'Test Page 2', + 'parent_id': self.category1.id, + }) + page._onchange_parent_id() + self.assertEqual(page.content, self.category1.template) - def test_page_display_content(self): - """Test page display content.""" - page = self.env.ref('document_page.demo_page1') - self.assertTrue(page.display_content.find('Demo') > 1) - - def test_page_do_set_content(self): - """Test page set content.""" - page = self.env.ref('document_page.demo_page1') - page.content = None - page.do_set_content() - self.assertTrue(page.display_content.find('Summary') == 1) + def test_page_history_diff(self): + page = self.page_obj.create({ + 'name': 'Test Page 3', + 'content': 'Test content' + }) + page.content = 'New content' + self.assertIsNotNone(page.history_ids[0].diff) diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py index 2a34ec1f..2484d008 100644 --- a/document_page/tests/test_document_page_create_menu.py +++ b/document_page/tests/test_document_page_create_menu.py @@ -8,7 +8,7 @@ class TestDocumentPageCreateMenu(common.TransactionCase): def test_page_menu_creation(self): """Test page menu creation.""" - menu_parent = self.env.ref('knowledge.menu_document_root') + menu_parent = self.env.ref('knowledge.menu_document') menu_created = self.env['document.page.create.menu'].create( {'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id} diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index 8f897065..5befd18d 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -19,7 +19,7 @@ class TestDocumentPageShowDiff(common.TransactionCase): self.assertTrue( show_diff_object.with_context( active_ids=[i.id for i in history_pages] - ).get_diff() + )._get_diff() ) page.write({'content': 'Text content updated'}) @@ -30,7 +30,7 @@ class TestDocumentPageShowDiff(common.TransactionCase): with self.assertRaises(Exception) as context: show_diff_object.with_context( active_ids=[i.id for i in history_pages] - ).get_diff() + )._get_diff() self.assertTrue(_("Select one or maximum two history revisions!") in context.exception) diff --git a/document_page/views/document_page.xml b/document_page/views/document_page.xml index ee5b136c..78b8f1b3 100644 --- a/document_page/views/document_page.xml +++ b/document_page/views/document_page.xml @@ -1,11 +1,6 @@ - - document.page.tree @@ -15,8 +10,8 @@ - - + + @@ -30,8 +25,8 @@ - - + + @@ -47,31 +42,32 @@

    - + - - - + + + - - - -
    - -
    + + + + + + + + + + + + + +
    @@ -88,12 +84,7 @@

    -
    - -
    + @@ -104,90 +95,19 @@ document.page - - + + + - - - + + + - - - document.page.category.form - document.page - -
    - - -

    - - - - - - - - - - - - -
    -
    - -
    - -
    - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - - document.page.category.tree - document.page - - - - - - - - - - @@ -200,116 +120,48 @@ -

    - Click to create a new web page. -

    +

    + Click to create a new web page. +

    + tree + form + + + + + + + name="Pages" + parent="menu_wiki" + action="action_page" + sequence="10" /> - - Category - document.page - [('type','=','category')] - {'default_type': 'category'} - form - tree,form - - - - - - tree - - - - - - form - - - - - - - - document.page.history.tree - document.page.history - - - - - - - - - - - document.page.history.form - document.page.history - -
    -
    - - - - Page history - document.page.history - form - tree,form - - - - - + 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"/> diff --git a/document_page/views/document_page_assets.xml b/document_page/views/document_page_assets.xml new file mode 100644 index 00000000..b85b0e06 --- /dev/null +++ b/document_page/views/document_page_assets.xml @@ -0,0 +1,10 @@ + + + + + + diff --git a/document_page/views/document_page_category.xml b/document_page/views/document_page_category.xml new file mode 100755 index 00000000..4725954e --- /dev/null +++ b/document_page/views/document_page_category.xml @@ -0,0 +1,88 @@ + + + + + + document.page.category.form + document.page + +
    + + +

    + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    +
    +
    + + + document.page.category.tree + document.page + + + + + + + + + + + + + + + Category + document.page + [('type','=','category')] + {'default_type': 'category'} + form + tree,form + + + + + + + tree + + + + + + + form + + + + + + + +
    diff --git a/document_page/views/document_page_history.xml b/document_page/views/document_page_history.xml new file mode 100755 index 00000000..b0b49faf --- /dev/null +++ b/document_page/views/document_page_history.xml @@ -0,0 +1,88 @@ + + + + + + document.page.history.tree + document.page.history + + + + + + + + + + + + + + document.page.history.search + document.page.history + + + + + + + + + + + + + + + document.page.history.form + document.page.history + +
    + +

    + + + + + + + + + + + + + +
    +
    +
    +
    + + + + Page history + document.page.history + form + tree,form + + + + + + + +
    diff --git a/document_page/views/report_document_page.xml b/document_page/views/report_document_page.xml new file mode 100755 index 00000000..56419a9c --- /dev/null +++ b/document_page/views/report_document_page.xml @@ -0,0 +1,31 @@ + + + + + + + + + + diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index 0ebf4df8..6757ddb2 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -2,7 +2,8 @@ # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import exceptions, fields, models +from odoo import fields, models +from odoo.exceptions import UserError from odoo.tools.translate import _ @@ -11,33 +12,24 @@ class DocumentPageShowDiff(models.TransientModel): _name = 'wizard.document.page.history.show_diff' - def get_diff(self): + def _get_diff(self): """Return the Difference between two document.""" history = self.env["document.page.history"] ids = self.env.context.get('active_ids', []) - - diff = "" + diff = False if len(ids) == 2: if ids[0] > ids[1]: diff = history.getDiff(ids[1], ids[0]) else: diff = history.getDiff(ids[0], ids[1]) elif len(ids) == 1: - old = history.browse(ids[0]) - nids = history.search( - [('page_id', '=', old.page_id.id)], - order='id DESC', - limit=1 - ) - diff = history.getDiff(ids[0], nids.id) + diff = history.browse(ids[0]).diff else: - raise exceptions.Warning( - _("Select one or maximum two history revisions!") - ) + raise UserError( + _("Select one or maximum two history revisions!")) return diff diff = fields.Text( - 'Diff', readonly=True, - default=get_diff + default=_get_diff, ) diff --git a/document_page/wizard/document_page_show_diff.xml b/document_page/wizard/document_page_show_diff.xml index 93dd7278..c933ac64 100644 --- a/document_page/wizard/document_page_show_diff.xml +++ b/document_page/wizard/document_page_show_diff.xml @@ -6,14 +6,10 @@ Show Difference wizard.document.page.history.show_diff -
    - + +
    -
    From e1dea3ba2017df2d3c263d11b727204cafa52cdd Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 12 Dec 2015 05:28:44 -0500 Subject: [PATCH 48/52] OCA Transbot updated translations from Transifex --- document_page/i18n/am.po | 357 +++++++++++++++++++ document_page/i18n/ar.po | 351 +++++++++--------- document_page/i18n/bg.po | 344 +++++++++--------- document_page/i18n/bs.po | 316 ++++++++-------- document_page/i18n/ca.po | 350 +++++++++--------- document_page/i18n/cs.po | 352 +++++++++--------- document_page/i18n/da.po | 325 ++++++++--------- document_page/i18n/de.po | 381 ++++++++++---------- document_page/i18n/el.po | 340 +++++++++--------- document_page/i18n/el_GR.po | 357 +++++++++++++++++++ document_page/i18n/en.po | 405 +++++++++++++++++++++ document_page/i18n/en_AU.po | 410 +++++++++++++++++++++ document_page/i18n/en_GB.po | 357 +++++++++++++++++++ document_page/i18n/es.po | 349 +++++++++--------- document_page/i18n/es_AR.po | 519 ++++++++++----------------- document_page/i18n/es_CL.po | 410 +++++++++++++++++++++ document_page/i18n/es_CO.po | 410 +++++++++++++++++++++ document_page/i18n/es_CR.po | 386 ++++++++++---------- document_page/i18n/es_DO.po | 410 +++++++++++++++++++++ document_page/i18n/es_EC.po | 410 +++++++++++++++++++++ document_page/i18n/es_ES.po | 357 +++++++++++++++++++ document_page/i18n/es_MX.po | 633 +++++++++++---------------------- document_page/i18n/es_PY.po | 410 +++++++++++++++++++++ document_page/i18n/es_VE.po | 621 ++++++++++---------------------- document_page/i18n/et.po | 332 ++++++++--------- document_page/i18n/eu.po | 410 +++++++++++++++++++++ document_page/i18n/fa.po | 357 +++++++++++++++++++ document_page/i18n/fi.po | 383 ++++++++++---------- document_page/i18n/fr.po | 366 +++++++++---------- document_page/i18n/fr_CA.po | 357 +++++++++++++++++++ document_page/i18n/gl.po | 340 +++++++++--------- document_page/i18n/gu.po | 410 +++++++++++++++++++++ document_page/i18n/he.po | 357 +++++++++++++++++++ document_page/i18n/hi.po | 410 +++++++++++++++++++++ document_page/i18n/hr.po | 362 +++++++++---------- document_page/i18n/hu.po | 393 ++++++++++---------- document_page/i18n/hy.po | 410 +++++++++++++++++++++ document_page/i18n/id.po | 319 +++++++++-------- document_page/i18n/is.po | 357 +++++++++++++++++++ document_page/i18n/it.po | 369 ++++++++++--------- document_page/i18n/ja.po | 354 +++++++++--------- document_page/i18n/ka.po | 410 +++++++++++++++++++++ document_page/i18n/kab.po | 357 +++++++++++++++++++ document_page/i18n/kk.po | 410 +++++++++++++++++++++ document_page/i18n/ko.po | 368 +++++++++---------- document_page/i18n/ln.po | 410 +++++++++++++++++++++ document_page/i18n/lo.po | 410 +++++++++++++++++++++ document_page/i18n/lt.po | 334 ++++++++--------- document_page/i18n/lv.po | 352 +++++++++--------- document_page/i18n/mk.po | 390 ++++++++++---------- document_page/i18n/mn.po | 392 ++++++++++---------- document_page/i18n/nb.po | 380 ++++++++++---------- document_page/i18n/nl.po | 395 ++++++++++---------- document_page/i18n/nl_BE.po | 482 ++++++++++++------------- document_page/i18n/nl_NL.po | 357 +++++++++++++++++++ document_page/i18n/pl.po | 408 +++++++++++---------- document_page/i18n/pt.po | 360 +++++++++---------- document_page/i18n/pt_BR.po | 394 ++++++++++---------- document_page/i18n/pt_PT.po | 357 +++++++++++++++++++ document_page/i18n/ro.po | 418 +++++++++++----------- document_page/i18n/ru.po | 424 +++++++++++----------- document_page/i18n/sk.po | 352 +++++++++--------- document_page/i18n/sl.po | 399 ++++++++++----------- document_page/i18n/sr.po | 338 +++++++++--------- document_page/i18n/sr@latin.po | 338 +++++++++--------- document_page/i18n/sv.po | 378 ++++++++++---------- document_page/i18n/th.po | 357 +++++++++++++++++++ document_page/i18n/tr.po | 509 +++++++++++++++----------- document_page/i18n/uk.po | 334 ++++++++--------- document_page/i18n/vi.po | 342 +++++++++--------- document_page/i18n/zh_CN.po | 392 ++++++++++---------- document_page/i18n/zh_TW.po | 353 +++++++++--------- 72 files changed, 18768 insertions(+), 8978 deletions(-) create mode 100644 document_page/i18n/am.po create mode 100644 document_page/i18n/el_GR.po create mode 100644 document_page/i18n/en.po create mode 100644 document_page/i18n/en_AU.po create mode 100644 document_page/i18n/en_GB.po create mode 100644 document_page/i18n/es_CL.po create mode 100644 document_page/i18n/es_CO.po create mode 100644 document_page/i18n/es_DO.po create mode 100644 document_page/i18n/es_EC.po create mode 100644 document_page/i18n/es_ES.po create mode 100644 document_page/i18n/es_PY.po create mode 100644 document_page/i18n/eu.po create mode 100644 document_page/i18n/fa.po create mode 100644 document_page/i18n/fr_CA.po create mode 100644 document_page/i18n/gu.po create mode 100644 document_page/i18n/he.po create mode 100644 document_page/i18n/hi.po create mode 100644 document_page/i18n/hy.po create mode 100644 document_page/i18n/is.po create mode 100644 document_page/i18n/ka.po create mode 100644 document_page/i18n/kab.po create mode 100644 document_page/i18n/kk.po create mode 100644 document_page/i18n/ln.po create mode 100644 document_page/i18n/lo.po create mode 100644 document_page/i18n/nl_NL.po create mode 100644 document_page/i18n/pt_PT.po create mode 100644 document_page/i18n/th.po diff --git a/document_page/i18n/am.po b/document_page/i18n/am.po new file mode 100644 index 00000000..b3759ee1 --- /dev/null +++ b/document_page/i18n/am.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "መሰረዝ" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/ar.po b/document_page/i18n/ar.po index dfdf8f06..ed52a8e7 100644 --- a/document_page/i18n/ar.po +++ b/document_page/i18n/ar.po @@ -1,266 +1,263 @@ -# 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:26+0200\n" -"PO-Revision-Date: 2015-08-03 14:27+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Arabic \n" -"Language: ar\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "الكاتب" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Cancel" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "إلغاء" + +#. module: document_page #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "الفئة" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "المحتوى" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "" +msgstr "أنشئ بواسطة" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" +msgstr "أنشئ في" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "المستندات" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "تجميع حسب..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "المعرف" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "المحتوى" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "المشارك الاخير" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "آخر تحديث بواسطة" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "القائمة" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "معلومات القائمة" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "تم التعديل عليها بواسطة" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "تاريخ الصفحة" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -268,9 +265,9 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "نوع الصفحة" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_page @@ -285,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "الاسم" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "النوع" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page @@ -333,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" 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 "" diff --git a/document_page/i18n/bg.po b/document_page/i18n/bg.po index ec490d74..d2d2539f 100644 --- a/document_page/i18n/bg.po +++ b/document_page/i18n/bg.po @@ -1,262 +1,256 @@ -# Bulgarian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:27+0200\n" -"PO-Revision-Date: 2015-08-03 14:27+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Bulgarian \n" -"Language: bg\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "Отказ" +msgstr "Откажи" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Съдържание" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Създай меню" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Създадено на" +msgstr "Създадено от" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Създадено на" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Различия" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Документи" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Групиране по..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Съдържание" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Последно обновено от" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Меню" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Информация за меню" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Име на меню" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Страници" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата на редакция" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Страници" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Надменю" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Резюме" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Заглавие" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/bs.po b/document_page/i18n/bs.po index 8dc8cb24..9f1379e9 100644 --- a/document_page/i18n/bs.po +++ b/document_page/i18n/bs.po @@ -1,260 +1,256 @@ -# Bosnian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:27+0200\n" -"PO-Revision-Date: 2015-08-03 14:27+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Bosnian \n" -"Language: bs\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Otkaži" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "" +msgstr "Kreirao" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" +msgstr "Kreirano" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -269,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -286,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "" -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "" - #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "ili" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/ca.po b/document_page/i18n/ca.po index 435f6344..a39c315f 100644 --- a/document_page/i18n/ca.po +++ b/document_page/i18n/ca.po @@ -1,269 +1,263 @@ -# Catalan 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:28+0200\n" -"PO-Revision-Date: 2015-08-03 14:28+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Catalan \n" -"Language: ca\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancel·la" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Contingut" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crea menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Creat el" +msgstr "Creat per" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creat el" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Dif." +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferència" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Documents" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Agrupa per..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Contingut" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Últim col·laborador" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Darrera Actualització per" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menú" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Informació del menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nom menú" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Pàgines" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data modificació" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "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" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Pàgines" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú pare" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resum" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Títol" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. 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 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" 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 "" diff --git a/document_page/i18n/cs.po b/document_page/i18n/cs.po index 1c152802..a9ae1d23 100644 --- a/document_page/i18n/cs.po +++ b/document_page/i18n/cs.po @@ -1,269 +1,263 @@ -# Czech 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:28+0200\n" -"PO-Revision-Date: 2015-08-03 14:28+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Czech \n" -"Language: cs\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Zrušit" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Obsah" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Vytvořit nabídku" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Vytvořeno" +msgstr "Vytvořil(a)" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Vytvořeno" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Rozdíl" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Rozdíly" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenty" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Seskupit podle..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Obsah" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Poslední přispěvatel" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Naposled upraveno" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Nabídka" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Informace nabídky" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Jméno nabídky" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Stránky" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum změny" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historie stránky" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Stránky" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Rodičovská nabídka" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Shrnutí" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Název" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. 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 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "nebo" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/da.po b/document_page/i18n/da.po index 03fd8d87..ad0df6d5 100644 --- a/document_page/i18n/da.po +++ b/document_page/i18n/da.po @@ -1,259 +1,256 @@ -# 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:28+0200\n" -"PO-Revision-Date: 2015-08-03 14:28+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Danish \n" -"Language: da\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "" +msgstr "Annuller" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "" +msgstr "Oprettet af" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" +msgstr "Oprettet den" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenter" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "Id" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Sidst opdateret af" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -268,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -285,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "" -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "" - #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "eller" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/de.po b/document_page/i18n/de.po index 446d87d3..83935adf 100644 --- a/document_page/i18n/de.po +++ b/document_page/i18n/de.po @@ -1,280 +1,272 @@ -# German 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +# Niki Waibel, 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:28+0200\n" -"PO-Revision-Date: 2015-08-03 14:28+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: German \n" -"Language: de\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: Niki Waibel, 2018\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-03 05:55+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "Autor" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Abbrechen" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "Kategorien" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "Kategorie" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Kindelemente" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff -#, fuzzy +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Klicke hier um eine neue Seite zu erstellen." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "Beenden" +msgstr "Schließen" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "Inhalt" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Menü erstellen" +msgstr "Erzeuge Menü" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Erzeugt am" +msgstr "Erstellt durch" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" -msgstr "Erzeugt am" +msgstr "Erstellt am" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Differenz" +msgstr "Unterschied" #. 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Differenz" +msgstr "Unterschied" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Inhalt anzeigen" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Dokumentenhistorie" +msgstr "Verlauf des Dokumentes" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Dokumentenseite" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Dokumenten Seite Historie" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Dokumententyp" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Dokumentenseite" +msgstr "Dokumente" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Gruppiert je..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Historie" +msgstr "Verlauf" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" -msgstr "ID des Reports , definiert in xml Datei" +msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Inhalt" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Letzer Beitragender" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Zuletzt aktualisiert am" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Zuletzt aktualisiert von" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "Menü" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Menü" +msgstr "Menü Information" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Menübezeichnung" +msgstr "Menü Name" #. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Seiten" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Änderung am" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Geändert von" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Bezeichnung" +msgstr "Name" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "Seite" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Seitenänderungsverlauf" +msgstr "Verlauf der Seite" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Seitenhistorie" +msgstr "Verlauf der Seite" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "Seitentyp" @@ -288,82 +280,79 @@ msgstr "Seiten" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Seitenhistorie" +msgstr "Verlauf der Seiten" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Obermenü" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Wähle eine oder maximal zwei Verlaufrevisionen!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "Zusammenfassung" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "Vorlage" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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" +msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Es gibt keine Veränderungen in den Revisionen" +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Titel" +msgstr "Überschrift" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "Typ" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Assistent Menü erstellen" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "zB Es war einmal …" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." msgstr "" #. 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 -#: 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 eine und maximal zwei Revisionen auswählen!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -msgid "e.g. Once upon a time..." -msgstr "z.B. Es war einmal..." - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "oder" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Angezeigter Inhalt" - -#~ msgid "Warning!" -#~ msgstr "Warnung!" - -#~ msgid "Create web pages" -#~ msgstr "Webseiten erstellen" +#. 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" diff --git a/document_page/i18n/el.po b/document_page/i18n/el.po index be7561c7..8f4b635f 100644 --- a/document_page/i18n/el.po +++ b/document_page/i18n/el.po @@ -1,262 +1,256 @@ -# Greek 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:29+0200\n" -"PO-Revision-Date: 2015-08-03 14:29+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Greek \n" -"Language: el\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Δημιουργός" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Ακύρωση" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Περιεχόμενα" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Δημιουργία Μενού" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Δημιουργήθηκε στις" +msgstr "Δημιουργήθηκε από" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Ημερομηνία" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Διαφ." +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Έγγραφα" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "Κωδικός" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Περιεχόμενα" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Τελευταία Αναβαθμίστηκε από" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Τελευταία Αναβαθμίστηκε στις" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Μενού" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Πληροφορίες Μενού" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Όνομα Μενού" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Σελίδες" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Ημερομηνία Τροποποίησης" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Σελίδες" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Μενού Προέλευσης" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Περίληψη" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Τίτλος" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/el_GR.po b/document_page/i18n/el_GR.po new file mode 100644 index 00000000..732ada88 --- /dev/null +++ b/document_page/i18n/el_GR.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "Κωδικός" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/en.po b/document_page/i18n/en.po new file mode 100644 index 00000000..63327996 --- /dev/null +++ b/document_page/i18n/en.po @@ -0,0 +1,405 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-09 11:27+0000\n" +"PO-Revision-Date: 2016-01-09 11:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-knowledge-9-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "Action Needed" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "Author" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancel" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "Categories" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "Category" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "Children" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Click to create a new web page." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Close" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "Content" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "Create Menu" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Created on" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "Date" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "Date of the last message posted on the record." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +msgstr "Diff" + +#. 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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Difference" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Displayed Content" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Document History" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "Document Page" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "Document Page History" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Document Type" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Documents" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "Followers" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "Followers (Channels)" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "Followers (Partners)" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Group By..." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "History" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "If checked new messages require your attention." + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "If checked, new messages require your attention." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "Is Follower" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "Last Content" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "Last Contributor" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "Last Message Date" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menu Information" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "Menu Name" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "Messages" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "Modification Date" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "Modified By" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Name" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "Number of Actions" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Number of messages which requires an action" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "Number of unread messages" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "Page" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Page History" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Page history" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "Page type" + +#. 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_page_history +msgid "Pages history" +msgstr "Pages history" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "Parent Menu" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Select one or maximum two history revisions!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "Summary" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "Template" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "Template that will be used as a content template for all new page of this category." + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "There are no changes in revisions." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "Title" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "Type" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "Unread Messages" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "Unread Messages Counter" + +#. 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 +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "e.g. Once upon a time..." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "or" + +#. 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" diff --git a/document_page/i18n/en_AU.po b/document_page/i18n/en_AU.po new file mode 100644 index 00000000..50fb32b3 --- /dev/null +++ b/document_page/i18n/en_AU.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-knowledge-9-0/language/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancel" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "or" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/en_GB.po b/document_page/i18n/en_GB.po new file mode 100644 index 00000000..44f5e2f4 --- /dev/null +++ b/document_page/i18n/en_GB.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancel" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Created on" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Documents" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "or" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/es.po b/document_page/i18n/es.po index 6ec3bb9d..46260a4e 100644 --- a/document_page/i18n/es.po +++ b/document_page/i18n/es.po @@ -1,281 +1,272 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * document_page -# +# * document_page +# +# Translators: +# enjolras , 2018 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:29+0200\n" -"PO-Revision-Date: 2015-08-03 14:29+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: \n" -"Language: es\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Pulse para crear una nueva página web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "Autor" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "Categorías" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 selection:document.page,type:0 +#: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "Categoría" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "Hijos" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Pulse para crear una nueva página web." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "Cerrar" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 selection:document.page,type:0 -#: field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "Contenido" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "Crear menú" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" -msgstr "Creado en" +msgstr "Creado el" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Fecha" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Fecha del último mensaje publicado en el registro." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Dif." +msgstr "Diff" #. 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferencia" +msgstr "Diferencias" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Contenido mostrado" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Historial del Documento" +msgstr "Historial del documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" -msgstr "Página de documento" +msgstr "Página del documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" -msgstr "Historia de página de documento" +msgstr "Historial de página del documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Seguidores" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "Agrupar por..." #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "Historial" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." -msgstr "" -"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " -"directamente en formato html para ser insertada en las vistas kanban." - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "Si está marcado nuevos mensajes requieren su atención." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "Es un seguidor" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Ultimo contenido" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último colaborador" +msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Fecha del ultimo mensaje" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Última modificación el" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "Ultima actualización por" +msgstr "Última actualización por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" -msgstr "Ultima actualización en" +msgstr "Última actualización el" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "Menú" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" msgstr "Información del menú" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nombre menú" +msgstr "Nombre del menú" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Mensajes" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Mensajes e historial de comunicación" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "Nombre" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "Página" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historial de página" +msgstr "Historial de la página" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Historial de página" +msgstr "Historial de la página" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "Tipo de página" @@ -289,71 +280,79 @@ msgstr "Páginas" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Historial de páginas" +msgstr "Historial de las páginas" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú padre" +msgstr "Menú superior" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "Resumen" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "Plantilla" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Plantilla que se utilizará como una plantilla de contenido para todas las " -"nuevas páginas de esta categoría." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "No hay cambios en las revisiones." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "Título" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "Tipo" -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Mensajes no leídos" - #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Asistente crear menú" +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 "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "Por ejemplo, Érase una vez..." +msgstr "p.e. Érase una vez..." #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "o" + +#. 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" diff --git a/document_page/i18n/es_AR.po b/document_page/i18n/es_AR.po index 45afd754..8f8c324b 100644 --- a/document_page/i18n/es_AR.po +++ b/document_page/i18n/es_AR.po @@ -1,482 +1,357 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * wiki -# +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:29+0200\n" -"PO-Revision-Date: 2015-08-03 14:30+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: \n" -"Language: es_AR\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Pulse para crear una nueva página web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Autor" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorías" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 selection:document.page,type:0 +#: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categoría" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Hijos" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "Cerrar" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 selection:document.page,type:0 -#: field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Contenido" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crear menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creado en" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Fecha" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Fecha del último mensaje publicado en el registro." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Dif." +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferencia" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Historial del Documento" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Página de documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Historia de página de documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Seguidores" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historial" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" -"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " -"directamente en formato html para ser insertada en las vistas kanban." #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "Si está marcado nuevos mensajes requieren su atención." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "Es un seguidor" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Ultimo contenido" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último colaborador" +msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Fecha del ultimo mensaje" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "Ultima actualización por" +msgstr "Última actualización realizada por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" -msgstr "Ultima actualización en" +msgstr "Última actualización el" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menú" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Información del menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nombre del menú" +msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Mensajes" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Mensajes e historial de comunicación" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nombre" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historial de página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Historial de página" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipo de página" +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áginas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Historial de páginas" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú padre" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resumen" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Plantilla" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Plantilla que se utilizará como una plantilla de contenido para todas las " -"nuevas páginas de esta categoría." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "No hay cambios en las revisiones." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Título" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Mensajes no leídos" +msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Asistente crear menú" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -msgid "e.g. Once upon a time..." -msgstr "Por ejemplo, Érase una vez..." - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" msgstr "" -#~ msgid "Wiki Pages" -#~ msgstr "Páginas Wiki" +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" -#~ msgid "Open Page" -#~ msgstr "Abrir página" +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" -#~ msgid "Section" -#~ msgstr "Sección" +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" -#~ msgid "Wiki History" -#~ msgstr "Historial Wiki" - -#~ msgid "Minor edit" -#~ msgstr "Edición menor" - -#~ msgid "Wiki Group" -#~ msgstr "Grupo Wiki" - -#~ msgid "History Lines" -#~ msgstr "Líneas del historial" - -#~ 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" - -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgid "Warning" -#~ msgstr "Aviso" - -#~ msgid "Want to create a Index on Selected Pages ? " -#~ msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#~ msgid "Make Section ?" -#~ msgstr "¿Crear sección?" - -#~ msgid "Text area" -#~ msgstr "Área de texto" - -#~ msgid "Notes" -#~ msgstr "Notas" - -#~ msgid "Created Date" -#~ msgstr "Fecha de creación" - -#~ msgid "wiki.wiki" -#~ msgstr "wiki.wiki" - -#~ msgid "wizard.wiki.history.show_diff" -#~ msgstr "asistente.wiki.historial.mostrar_dif" - -#~ msgid "Wiki Id" -#~ msgstr "ID Wiki" - -#~ msgid "Wiki" -#~ msgstr "Wiki" - -#~ msgid "Configuration" -#~ msgstr "Configuración" - -#~ msgid "Create Index" -#~ msgstr "Crear índice" - -#~ msgid "This is a major edit ?" -#~ msgstr "¿Es ésta una edición mayor?" - -#~ msgid "Wiki Groups" -#~ msgstr "Grupos Wiki" - -#~ msgid "Table of Contents" -#~ msgstr "Tabla de contenidos" - -#~ msgid "Need Review" -#~ msgstr "Necesita revisión" - -#~ 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 "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" - -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/es_CL.po b/document_page/i18n/es_CL.po new file mode 100644 index 00000000..052d9602 --- /dev/null +++ b/document_page/i18n/es_CL.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-knowledge-9-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/es_CO.po b/document_page/i18n/es_CO.po new file mode 100644 index 00000000..9e534e1e --- /dev/null +++ b/document_page/i18n/es_CO.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-knowledge-9-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/es_CR.po b/document_page/i18n/es_CR.po index 08d28454..0f7ad2a2 100644 --- a/document_page/i18n/es_CR.po +++ b/document_page/i18n/es_CR.po @@ -1,359 +1,357 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * document_page -# +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:30+0200\n" -"PO-Revision-Date: 2015-08-03 14:30+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: \n" -"Language: es_CR\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Pulse para crear una nueva página web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Autor" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorías" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 selection:document.page,type:0 +#: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categoría" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Hijos" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "Cerrar" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 selection:document.page,type:0 -#: field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Contenido" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crear menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creado en" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Fecha" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Fecha del último mensaje publicado en el registro." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Dif." +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferencia" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Historial del Documento" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Página de documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Historia de página de documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Seguidores" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historial" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" -"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " -"directamente en formato html para ser insertada en las vistas kanban." #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "Si está marcado nuevos mensajes requieren su atención." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "Es un seguidor" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Ultimo contenido" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último colaborador" +msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Fecha del ultimo mensaje" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menú" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Información del menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nombre menú" +msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Mensajes" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Mensajes e historial de comunicación" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nombre" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historial de página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Historial de página" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipo de página" +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áginas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Historial de páginas" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú padre" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resumen" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Plantilla" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Plantilla que se utilizará como una plantilla de contenido para todas las " -"nuevas páginas de esta categoría." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "No hay cambios en las revisiones." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Título" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Mensajes no leídos" +msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Asistente crear menú" +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 "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "Por ejemplo, Érase una vez..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "o" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/es_DO.po b/document_page/i18n/es_DO.po new file mode 100644 index 00000000..cf59d9a2 --- /dev/null +++ b/document_page/i18n/es_DO.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-knowledge-9-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/es_EC.po b/document_page/i18n/es_EC.po new file mode 100644 index 00000000..7dddfae2 --- /dev/null +++ b/document_page/i18n/es_EC.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-knowledge-9-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/es_ES.po b/document_page/i18n/es_ES.po new file mode 100644 index 00000000..146dfb82 --- /dev/null +++ b/document_page/i18n/es_ES.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/es_MX.po b/document_page/i18n/es_MX.po index a11a4787..1962d52f 100644 --- a/document_page/i18n/es_MX.po +++ b/document_page/i18n/es_MX.po @@ -1,594 +1,357 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * wiki -# +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:30+0200\n" -"PO-Revision-Date: 2015-08-03 14:30+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: \n" -"Language: es_MX\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-05 05:38+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Pulse para crear una nueva página web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Autor" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorías" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 selection:document.page,type:0 +#: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categoría" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Hijos" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "Cerrar" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 selection:document.page,type:0 -#: field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Contenido" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crear menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creado en" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Fecha" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Fecha del último mensaje publicado en el registro." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Dif." +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferencia" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Historial del Documento" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Página de documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Historia de página de documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Seguidores" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historial" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" -"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " -"directamente en formato html para ser insertada en las vistas kanban." #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "Si está marcado nuevos mensajes requieren su atención." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "Es un seguidor" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Ultimo contenido" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último colaborador" +msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Fecha del ultimo mensaje" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menú" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Información del menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nombre menú" +msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Mensajes" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Mensajes e historial de comunicación" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nombre" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historial página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Historial de página" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipo de página" +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áginas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Historial de páginas" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú padre" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resumen" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Plantilla" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Plantilla que se utilizará como una plantilla de contenido para todas las " -"nuevas páginas de esta categoría." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "No hay cambios en las revisiones." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Título" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Mensajes no leídos" +msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Asistente crear menú" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -msgid "e.g. Once upon a time..." -msgstr "Por ejemplo, Érase una vez..." - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" msgstr "" -#~ msgid "Wiki Pages" -#~ msgstr "Páginas Wiki" - -#~ msgid "Display Method" -#~ msgstr "Método de visualización" - -#~ msgid "Open Page" -#~ msgstr "Abrir página" - -#~ msgid "Section" -#~ msgstr "Sección" - -#~ 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." - -#~ msgid "Wiki History" -#~ msgstr "Historial Wiki" - -#~ msgid "Minor edit" -#~ msgstr "Edición menor" - -#~ msgid "Parent Page" -#~ msgstr "Página padre" - -#~ msgid "Topic, also called Wiki Group" -#~ msgstr "Tema, también denominado Grupo wiki." - -#~ msgid "Wiki Group" -#~ msgstr "Grupo Wiki" - -#~ msgid "History Lines" -#~ msgstr "Líneas historial" - -#~ msgid "Warning !" -#~ msgstr "¡Aviso!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestión de documentos - Wiki" - -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgid "Needs Review" -#~ msgstr "Necesita revisión" - -#~ 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." - -#~ msgid "Tree" -#~ msgstr "Árbol" - -#~ msgid "Page Template" -#~ msgstr "Plantilla de página" - -#~ msgid "Keywords" -#~ msgstr "Palabras clave" - -#~ 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." - -#~ msgid "Warning" -#~ msgstr "Advertencia" - -#~ msgid "Want to create a Index on Selected Pages ? " -#~ msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#~ msgid "Group Description" -#~ msgstr "Descripción grupo" - -#~ 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" - -#~ msgid "Want to open a wiki page? " -#~ msgstr "¿Desea abrir una página wiki? " - -#~ msgid "Make Section ?" -#~ msgstr "¿Crear sección?" - -#~ msgid "Text area" -#~ msgstr "Área de texto" - -#~ msgid "Meta Information" -#~ msgstr "Meta informació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" -#~ " " - -#~ msgid "Notes" -#~ msgstr "Notas" - -#~ 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." - -#~ msgid "List" -#~ msgstr "Lista" - -#~ msgid "Created Date" -#~ msgstr "Fecha de creación" - -#~ msgid "All Page Histories" -#~ msgstr "Todos los historiales de páginas" - -#~ msgid "wiki.wiki" -#~ msgstr "wiki.wiki" - -#~ msgid "Define the default behaviour of the menu created on this group" -#~ msgstr "Define el comportamiento por defecto del menú creado en este grupo." - -#~ msgid "wizard.wiki.history.show_diff" -#~ msgstr "asistente.wiki.historial.mostrar_dif" - -#~ msgid "Wiki Id" -#~ msgstr "ID Wiki" - -#~ msgid "Home Page" -#~ msgstr "Página inicial" - -#~ 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." - -#~ msgid "Modification Information" -#~ msgstr "Información modificación" - -#~ msgid "Wiki" -#~ msgstr "Wiki" - -#~ msgid "Configuration" -#~ msgstr "Configuración" - -#~ msgid "Create Index" -#~ msgstr "Crear índice" - -#~ msgid "This is a major edit ?" -#~ msgstr "¿Es ésta una edición mayor?" - -#~ msgid "Wiki Groups" -#~ msgstr "Grupos Wiki" - -#~ msgid "Topic" -#~ msgstr "Tema" - -#~ msgid "Table of Contents" -#~ msgstr "Tabla de contenido" - -#~ msgid "Open Wiki Page" -#~ msgstr "Abrir página wiki" - -#~ msgid "wiz open page" -#~ msgstr "asistente abrir página" - -#~ msgid "Need Review" -#~ msgstr "Necesita revisión" - -#~ msgid "Pages Waiting Review" -#~ msgstr "Páginas esperando revisión" - -#~ 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 "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" - -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ 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." +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "o" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/es_PY.po b/document_page/i18n/es_PY.po new file mode 100644 index 00000000..bfb62097 --- /dev/null +++ b/document_page/i18n/es_PY.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-knowledge-9-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/es_VE.po b/document_page/i18n/es_VE.po index 4fb1d152..9fb65051 100644 --- a/document_page/i18n/es_VE.po +++ b/document_page/i18n/es_VE.po @@ -1,594 +1,357 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * wiki -# +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:31+0200\n" -"PO-Revision-Date: 2015-08-03 14:31+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: \n" -"Language: es_VE\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-05 05:38+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Pulse para crear una nueva página web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Autor" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorías" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 selection:document.page,type:0 +#: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categoría" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Hijos" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "Cerrar" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 selection:document.page,type:0 -#: field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Contenido" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crear menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Creado por" #. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creado en" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Fecha" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Fecha del último mensaje publicado en el registro." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Dif." +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferencia" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Historial del Documento" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Página de documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Historia de página de documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Seguidores" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Historial" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" -"Sostiene el resumen Chatter ( número de mensajes , ... ). Este resumen está " -"directamente en formato html para ser insertada en las vistas kanban." #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "Si está marcado nuevos mensajes requieren su atención." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "Es un seguidor" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Ultimo contenido" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último colaborador" +msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Fecha del ultimo mensaje" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menú" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Información del menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nombre menú" +msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Mensajes" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Mensajes e historial de comunicación" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Fecha de modificación" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nombre" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historial página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Historial de página" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipo de página" +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áginas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Historial de páginas" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú padre" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resumen" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Plantilla" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Plantilla que se utilizará como una plantilla de contenido para todas las " -"nuevas páginas de esta categoría." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "No hay cambios en las revisiones." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Título" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Mensajes no leídos" +msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Asistente crear menú" +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 "¡Necesita seleccionar mínimo una y máximo dos revisiones de historial!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "Por ejemplo, Érase una vez..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "" -#~ msgid "Wiki Pages" -#~ msgstr "Páginas Wiki" - -#~ msgid "Display Method" -#~ msgstr "Método de visualización" - -#~ msgid "Open Page" -#~ msgstr "Abrir página" - -#~ msgid "Section" -#~ msgstr "Sección" - -#~ 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." - -#~ msgid "Wiki History" -#~ msgstr "Historial Wiki" - -#~ msgid "Minor edit" -#~ msgstr "Edición menor" - -#~ msgid "Parent Page" -#~ msgstr "Página padre" - -#~ msgid "Topic, also called Wiki Group" -#~ msgstr "Tema, también denominado Grupo wiki." - -#~ msgid "Wiki Group" -#~ msgstr "Grupo Wiki" - -#~ msgid "History Lines" -#~ msgstr "Líneas historial" - -#~ msgid "Warning !" -#~ msgstr "¡Aviso!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestión de documentos - Wiki" - -#~ msgid "Description" -#~ msgstr "Descripción" - -#~ msgid "Needs Review" -#~ msgstr "Necesita revisión" - -#~ 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." - -#~ msgid "Tree" -#~ msgstr "Árbol" - -#~ msgid "Page Template" -#~ msgstr "Plantilla de página" - -#~ msgid "Keywords" -#~ msgstr "Palabras clave" - -#~ 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." - -#~ msgid "Warning" -#~ msgstr "Advertencia" - -#~ msgid "Want to create a Index on Selected Pages ? " -#~ msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " - -#~ msgid "Group Description" -#~ msgstr "Descripción grupo" - -#~ 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" - -#~ msgid "Want to open a wiki page? " -#~ msgstr "¿Desea abrir una página wiki? " - -#~ msgid "Make Section ?" -#~ msgstr "¿Crear sección?" - -#~ msgid "Text area" -#~ msgstr "Área de texto" - -#~ msgid "Meta Information" -#~ msgstr "Meta informació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" -#~ " " - -#~ msgid "Notes" -#~ msgstr "Notas" - -#~ 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." - -#~ msgid "List" -#~ msgstr "Lista" - -#~ msgid "Created Date" -#~ msgstr "Fecha de creación" - -#~ msgid "All Page Histories" -#~ msgstr "Todos los historiales de páginas" - -#~ msgid "wiki.wiki" -#~ msgstr "wiki.wiki" - -#~ msgid "Define the default behaviour of the menu created on this group" -#~ msgstr "Define el comportamiento por defecto del menú creado en este grupo." - -#~ msgid "wizard.wiki.history.show_diff" -#~ msgstr "asistente.wiki.historial.mostrar_dif" - -#~ msgid "Wiki Id" -#~ msgstr "ID Wiki" - -#~ msgid "Home Page" -#~ msgstr "Página inicial" - -#~ 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." - -#~ msgid "Modification Information" -#~ msgstr "Información modificación" - -#~ msgid "Wiki" -#~ msgstr "Wiki" - -#~ msgid "Configuration" -#~ msgstr "Configuración" - -#~ msgid "Create Index" -#~ msgstr "Crear índice" - -#~ msgid "This is a major edit ?" -#~ msgstr "¿Es ésta una edición mayor?" - -#~ msgid "Wiki Groups" -#~ msgstr "Grupos Wiki" - -#~ msgid "Topic" -#~ msgstr "Tema" - -#~ msgid "Table of Contents" -#~ msgstr "Tabla de contenido" - -#~ msgid "Open Wiki Page" -#~ msgstr "Abrir página wiki" - -#~ msgid "wiz open page" -#~ msgstr "asistente abrir página" - -#~ msgid "Need Review" -#~ msgstr "Necesita revisión" - -#~ msgid "Pages Waiting Review" -#~ msgstr "Páginas esperando revisión" - -#~ 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 "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" - -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ 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." +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/et.po b/document_page/i18n/et.po index 869d6098..5d4bfe34 100644 --- a/document_page/i18n/et.po +++ b/document_page/i18n/et.po @@ -1,262 +1,256 @@ -# Estonian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:31+0200\n" -"PO-Revision-Date: 2015-08-03 14:31+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Estonian \n" -"Language: et\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Loobu" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Sisu" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Loo menüü" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Loodud" +msgstr "" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Loodud" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Kuupäev" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Erinevus" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Sisu" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menüü" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Menüü info" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Menüü nimi" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Lehekülgi" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Muutmise kuupäev" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Lehekülgi" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Ülemmenüü" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Kokkuvõte" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Tiitel" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "või" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/eu.po b/document_page/i18n/eu.po new file mode 100644 index 00000000..6f1dafd1 --- /dev/null +++ b/document_page/i18n/eu.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-knowledge-9-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "edo" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/fa.po b/document_page/i18n/fa.po new file mode 100644 index 00000000..962538e4 --- /dev/null +++ b/document_page/i18n/fa.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "لغو" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "اسناد" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "شناسه" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/fi.po b/document_page/i18n/fi.po index 939c46c2..c65e0d6f 100644 --- a/document_page/i18n/fi.po +++ b/document_page/i18n/fi.po @@ -1,364 +1,357 @@ -# Finnish 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:31+0200\n" -"PO-Revision-Date: 2015-08-03 14:31+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Finnish \n" -"Language: fi\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Tekijä" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Peruuta" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Kategoriat" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Kategoria" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Sisältö" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Luo valikko" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Luotu" +msgstr "Luonut" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Luotu" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Päivämäärä" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Erot" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Ero" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Dokumentin historia" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Dokumentin sivu" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Dokumentin sivuhistoria" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Dokumenttityyppi" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Dokumentin sivu" +msgstr "Dokumentit" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Ryhmittely.." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Historia" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Sisältö" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Viimeisin tiedon lisääjä" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Viimeksi päivittänyt" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Valikko" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Valikon tiedot" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Valikon nimi" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Sivut" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Muokkauspäivä" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Muuttaja" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nimi" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Sivu" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Sivuhistoria" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Sivuhistoria" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Sivun tyyppi" +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 "Sivut" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Sivujen historia" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Ylätason valikko" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Yhteenveto" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Malli" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." -msgstr "käytetään sisältömallina kaikille tämän kategorian uusille sivuille." +msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Otsikko" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tyyppi" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Menun luonti velho" +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 "Valitse tasan yksi tai kaksi historiaversiota vertailuun." - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "esim. Olipa kerran..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "tai" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Näytetty sisältö" - -#~ msgid "Warning!" -#~ msgstr "Varoitus!" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/fr.po b/document_page/i18n/fr.po index 4c80345b..72399ae3 100644 --- a/document_page/i18n/fr.po +++ b/document_page/i18n/fr.po @@ -1,267 +1,257 @@ -# French 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +# Fabien Bourgeois , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:31+0200\n" -"PO-Revision-Date: 2015-08-03 14:31+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: French \n" -"Language: fr\n" +"POT-Creation-Date: 2018-04-28 03:58+0000\n" +"PO-Revision-Date: 2018-04-28 03:58+0000\n" +"Last-Translator: Fabien Bourgeois , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -"Cliquez pour créer une nouvelle page Web.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "Auteur" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Annuler" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "Catégories" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "Catégorie" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "Modifications" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "Enfant" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff -msgid "Close" -msgstr "" +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Cliquer pour créer une nouvelle page Web" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Fermer" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "Contenu" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "Créer un menu" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Créé le" +msgstr "Créé par" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Créé le" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Date" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "Décrivez les modifications réalisées" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Comparer" +msgstr "Diff" #. 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "Différence" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Contenu affiché" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "Historique du document" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" -msgstr "Gestion documentaire de pages Web" +msgstr "Page" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" -msgstr "Historique du document" +msgstr "Historique de la page" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Type de document" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Gestion documentaire de pages Web" +msgstr "Documents" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "Contributeur" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Grouper par ..." +msgstr "Grouper par..." #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "EN-TETE" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "Historique" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" -msgstr "" +msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "Dernière date de contribution" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Contenu" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "Dernier contributeur" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Dernière mise à jour le" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Dernière modification par" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" -msgstr "" +msgstr "Dernière mise à jour le" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "Gestionnaire" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Menu Information" +msgstr "Information du menu" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "Nom du menu" #. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Pages" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Date de modification" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modifié par" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "Nom" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "Page" @@ -276,7 +266,7 @@ msgid "Page history" msgstr "Historique de la page" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "Type de page" @@ -293,82 +283,78 @@ msgid "Pages history" msgstr "Historique des pages" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menu Parent" +msgstr "Menu parent" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Sélectionnez une révision ou deux maximum!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Sommaire" +msgstr "Résumé" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "Modèle" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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." +"Modèle qui sera utilisé comme contenu pour toutes les nouvelles pages de " +"cette catégorie." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Il n'y a aucun changement dans les révisions." +msgstr "Il n'y a pas de différence entre ces révisions." #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "Titre" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "Type" -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "" - #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Menu de création d'un wizard" +msgstr "Assistant de création de menu" #. 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 -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "Ex: Il était une fois..." +msgstr "Il était une fois..." #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "Modifié... pour..." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "ou" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Contenu affiché" - -#~ msgid "Warning!" -#~ msgstr "Avertissement!" - -#~ msgid "Create web pages" -#~ msgstr "Créer des pages Web" +#. 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" diff --git a/document_page/i18n/fr_CA.po b/document_page/i18n/fr_CA.po new file mode 100644 index 00000000..c33a4db7 --- /dev/null +++ b/document_page/i18n/fr_CA.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Annuler" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "Identifiant" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "ou" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/gl.po b/document_page/i18n/gl.po index 2304f9a1..619d3b3b 100644 --- a/document_page/i18n/gl.po +++ b/document_page/i18n/gl.po @@ -1,262 +1,256 @@ -# Galician 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:31+0200\n" -"PO-Revision-Date: 2015-08-03 14:31+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Galician \n" -"Language: gl\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Contido" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crear menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Creado o" +msgstr "Creado por" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creado o" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Diff" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Documentos" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Contido" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "ültima actualización por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menú" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Información do menú" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nome do menú" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Páxinas" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de modificación" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Páxinas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menú principal" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resumo" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Título" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "ou" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/gu.po b/document_page/i18n/gu.po new file mode 100644 index 00000000..f533580f --- /dev/null +++ b/document_page/i18n/gu.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:04+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Gujarati (http://www.transifex.com/oca/OCA-knowledge-9-0/language/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "રદ કરો" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "દસ્તાવેજો" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ઓળખ" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/he.po b/document_page/i18n/he.po new file mode 100644 index 00000000..fd92548d --- /dev/null +++ b/document_page/i18n/he.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "בטל" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "מסמכים" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "מזהה" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/hi.po b/document_page/i18n/hi.po new file mode 100644 index 00000000..e161cff5 --- /dev/null +++ b/document_page/i18n/hi.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-knowledge-9-0/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "रद्द" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/hr.po b/document_page/i18n/hr.po index 46da3ea1..5fed17d0 100644 --- a/document_page/i18n/hr.po +++ b/document_page/i18n/hr.po @@ -1,263 +1,257 @@ -# Croatian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +# Bole , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:32+0200\n" -"PO-Revision-Date: 2015-08-03 14:32+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Croatian \n" -"Language: hr\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "Autor" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Odustani" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "Kategorije" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "Kategorija" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "Podređeni" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff -msgid "Close" -msgstr "" +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Kliknite za stvaranje nove webstranice" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Zatvori" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "Sadržaj" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "Kreiraj izbornik" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Datum kreiranja" +msgstr "Kreirao" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" -msgstr "Datum kreiranja" +msgstr "Vrijeme kreiranja" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" msgstr "Razlika" #. 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "Razlika" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree -msgid "Document History" -msgstr "Povijest dokumenata" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Naziv za prikaz" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Prikazani sadržaj" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Povijest dokumenta" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Stranica dokumenata" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Povijest stranica Dokumenata" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Vrsta dokumenta" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Stranica dokumenata" +msgstr "Dokumenti" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Grupiraj po..." +msgstr "Grupiraj po ..." #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "Povijest" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Sadržaj" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "Zadnji doprinos" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Promijenio" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "Izbornik" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Informacije o izborniku" +msgstr "Informacija izbornika" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "Naziv izbornika" #. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Stranice" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum promjene" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Izmjenio" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "Naziv" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "Stranica" @@ -269,10 +263,10 @@ msgstr "Povijest stranice" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Povijest stranica" +msgstr "Povijest stranice" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "Tip stranice" @@ -286,81 +280,81 @@ msgstr "Stranice" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Povijest stranice" +msgstr "Povijest stranica" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" msgstr "Nadređeni izbornik" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Odaberite jednu do max. dvije revizije!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "Sažetak" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "Predložak" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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." +"Predložak kti korišten koji će biti korišten kao predložak sadržaja za sve " +"nove stranice u ovoj kategoriji." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Nema izmjena u revizijama" +msgstr "Nema izmjena u ovoj reviziji" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "Naslov" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "Tip" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "Čarobnjak za kreiranje izbornika" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "npr. Jednom davno..." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." msgstr "" #. 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 -#: 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 -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -msgid "e.g. Once upon a time..." -msgstr "npr. Bilo jednom..." - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "ili" -#~ msgid "Displayed Content" -#~ msgstr "Prikazani sadržaj" - -#~ msgid "Warning!" -#~ msgstr "Upozorenje!" - -#~ msgid "Create web pages" -#~ msgstr "Kreiraj web stranice" +#. 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" diff --git a/document_page/i18n/hu.po b/document_page/i18n/hu.po index 81c3b251..81ae7752 100644 --- a/document_page/i18n/hu.po +++ b/document_page/i18n/hu.po @@ -1,372 +1,357 @@ -# Hungarian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:32+0200\n" -"PO-Revision-Date: 2015-08-03 14:32+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Hungarian \n" -"Language: hu\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -" Kattintson új weboldal létrehozásához.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Szerző" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Mégsem" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Kategóriák" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Kategória" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Alárendelt" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Tartalom" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Menü létrehozás" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Létrehozás dátuma" +msgstr "Készítette" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Létrehozás dátuma" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dátum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Különbség" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Különbség" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Dokumentumok előzménye" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Documentum oldal" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Dokumantum oldal előzmény" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Dokumentumtípus" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Documentum oldal" +msgstr "Dokumentumok" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Csoportosítás..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Előzmény" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "Azonosító ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Tartalom" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Utolsó közreműködő" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Utoljára frissítve, által" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Utoljára frissítve ekkor" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menü" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Menü infrormáció" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menü" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Oldalok" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Módosítás dátuma" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Által módosítva" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Név" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Oldal" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Oldal előzmény" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Oldal előzmény" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Oldal típus" +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 "Oldalok" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Oldal előzmény" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Főmenü" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Összegzés" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Sablon" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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 -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Az előzményekben nem történt változtatás." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Pozíció" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Típus" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Menü létrehozás varázsló" +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 "Ki kell választani minimum egy vagy maximum kettő átvizsgálás előzményt." - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "pl. Egyszer volt..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "vagy" -#~ msgid "Displayed Content" -#~ msgstr "Megjelenített tartalom" - -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Warning!" -#~ msgstr "Figyelem!" - -#~ msgid "Create web pages" -#~ msgstr "Weboldalak létrehozása" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/hy.po b/document_page/i18n/hy.po new file mode 100644 index 00000000..1e84b50f --- /dev/null +++ b/document_page/i18n/hy.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Armenian (http://www.transifex.com/oca/OCA-knowledge-9-0/language/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Հրաժարվել" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/id.po b/document_page/i18n/id.po index 2cd8a825..0e5a346f 100644 --- a/document_page/i18n/id.po +++ b/document_page/i18n/id.po @@ -1,259 +1,256 @@ -# Indonesian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:32+0200\n" -"PO-Revision-Date: 2015-08-03 14:32+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Indonesian \n" -"Language: id\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "" +msgstr "Batalkan" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "" +msgstr "Dibuat oleh" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" +msgstr "Dibuat pada" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Diperbaharui oleh" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -268,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -285,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "" -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "" - #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "atau" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/is.po b/document_page/i18n/is.po new file mode 100644 index 00000000..3e378586 --- /dev/null +++ b/document_page/i18n/is.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/oca/teams/23907/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Búið til af" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "Auðkenni" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/it.po b/document_page/i18n/it.po index 8ceecc4e..36e2e192 100644 --- a/document_page/i18n/it.po +++ b/document_page/i18n/it.po @@ -1,284 +1,274 @@ -# Italian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +# Marco Calcagni , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-02 08:07+0200\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Italian \n" -"Language: it\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: Marco Calcagni , 2018\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -" Crea una nuova pagina.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "Autore" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "Cancella" +msgstr "Annulla" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "Categorie" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "Categoria" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "Figlio" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Click per creare una nuova pagina web" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "Chiudi" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "Contenuto" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Crea Menu" +msgstr "Creare Menu" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Creato da" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Creato il" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Data pubblicazione ultimo messaggio sul record." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Differenze" +msgstr "Differenza" #. 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "Differenze" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree -msgid "Document History" -msgstr "Cronologia documento" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Mostra Contenuto" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Cronologia del documento" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Pagina documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Cronologia Pagina Documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo Documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Documenti" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Seguaci" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Raggruppa per..." +msgstr "Group By..." #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "Cronologia" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" -"Sommario dei messaggi (numero messaggi, ...). Questo sommario è direttamente in " -"formato html per poter essere inserito nelle viste kanban." - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" -"Quando segnato significa, che ci sono dei nuovi messaggi a richiedere la vostra " -"attenzione." #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "È un seguace" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Ultimo contenuto" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Ultimo collaboratore" +msgstr "Ultimo Contributore" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Data ultimo messaggio" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "Ultimo aggiornamento da" +msgstr "Ultima modifica di" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" -msgstr "Ultimo aggiornamento il" +msgstr "Ultima modifica il" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Informazioni Menu" +msgstr "Menu informativo" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "Nome Menu" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Messaggi" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Messaggi e cronologia communicazioni" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data di Modifica" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificato Da" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "Nome" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "Pagina" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Cronologia pagina" +msgstr "Cronologia della pagina" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Cronologia pagina" +msgstr "Cronologia della pagina" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipo di pagina" +msgstr "Tipo pagina" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_page @@ -290,84 +280,83 @@ msgstr "Pagine" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Cronologia pagine" +msgstr "Cronologia delle pagine" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menu Superiore" +msgstr "Menu genitore" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" +"E' necessario selezionare almeno una o massimo due revisioni della " +"cronologia!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "Riepilogo" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "Modello" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Bozza, che verrà usata come modello del contenuto per tutte le nuove pagine di " -"questa categoria." +"Bozza, che verrà usata come modello del contenuto per tutte le nuove pagine " +"di questa categoria." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Non ci sono modifiche nelle revisioni." +msgstr "Non ci sono cambiamenti nelle revisioni" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "Titolo" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Messaggi non letti" +msgstr "Type" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Wizard creazione menu" +msgstr "Wizard Crea Menu" #. 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 -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "esempio: c'era una volta..." +msgstr "Esempio C'era una volta" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "o" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Contenuto Visualizzato" - -#~ msgid "Warning!" -#~ msgstr "Attenzione!" - -#~ msgid "Create web pages" -#~ msgstr "Crea pagine web" +#. 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" diff --git a/document_page/i18n/ja.po b/document_page/i18n/ja.po index 30e8c3d2..2da0d10c 100644 --- a/document_page/i18n/ja.po +++ b/document_page/i18n/ja.po @@ -1,269 +1,263 @@ -# 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:32+0200\n" -"PO-Revision-Date: 2015-08-03 14:32+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Japanese \n" -"Language: ja\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "著者" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "キャンセル" +msgstr "取消" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "コンテンツ" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "メニューの作成" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "作成日" +msgstr "作成者" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "作成日" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日付" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "差分" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "差分" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "文書" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "グループ化…" +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "コンテンツ" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "最終貢献者" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "最終更新者" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "最終更新日" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "メニュー" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "メニュー情報" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "メニュー名" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "ページ" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "変更日" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "ページ履歴" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "ページ" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "親メニュー" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "要約" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "タイトル" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "メニュー作成ウィザード" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/ka.po b/document_page/i18n/ka.po new file mode 100644 index 00000000..e778fd24 --- /dev/null +++ b/document_page/i18n/ka.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:05+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Georgian (http://www.transifex.com/oca/OCA-knowledge-9-0/language/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "შეწყვეტა" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "იდენტიფიკატორი" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/kab.po b/document_page/i18n/kab.po new file mode 100644 index 00000000..c406e13d --- /dev/null +++ b/document_page/i18n/kab.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Kabyle (https://www.transifex.com/oca/teams/23907/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Sefsex" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Yerna-t" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Yerna di" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Arraten" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "Asulay" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Aleqqem aneggaru sɣuṛ" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Aleqqem aneggaru di" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "neɣ" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/kk.po b/document_page/i18n/kk.po new file mode 100644 index 00000000..18e19f8f --- /dev/null +++ b/document_page/i18n/kk.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:05+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Kazakh (http://www.transifex.com/oca/OCA-knowledge-9-0/language/kk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kk\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Бас тарту" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/ko.po b/document_page/i18n/ko.po index e4e6ab0a..abdf7f98 100644 --- a/document_page/i18n/ko.po +++ b/document_page/i18n/ko.po @@ -1,262 +1,256 @@ -# Korean 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:33+0200\n" -"PO-Revision-Date: 2015-08-03 14:33+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Korean \n" -"Language: ko\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "저자" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "취소" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "컨텐트" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "메뉴 만들기" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "생성 날짜" - -#. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "생성 날짜" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "날짜" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff: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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "작성일" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Diff" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "문서" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "컨텐트" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "최근 갱신한 사람" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "메뉴" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "메뉴 정보" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "메뉴 이름" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "페이지" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "수정 날짜" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "페이지" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "부모 메뉴" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "요약" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "제목" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/ln.po b/document_page/i18n/ln.po new file mode 100644 index 00000000..f3703bb5 --- /dev/null +++ b/document_page/i18n/ln.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:04+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lingala (http://www.transifex.com/oca/OCA-knowledge-9-0/language/ln/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ln\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Tika" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/lo.po b/document_page/i18n/lo.po new file mode 100644 index 00000000..739cd413 --- /dev/null +++ b/document_page/i18n/lo.po @@ -0,0 +1,410 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-09 18:03+0000\n" +"PO-Revision-Date: 2015-12-09 18:03+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lao (http://www.transifex.com/oca/OCA-knowledge-9-0/language/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_ids +msgid "Messages and communication history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/lt.po b/document_page/i18n/lt.po index bd8006c7..784648ec 100644 --- a/document_page/i18n/lt.po +++ b/document_page/i18n/lt.po @@ -1,262 +1,256 @@ -# Lithuanian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:33+0200\n" -"PO-Revision-Date: 2015-08-03 14:33+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Lithuanian \n" -"Language: lt\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autorius" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Atšaukti" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Turinys" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Sukurti meniu" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Sukurta" +msgstr "Sukūrė" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Sukurta" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Skirtumas" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Turinys" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Paskutini kartą atnaujino" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meniu" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Meniu informacija" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Meniu pavadinimas" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Puslapiai" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Modifikavimo data" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Puslapiai" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Bazinis meniu" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Santrauka" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Antraštė" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "arba" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/lv.po b/document_page/i18n/lv.po index e949b9ae..06756fa3 100644 --- a/document_page/i18n/lv.po +++ b/document_page/i18n/lv.po @@ -1,269 +1,263 @@ -# Latvian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:33+0200\n" -"PO-Revision-Date: 2015-08-03 14:33+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Latvian \n" -"Language: lv\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autors" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Atcelt" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Saturs" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Izveidot Izvēlni" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Izveidots" +msgstr "Izveidoja" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Izveidots" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datums" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Atšķirības" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Atšķirības" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenti" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Grupēt pēc..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Saturs" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Pēdējais Papildinājs" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Pēdējo reizi atjaunoja" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Izvēlne" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Izvēlnes Informācija" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Izvēlnes Nosaukums" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Lapas" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Izmaiņu Datums" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Lapas Vēsture" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Lapas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "VirsIzvēlne" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Kopsavilkums" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Virsraksts" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. 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 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "vai" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/mk.po b/document_page/i18n/mk.po index f8d2044c..8c474538 100644 --- a/document_page/i18n/mk.po +++ b/document_page/i18n/mk.po @@ -1,369 +1,357 @@ -# 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 , 2013. -# Sofce Dimitrijeva , 2013. +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:33+0200\n" -"PO-Revision-Date: 2015-08-03 14:33+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: ESKON-INZENERING\n" -"Language: mk\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Откажи" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Категории" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Категорија" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Деца" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Содржина" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Креирај Мени" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Креирано на" +msgstr "Креирано од" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Креирано на" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Датум" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Разлика" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Разлика" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Историја на документот" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Страница на документ" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Историја на страница на документ" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Тип документ" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Страница на документ" +msgstr "Документи" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Групирај по..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Историја" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Содржина" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Последен соработник" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Последно ажурирање од" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Мени" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Мени Информации" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Име на мени" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Страници" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Датум на измена" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Изменето од" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Име" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Страница" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Историја на страница" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Историја на страница" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Тип на страница" +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 "Страници" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Историја на страници" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Мени родител" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Резиме" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Урнек" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"кој ќе биде употребен како урнек за содржина за сите нови страници од оваа " -"категорија." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Нема измени во ревизиите." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Титула" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tип" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Мени Креирање на Волшебник" +msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Треба да селектиарте минимум една или максимум две ревизии на историја!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "на пр. Едно време..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "или" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Прикажана содржина" - -#~ msgid "Warning!" -#~ msgstr "Предупредување!" - -#~ msgid "Create web pages" -#~ 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 "" diff --git a/document_page/i18n/mn.po b/document_page/i18n/mn.po index 4b888fec..9313cd98 100644 --- a/document_page/i18n/mn.po +++ b/document_page/i18n/mn.po @@ -1,357 +1,357 @@ -# Mongolian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:34+0200\n" -"PO-Revision-Date: 2015-08-03 14:34+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Mongolian \n" -"Language: mn\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-01-12 05:48+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Зохиогч" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Цуцлах" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Ангилалууд" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Ангилал" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Агуулга" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Цэс үүсгэх" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "Үүсгэсэн" - -#. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "Үүсгэсэн" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Огноо" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff: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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Зөрүү" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Зөрүү" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Баримтын Түүх" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Баримтын Хуудас" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Баримтын Хуудасны Түүх" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Баримтын Хуудас" +msgstr "Баримтууд" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Бүлэглэх..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Агуулга" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Сүүлийн Хувь Нэмэр оруулагч" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Сүүлийн засвар хийсэн" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Цэс" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Цэсний мэдээлэл" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Цэсний нэр" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Хуудсууд" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Зассан огноо" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Нэр" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Хуудасны Түүх" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Хуудсын Түүх" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Хуудасны төрөл" +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 "Хуудсууд" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Хуудсуудын Түүх" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Толгой цэс" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Хураангуй" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Загвар" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Гарчиг" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Төрөл" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Меню үүсгэх харилцах цонх" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "эсвэл" -#~ msgid "Create web pages" -#~ 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 "" diff --git a/document_page/i18n/nb.po b/document_page/i18n/nb.po index 5bc031d4..2581ea41 100644 --- a/document_page/i18n/nb.po +++ b/document_page/i18n/nb.po @@ -1,269 +1,263 @@ -# Norwegian Bokmal 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:34+0200\n" -"PO-Revision-Date: 2015-08-03 14:34+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Norwegian Bokmal \n" -"Language: nb\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Forfatter" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Avbryt" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Innhold" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Opprett meny" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "Opprettet den" - -#. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "Opprettet den" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dato" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff: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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Diff" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Endringer" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenter" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Grupper etter..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Innhold" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Siste forfatter" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Sist oppdatert av" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meny" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Meny informasjon" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Menynavn" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Sider" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Dato for siste endring" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Sidehistorikk" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Sider" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Overordnet meny" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Sammendrag" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Tittel" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. 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 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "eller" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/nl.po b/document_page/i18n/nl.po index 147c1589..9591e325 100644 --- a/document_page/i18n/nl.po +++ b/document_page/i18n/nl.po @@ -1,373 +1,358 @@ -# Dutch 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +# Michel V. , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:34+0200\n" -"PO-Revision-Date: 2015-08-03 14:34+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Dutch \n" -"Language: nl\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: Michel V. , 2018\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -" Klik voor het aanmaken van een web pagina.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Auteur" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Annuleren" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorieën" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categorie" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Onderliggende" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Inhoud" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Menu maken" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Aangemaakt op" +msgstr "Aangemaakt door" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Aangemaakt op" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Verschil" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Verschil" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Toon naam" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Documenthistorie" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Document pagina" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Document pagina historie" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Documenttype" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Document pagina" +msgstr "Documenten" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Groepeer op..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Historie" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Inhoud" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Laatste bijdrage" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Laatste bijgewerkt door" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Menu informatie" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Naam menu" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Pagina's" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Wijzigingsdatum" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Aangepast door" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Naam" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Pagina" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Pagina geschiedenis" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Pagina historie" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Paginatype" +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 "Pagina's" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Pagina historie" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Hoofdmenu" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Samenvatting" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Sjabloon" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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 -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Er zijn geen wijzigingen in de revisies." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Titel" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Soort" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Assistent menu maken" +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 "U dient minimaal één en maximaal twee historie revisies te selecteren.!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "bijv. Op enig moment..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "of" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Weergegeven inhoud" - -#~ msgid "Warning!" -#~ msgstr "Waarschuwing!" - -#~ msgid "Create web pages" -#~ msgstr "Webpagina's aanmaken" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/nl_BE.po b/document_page/i18n/nl_BE.po index fb57468a..be5a0bd1 100644 --- a/document_page/i18n/nl_BE.po +++ b/document_page/i18n/nl_BE.po @@ -1,401 +1,357 @@ -# Translation of OpenERP Server. +# Translation of Odoo Server. # This file contains the translation of the following modules: -# * wiki -# +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:34+0200\n" -"PO-Revision-Date: 2015-08-03 14:34+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: \n" -"Language: nl_BE\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Afbreken" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page -#, fuzzy -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +msgid "Click to create a new web page." msgstr "" -"

    \n" -" Klik voor het aanmaken van een web pagina.\n" -"

    \n" -" " #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -#, fuzzy -msgid "Author" -msgstr "Auteur" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#, fuzzy -msgid "Cancel" -msgstr "Annuleren" - -#. module: document_page -#: view:document.page:document_page.view_category_tree -#: model:ir.ui.menu,name:document_page.menu_category -#, fuzzy -msgid "Categories" -msgstr "Categorieën" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -#, fuzzy -msgid "Category" -msgstr "Categorie" - -#. module: document_page -#: field:document.page,child_ids:0 -#, fuzzy -msgid "Children" -msgstr "Onderliggende" - -#. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 selection:document.page,type:0 -#: field:document.page.history,content:0 -#, fuzzy +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Inhoud" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -#, fuzzy -msgid "Create Menu" -msgstr "Menu maken" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "Aangemaakt op" - -#. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -#, fuzzy -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: document_page -#: field:document.page.history,create_date:0 -#, fuzzy -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -#, fuzzy +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Verschil" +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:document_page.view_wiki_show_diff -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Verschil" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Documenthistorie" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" -msgstr "Document pagina" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" -msgstr "Document pagina historie" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#, fuzzy -msgid "Document Type" -msgstr "Documenttype" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Groepeer op..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Historie" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is " -"directly in html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Laatste bijdrage" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menu" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Menu informatie" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Naam menu" - -#. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" msgstr "" #. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -#, fuzzy -msgid "Modification Date" -msgstr "Wijzigingsdatum" - -#. module: document_page -#: field:document.page.history,create_uid:0 -#, fuzzy -msgid "Modified By" -msgstr "Aangepast door" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Naam" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Pagina" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history -#, fuzzy msgid "Page History" -msgstr "Pagina geschiedenis" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history -#, fuzzy msgid "Page history" -msgstr "Pagina historie" +msgstr "" #. module: document_page -#: help:document.page,type:0 -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Paginatype" +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 -#, fuzzy msgid "Pages" -msgstr "Pagina's" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history -#, fuzzy msgid "Pages history" -msgstr "Pagina historie" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Hoofdmenu" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 -#, fuzzy +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Samenvatting" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Sjabloon" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 -#, fuzzy, python-format +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format msgid "There are no changes in revisions." -msgstr "Er zijn geen wijzigingen in de revisies." +msgstr "" #. module: document_page -#: field:document.page,name:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Titel" +msgstr "" #. module: document_page -#: field:document.page,type:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Soort" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu -#, fuzzy msgid "Wizard Create Menu" -msgstr "Assistent menu maken" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, fuzzy, 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 -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "bijv. Op enig moment..." - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" 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 !" +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "of" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/nl_NL.po b/document_page/i18n/nl_NL.po new file mode 100644 index 00000000..aff3f89d --- /dev/null +++ b/document_page/i18n/nl_NL.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# Peter Hageman , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: Peter Hageman , 2018\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "Auteur" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Annuleer" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "Categorieën " + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "Categorie" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "Kinderen" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Klik om een nieuwe webpagina aan te maken." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Sluiten" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "Inhoud" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "Maak menu aan" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +msgstr "Verschil" + +#. 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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Verschil" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Getoonde Inhoud" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Documenthistorie" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "Documentpagina" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "Documentpagina-historie" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Documenten" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "Groepeer Op..." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "Historie" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "Laatste bijdrager" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Laatst aangepast op" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menu-informatie" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "Menunaam" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Naam" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "Pagina" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Pagina-historie" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Pagina-historie" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "Paginatype" + +#. 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_page_history +msgid "Pages history" +msgstr "Paginahistorie" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "Oudermenu" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Selecteer een of maximaal twee historie-revisies!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "Samenvatting" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "Sjabloon" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "Er zijn geen wijzigingen in revisies." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "Titel" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "Type" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "b.v. Er was eens..." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "of" + +#. 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" diff --git a/document_page/i18n/pl.po b/document_page/i18n/pl.po index 371a3768..335fbe1d 100644 --- a/document_page/i18n/pl.po +++ b/document_page/i18n/pl.po @@ -1,336 +1,331 @@ -# Polish 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:34+0200\n" -"PO-Revision-Date: 2015-08-03 14:34+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Polish \n" -"Language: pl\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Anuluj" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Kategorie" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Kategoria" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Podrzędne" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Zawartość" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Utwórz menu" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "Utworzono" - -#. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "Utworzono" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff: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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Data utworzenia" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Różnice" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Różnica" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Historia Dokumentu" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Strona dokumentu" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Historia strony dokumentu" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Typ dokumentu" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Strona dokumentu" +msgstr "Dokumenty" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Grupuj wg..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Historia" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Zawartość" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Ostatni kontrybutor" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Ostatnio modyfikowane przez" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Data ostatniej modyfikacji" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Informacja o menu" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nazwa menu" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Strony" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data modyfikacji" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Zmodyfikowane przez" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Strona" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Historia strony" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Historia strony" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Typ strony" +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 "Strony" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Historia strony" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menu nadrzędne" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Podsumowanie" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Szablon" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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 -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Brak zmian w wersjach" +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Tytuł" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Typ" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page @@ -339,27 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Musisz wybrać minimum jedną a maksymalnie dwie wersje historii !" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "lub" -#~ msgid "Displayed Content" -#~ msgstr "Wyświetlana zawartość" - -#~ msgid "Warning!" -#~ msgstr "Ostrzeżenie !" - -#~ msgid "Create web pages" -#~ msgstr "Twórz strony web" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/pt.po b/document_page/i18n/pt.po index 1fd76af6..c7c8d2af 100644 --- a/document_page/i18n/pt.po +++ b/document_page/i18n/pt.po @@ -1,278 +1,272 @@ -# Portuguese 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# Pedro Castro Silva , 2018 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:34+0200\n" -"PO-Revision-Date: 2015-08-03 14:34+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Portuguese \n" -"Language: pt\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" msgstr "Autor" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "Categorias" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "Categoria" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "" +msgstr "Descendentes" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Clique para criar uma nova página web." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "" +msgstr "Fechar" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" msgstr "Conteúdo" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "Criar Menu" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Criado em" +msgstr "Criado por" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Criado em" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Diferenças" +msgstr "Diff" #. 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "Diferença" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Nome a Exibir" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Conteúdo Exibido" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Histórico de documentos" +msgstr "Histórico do Documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" -msgstr "Página do documento" +msgstr "Página do Documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" -msgstr "" +msgstr "Histórico da Página do Documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Página do documento" +msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Agrupar por..." +msgstr "Agrupar Por..." #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "Histórico" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Conteúdo" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último contribuinte" +msgstr "Último Contribuinte" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Última Modificação em" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Última Actualização por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Última Actualização em" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" msgstr "Menu" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" msgstr "Informação do Menu" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" msgstr "Nome do Menu" #. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Páginas" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de Modificação" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado por" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "" +msgstr "Nome" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "Página" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Histórico da página" +msgstr "Histórico da Página" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "" +msgstr "Histórico da página" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "Tipo de página" @@ -286,79 +280,81 @@ msgstr "Páginas" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "" +msgstr "Histórico das páginas" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menu do Ascendente" +msgstr "Menu Ascendente" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Selecione uma ou, no máximo, duas revisões do histórico!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "Resumo" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "Modelo" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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" +msgstr "" +"O modelo que será usado como modelo de contéudo para todas as novas páginas " +"desta categoria." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Não há alterações de versão" +msgstr "Não há alterações nas revisões." #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" msgstr "Título" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" msgstr "Tipo" -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "" - #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Assitente de criação de menu" +msgstr "Assistente de Criação de Menus" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." +msgstr "p. ex. Era uma vez..." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "ou" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Warning!" -#~ msgstr "Aviso!" - -#~ msgid "Create web pages" -#~ msgstr "Cria páginas na internet" +#. 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" diff --git a/document_page/i18n/pt_BR.po b/document_page/i18n/pt_BR.po index d0adbc24..8d64060e 100644 --- a/document_page/i18n/pt_BR.po +++ b/document_page/i18n/pt_BR.po @@ -1,373 +1,357 @@ -# Brazilian Portuguese 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:35+0200\n" -"PO-Revision-Date: 2015-08-03 14:35+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -" Clique para criar uma nova página web.\n" -" \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Autor" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Cancelar" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorias" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categoria" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Filhos" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Conteúdo" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Criar Menu" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Criado em" +msgstr "Criado por" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Criado em" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Data" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Diferença" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferença" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Histórico de Documentos" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Página do Documento" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Histórico da Página de Documento" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipo de Documento" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Página do Documento" +msgstr "Documentos" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Agrupar Por..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Histórico" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Conteúdo" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Último Contribuidor(a)" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Última atualização por" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Informação do Menu" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nome do Menu" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Páginas" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data de Modificação" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificado Por" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nome" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Histórico da Página" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Histórico da página" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipo de página" +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áginas" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Histórico das páginas" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Menu Superior" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Resumo" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Modelo" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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 -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Não há mudanças nas revisões." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Título" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tipo" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Assistente Para Criar Menu" +msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Você deve selecionar de uma a duas revisões de histórico!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "ex. Era uma vez...." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "ou" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Conteúdo Exibido" - -#~ msgid "Warning!" -#~ msgstr "Atenção!" - -#~ msgid "Create web pages" -#~ msgstr "Criar páginas web" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/pt_PT.po b/document_page/i18n/pt_PT.po new file mode 100644 index 00000000..fffd5746 --- /dev/null +++ b/document_page/i18n/pt_PT.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancelar" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "Histórico da Página do Documento" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/ro.po b/document_page/i18n/ro.po index 6bf3c12b..f6ec5dbb 100644 --- a/document_page/i18n/ro.po +++ b/document_page/i18n/ro.po @@ -1,369 +1,357 @@ -# Romanian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:35+0200\n" -"PO-Revision-Date: 2015-08-03 14:35+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Romanian \n" -"Language: ro\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Anulează" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Categorii" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Categorie" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Subordonati" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Conţinut" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "Creează meniu" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "Creat in" - -#. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "Creat in" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dată" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff: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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Diferit" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Diferenţă" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Istoric Documente" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Pagina Documentului" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Istoric Pagini Documente" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tipul documentului" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Pagina Documentului" +msgstr "Documente" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Grupează după..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Istoric" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Conţinut" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Ultimul colaborator" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualizare făcută de" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meniu" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Informaţii meniu" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Nume Meniu" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Pagini" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Data modificării" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Modificat de" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Nume" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Pagina" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Istoric pagină" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Istoric pagina" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tipul de pagina" +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 "Pagini" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Istoric pagini" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Meniu principal (părinte)" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Rezumat" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Sablon" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template 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 -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Nu exista modificari in revizuiri." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Titlu" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tip" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Wizard Creează meniul" +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 "Trebuie sa selectati minim unul sau maxim doua istorice ale revizuirilor!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "de exemplu A fost odata..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "sau" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.pagina.istoric.arata_dif" - -#~ msgid "Displayed Content" -#~ msgstr "Continut Afisat" - -#~ msgid "Warning!" -#~ msgstr "Avertizare!" - -#~ msgid "Create web pages" -#~ msgstr "Creeaza pagini web" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/ru.po b/document_page/i18n/ru.po index 84bc09b3..6f7f5209 100644 --- a/document_page/i18n/ru.po +++ b/document_page/i18n/ru.po @@ -1,373 +1,357 @@ -# Russian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:35+0200\n" -"PO-Revision-Date: 2015-08-03 14:35+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Russian \n" -"Language: ru\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Отменить" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +msgid "Click to create a new web page." msgstr "" -"

    \n" -" Нажмите, чтобы создать новую веб-страницу.\n" -"

    \n" -" " #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Cancel" -msgstr "Отмена" - -#. module: document_page -#: view:document.page:document_page.view_category_tree -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Категории" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "Категория" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Потомки" - -#. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Содержание" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Создать меню" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Создан" +msgstr "Создано" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Создан" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Различие" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Различие" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "История документа" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Страница документа" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "История страницы документа" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Тип документа" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Страница документа" +msgstr "Документы" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Группировать по .." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "История" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Содержание" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Последний корректор" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Последний раз обновлено" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Меню" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Информация меню" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Название меню" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Страницы" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата изменения" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Изменено" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Название" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Страница" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "История страницы" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "История страницы" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Тип страниц" +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 "Страницы" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "История страницы" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Родительское меню" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Итого" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Шаблон" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"будет использоваться как шаблон содержимого для всех новых страниц этой " -"категории." #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "Нет изменений" +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Заголовок" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Тип" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Помощник создания меню" +msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "Вы должны выбрать одну или две версии в истории!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "например Однажды, давным-давно..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "или" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Отображаемое содержимое" - -#~ msgid "Warning!" -#~ msgstr "Внимание!" - -#~ msgid "Create web pages" -#~ 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 "" diff --git a/document_page/i18n/sk.po b/document_page/i18n/sk.po index b36dce14..d06a1554 100644 --- a/document_page/i18n/sk.po +++ b/document_page/i18n/sk.po @@ -1,269 +1,263 @@ -# Slovak 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:35+0200\n" -"PO-Revision-Date: 2015-08-03 14:35+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Slovak \n" -"Language: sk\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Zrušiť" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Obsah" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Vytvoriť menu" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Vytvorené" +msgstr "Vytvoril" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Vytvorené" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Dátum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Rozdiel" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Rozdiel" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenty" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Zoskupiť podľa..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Obsah" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Posledný prispievateľ" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Naposledy upravoval" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Menu" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Informácie menu" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Názov menu" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Stránky" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Dátum zmeny" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "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" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Stránky" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,66 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Nadradené menu" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Zhrnutie" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Názov" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. 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 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "alebo" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/sl.po b/document_page/i18n/sl.po index b533e861..aa3b0d5f 100644 --- a/document_page/i18n/sl.po +++ b/document_page/i18n/sl.po @@ -1,370 +1,357 @@ -# Slovenian 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 , 2012. -# Matjaž Mozetič , 2015. +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-02 08:04+0200\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Slovenian \n" -"Language: sl\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" -"%100==4 ? 3 : 0);\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -" Ustvarjanje nove spletne strani.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Avtor" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Preklic" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Kategorije" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Kategorija" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Podrejeno" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" -msgstr "Zaključi" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Vsebina" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Ustvari meni" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" msgstr "Ustvaril" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Ustvarjeno" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "Datum zadnjega sporočila vpisanega na to vknjižbo." - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Razlika" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Razlika" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Naziv prikaza" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Zgodovina dokumenta" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Stran dokumenta" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" -msgstr "Zgodovina strani dokumenta" +msgstr "Zgodovina strani dokumentov" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Tip dokumenta" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "Dokumenti" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "Sledilci" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Group By..." -msgstr "Združi po..." - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "Zgodovina" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" -"Povzetek (število sporočil,..) v html formatu, da se lahko neposredno vstavi v " -"poglede tipa kanban." #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" msgstr "ID" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "Če označeno, zahtevajo nova sporočila vašo pozornost." +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" #. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "Je sledilec" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "Zadnja vsebina" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Zadnji prispeval" +msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "Datum zadnjega sporočila" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "Zadnjič posodobil" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meni" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Informacije o meniju" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Nadrejeni meni" +msgstr "" #. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "Sporočila" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "Sporočila in kronologija komunikacij" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum spremembe" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Spremenil" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Naziv" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Stran" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Zgodovina strani" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Zgodovina strani" +msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Tip strani" +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" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Zgodovina strani" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Nadmenu" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Povzetek" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Predloga" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" -"Predloga, ki bo uporabljena kot vsebinska predloga za vse nove strani v tej " -"kategoriji" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." -msgstr "V reviziji ni sprememb." +msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Naslov" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Tip" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "Neprebrana sporočila" +msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Čarovnik za ustvarjanje menija" +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 "Izbrati morate vsaj eno ali največ dve pretekli reviziji!" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." -msgstr "npr. Nekoč pred davnimi časi..." +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "ali" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Prikazana vsebina" - -#~ msgid "Warning!" -#~ msgstr "Opozorilo!" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/sr.po b/document_page/i18n/sr.po index 0b3963ea..bbc79397 100644 --- a/document_page/i18n/sr.po +++ b/document_page/i18n/sr.po @@ -1,262 +1,256 @@ -# Serbian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:36+0200\n" -"PO-Revision-Date: 2015-08-03 14:36+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Serbian \n" -"Language: sr\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "Otkazati" +msgstr "Otkaži" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Sadržaj" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Kreiraj Meni" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Kreiran" +msgstr "" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Kreiran" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Razlika" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenti" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Sadržaj" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meni" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Meni Informacije" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Naziv Menija" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Strane" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum Promene" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Strane" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Roditeljski Meni" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Sumarno" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Naslov" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" 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 "" diff --git a/document_page/i18n/sr@latin.po b/document_page/i18n/sr@latin.po index 999a2ac6..ee8669c6 100644 --- a/document_page/i18n/sr@latin.po +++ b/document_page/i18n/sr@latin.po @@ -1,262 +1,256 @@ -# Serbian Latin 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:36+0200\n" -"PO-Revision-Date: 2015-08-03 14:36+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Serbian Latin \n" -"Language: sr@latin\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Autor" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "Otkazati" +msgstr "Otkaži" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Sadržaj" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Kreiraj Meni" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Kreiran" +msgstr "" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Kreiran" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Razlika" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "Dokumenti" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Sadržaj" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meni" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Meni Informacije" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Naziv Menija" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Strane" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Datum Promene" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Strane" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Roditeljski Meni" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Sumarno" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Naslov" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" 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 "" diff --git a/document_page/i18n/sv.po b/document_page/i18n/sv.po index c8160c6c..1f09b17a 100644 --- a/document_page/i18n/sv.po +++ b/document_page/i18n/sv.po @@ -1,274 +1,263 @@ -# Swedish 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:36+0200\n" -"PO-Revision-Date: 2015-08-03 14:36+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Swedish \n" -"Language: sv\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-04-01 06:52+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" -"

    \n" -" Klicka för att skapa en ny webbsida.\n" -"

    \n" -" " - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Författare" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Avbryt" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "Kategorier" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Kategori" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" -msgstr "Underordnade" +msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Innehåll" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Skapa meny" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Skapad den" +msgstr "Skapad av" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Skapad den" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Datum" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Skillnad" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Skillnad" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" -msgstr "Dokumenthistorik" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "Dokumentsida" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "Dokumentets sidhistorik" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Dokumenttyp" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#, fuzzy +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" -msgstr "Dokumentsida" +msgstr "Dokument" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "Gruppera på..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "Historia" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Innehåll" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Senaste författare" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Senast uppdaterad av" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Meny" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Menyinformation" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "Menynamn" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Sidor" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Ändringsdatum" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "Ändrad av" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" -msgstr "Namn" +msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" -msgstr "Sida" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Sidhistorik" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -276,16 +265,16 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" -msgstr "Sidtyp" +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" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -293,75 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Huvudmeny" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Sammanfattning" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "Mall" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Rubrik" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "Typ" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "Skapa guide-meny" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "or" msgstr "eller" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" - -#~ msgid "Displayed Content" -#~ msgstr "Visa innehåll" - -#~ msgid "Warning!" -#~ msgstr "Varning!" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/th.po b/document_page/i18n/th.po new file mode 100644 index 00000000..d849cb53 --- /dev/null +++ b/document_page/i18n/th.po @@ -0,0 +1,357 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Content" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "เอกสาร" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "รหัส" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_page +#: model:ir.ui.menu,name:document_page.menu_page +#: model:ir.ui.menu,name:document_page.menu_wiki +msgid "Pages" +msgstr "" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/tr.po b/document_page/i18n/tr.po index 4e6c0d2e..c4824fcb 100644 --- a/document_page/i18n/tr.po +++ b/document_page/i18n/tr.po @@ -1,270 +1,357 @@ -# Turkish 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2015-08-03 13:36+0200\n" -"Last-Translator: Ayhan KIZILTAN \n" -"Language-Team: Turkish \n" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" "Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "İptal" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "" #. 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 +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "Kategori" +msgstr "" #. module: document_page -#: view:document.page:0 field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "Son Katkı koyan" +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" #. module: document_page -#: view:document.page:0 field:document.page,create_uid:0 -msgid "Author" -msgstr "Yazar" +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "" #. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "Menü" +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" #. module: document_page -#: view:document.page:0 model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "Belge Sayfası" +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "" #. 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 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "İçerik" +msgstr "" #. module: document_page -#: view:document.page:0 -msgid "Group By..." -msgstr "Gruplandır..." +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" #. module: document_page -#: view:document.page:0 -msgid "Template" -msgstr "Şablon" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Oluşturan" #. 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." +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Oluşturma" #. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "Başlık" +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" #. 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" +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Fark" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "" + +#. module: document_page +#: model:ir.actions.report.xml,name:document_page.report_document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "Belge Sayfası" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "Belge Sayfa Geçmişi" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Belgeler" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Group By..." +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "History" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_page #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Sayfalar" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "Kategoriler" - -#. module: document_page -#: view:document.page:0 -msgid "Name" -msgstr "Adı" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "Ana Menü" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Değiştirilme Tarihi" - -#. 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 -#: view:document.page:0 -msgid "e.g. Once upon a time..." -msgstr "e.g. Bir zamanlar..." - -#. 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 -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " msgstr "" -"

    \n" -" Yeni bir web sayfası oluşturmak için tıklayın.\n" -"

    \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 "Menü Oluştur" +#: model:ir.ui.menu,name:document_page.menu_page_history +msgid "Pages history" +msgstr "" #. module: document_page -#: field:document.page,display_content:0 -msgid "Displayed Content" -msgstr "Görüntülenen İçerik" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:129 -#: code:addons/document_page/wizard/document_page_show_diff.py:50 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 #, python-format -msgid "Warning!" -msgstr "Uyarı!" +msgid "Select one or maximum two history revisions!" +msgstr "" #. module: document_page -#: view:document.page.create.menu:0 -#: view:wizard.document.page.history.show_diff:0 -msgid "Cancel" -msgstr "İptal" +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary +msgid "Summary" +msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -msgstr "Fark" +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "" #. module: document_page -#: view:document.page:0 -msgid "Document Type" -msgstr "Belge Türü" +#: model:ir.model.fields,help:document_page.field_document_page_template +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "Alt" +#: code:addons/document_page/models/document_page_history.py:50 +#, python-format +msgid "There are no changes in revisions." +msgstr "" -#~ msgid "Create web pages" -#~ msgstr "Web sayfaları oluşturun" +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_create_menu +msgid "Wizard Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "e.g. Once upon a time..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "ya da" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" diff --git a/document_page/i18n/uk.po b/document_page/i18n/uk.po index f4214481..2addad2e 100644 --- a/document_page/i18n/uk.po +++ b/document_page/i18n/uk.po @@ -1,262 +1,256 @@ -# Ukrainian 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:37+0200\n" -"PO-Revision-Date: 2015-08-03 14:37+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "Автор" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "Скасувати" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Вміст" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "Створити Меню" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Створено" +msgstr "Створив" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Створено" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Дата" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "Відмінність" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Вміст" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" msgstr "" #. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Востаннє відредаговано" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "Дата останньої зміни" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Меню" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Інформація Меню" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Назва Меню" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Сторінки" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "Дата Зміни" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Сторінки" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Батьківське Меню" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "Підсумок" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Заголовок" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" diff --git a/document_page/i18n/vi.po b/document_page/i18n/vi.po index 5ed4aa96..e517b0bc 100644 --- a/document_page/i18n/vi.po +++ b/document_page/i18n/vi.po @@ -1,269 +1,263 @@ -# Vietnamese 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:37+0200\n" -"PO-Revision-Date: 2015-08-03 14:37+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Vietnamese \n" -"Language: vi\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Author" -msgstr "Tác giả" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Cancel" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: document_page #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "Nội dung" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "Tạo trên" +msgstr "" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "Tạo trên" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "Ngày" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" 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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "Khác biệt" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "Nội dung" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "Người đóng góp cuối" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "Trình đơn" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "Thông tin Trình đơn" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "Tên Trình đơn" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "Các trang" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "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" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "Các trang" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,46 +282,50 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "Trình đơn cha" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "Tiêu đề" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" msgstr "" #. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" msgstr "" #. module: document_page @@ -336,18 +334,24 @@ msgid "Wizard Create Menu" msgstr "" #. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "hoặc" + +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_document_page_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" diff --git a/document_page/i18n/zh_CN.po b/document_page/i18n/zh_CN.po index 4aa69f29..25961ac0 100644 --- a/document_page/i18n/zh_CN.po +++ b/document_page/i18n/zh_CN.po @@ -1,269 +1,263 @@ -# Chinese (Simplified) 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:37+0200\n" -"PO-Revision-Date: 2015-08-03 14:37+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Chinese (Simplified) \n" -"Language: zh_CN\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "作者" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" msgstr "取消" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" -msgstr "分类" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" -msgstr "类别" +msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "内容" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "创建菜单" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy -msgid "Created by" -msgstr "创建在" - -#. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "创建在" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日期" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff: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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "创建人" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "创建" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "差异" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "差异" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "文档" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "分组..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" -msgstr "历史" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." msgstr "" #. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "内容" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "最近的贡献者" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" -msgstr "" +msgstr "最后更新" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" +msgstr "最后一次更新" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "菜单" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "菜单信息" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "菜单名" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "页面" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "修改日期" +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "" #. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "修改者" +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "页面编辑日志" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "页面" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,72 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "上级菜单" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "摘要" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" -msgstr "模版" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "标题" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "类型" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "向导创建菜单" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." msgstr "" -#~ msgid "Displayed Content" -#~ msgstr "显示内容" +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "或者" -#~ msgid "Create web pages" -#~ 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 "" diff --git a/document_page/i18n/zh_TW.po b/document_page/i18n/zh_TW.po index a6f8df62..60f28a65 100644 --- a/document_page/i18n/zh_TW.po +++ b/document_page/i18n/zh_TW.po @@ -1,269 +1,263 @@ -# Chinese (Traditional) 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 , 2012. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: openobject-addons\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-03 14:38+0200\n" -"PO-Revision-Date: 2015-08-03 14:38+0200\n" -"Last-Translator: Matjaz Mozetic \n" -"Language-Team: Chinese (Traditional) \n" -"Language: zh_TW\n" +"POT-Creation-Date: 2018-04-17 00:50+0000\n" +"PO-Revision-Date: 2018-04-17 00:50+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Poedit 1.8.2\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" #. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "" -"

    \n" -" Click to create a new web page.\n" -"

    \n" -" " +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +msgid "Author" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "作者" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Cancel" -msgstr "刪除" +msgstr "取消" #. module: document_page -#: view:document.page:document_page.view_category_tree #: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree msgid "Categories" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form field:document.page,parent_id:0 #: selection:document.page,type:0 #: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "Category" msgstr "" #. module: document_page -#: field:document.page,child_ids:0 +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Changes" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids msgid "Children" msgstr "" #. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Close" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form field:document.page,content:0 -#: selection:document.page,type:0 field:document.page.history,content:0 +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Content" -msgstr "內容" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Create Menu" -msgstr "建立選單" +msgstr "" #. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -#, fuzzy +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid msgid "Created by" -msgstr "建立於" +msgstr "" #. module: document_page -#: field:document.page,create_date:0 field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date msgid "Created on" msgstr "建立於" #. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "日期" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." +#: model:ir.model.fields,help:document_page.field_document_page_summary +msgid "Describe the changes made" msgstr "" #. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_diff +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff msgid "Diff" -msgstr "差異" +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:document_page.view_wiki_show_diff +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff msgid "Difference" -msgstr "差異" +msgstr "" #. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree msgid "Document History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children +#: model:ir.actions.report.xml,name:document_page.report_document_page #: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children msgid "Document Page" msgstr "" #. module: document_page -#: view:document.page.history:document_page.wiki_history_form #: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "Document Page History" msgstr "" #. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Documents" +msgstr "文件" + +#. module: document_page +#: model:res.groups,name:document_page.group_document_editor +msgid "Editor" msgstr "" #. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_filter msgid "Group By..." -msgstr "分類方式..." +msgstr "" #. module: document_page -#: field:document.page,history_ids:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_head +msgid "HEAD" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +#: model:ir.ui.view,arch_db:document_page.view_wiki_form msgid "History" msgstr "" #. module: document_page -#: help:document.page,message_summary:0 -msgid "" -"Holds the Chatter summary (number of messages, ...). This summary is directly in " -"html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_content_date +msgid "Last Contribution Date" msgstr "" #. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -#, fuzzy -msgid "Last Content" -msgstr "內容" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter msgid "Last Contributor" -msgstr "最後的貢獻者" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid msgid "Last Updated by" msgstr "" #. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date msgid "Last Updated on" msgstr "" #. module: document_page -#: field:document.page,menu_id:0 +#: model:res.groups,name:document_page.group_document_manager +msgid "Manager" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id msgid "Menu" -msgstr "選單" +msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu msgid "Menu Information" -msgstr "選單資訊" +msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name msgid "Menu Name" -msgstr "選單名稱" - -#. module: document_page -#: field:document.page,message_ids:0 -#, fuzzy -msgid "Messages" -msgstr "頁面" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" msgstr "" #. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "修改日期" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form msgid "Name" msgstr "" #. module: document_page -#: field:document.page.history,page_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id msgid "Page" msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "頁面歷史記錄" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history @@ -271,7 +265,7 @@ msgid "Page history" msgstr "" #. module: document_page -#: help:document.page,type:0 +#: model:ir.model.fields,help:document_page.field_document_page_type msgid "Page type" msgstr "" @@ -280,7 +274,7 @@ msgstr "" #: model:ir.ui.menu,name:document_page.menu_page #: model:ir.ui.menu,name:document_page.menu_wiki msgid "Pages" -msgstr "頁面" +msgstr "" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history @@ -288,69 +282,76 @@ msgid "Pages history" msgstr "" #. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id msgid "Parent Menu" -msgstr "上級選單" +msgstr "" #. module: document_page -#: field:document.page,message_summary:0 field:document.page.history,summary:0 +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:29 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +#: model:ir.model.fields,field_description:document_page.field_document_page_summary msgid "Summary" -msgstr "摘要" +msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,field_description:document_page.field_document_page_template +#: model:ir.ui.view,arch_db:document_page.view_category_form msgid "Template" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form +#: model:ir.model.fields,help:document_page.field_document_page_template msgid "" "Template that will be used as a content template for all new page of this " "category." msgstr "" #. module: document_page -#: code:addons/document_page/document_page.py:175 +#: code:addons/document_page/models/document_page_history.py:50 #, python-format msgid "There are no changes in revisions." msgstr "" #. module: document_page -#: field:document.page,name:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_name msgid "Title" -msgstr "標題" +msgstr "" #. module: document_page -#: field:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_type msgid "Type" -msgstr "類型" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "嚮導創建選單" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" msgstr "" #. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form msgid "e.g. Once upon a time..." msgstr "" #. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "eg: Changed ... for ..." msgstr "" -#~ msgid "wizard.document.page.history.show_diff" -#~ msgstr "wizard.document.page.history.show_diff" +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +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 "" From 513ab58dad3914480eb5ac1d989ea8f623121587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Mon, 15 Aug 2016 22:13:37 +0200 Subject: [PATCH 49/52] [FIX] remove en.po that was erroneously created by transbot --- document_page/i18n/en.po | 405 --------------------------------------- 1 file changed, 405 deletions(-) delete mode 100644 document_page/i18n/en.po diff --git a/document_page/i18n/en.po b/document_page/i18n/en.po deleted file mode 100644 index 63327996..00000000 --- a/document_page/i18n/en.po +++ /dev/null @@ -1,405 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * document_page -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: knowledge (9.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-09 11:27+0000\n" -"PO-Revision-Date: 2016-01-09 11:27+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-knowledge-9-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction -msgid "Action Needed" -msgstr "Action Needed" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid -#: model:ir.ui.view,arch_db:document_page.view_wiki_filter -msgid "Author" -msgstr "Author" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu -msgid "Cancel" -msgstr "Cancel" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_category -#: model:ir.ui.view,arch_db:document_page.view_category_tree -msgid "Categories" -msgstr "Categories" - -#. module: document_page -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id -#: model:ir.ui.view,arch_db:document_page.view_category_form -#: model:ir.ui.view,arch_db:document_page.view_wiki_form -msgid "Category" -msgstr "Category" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids -msgid "Children" -msgstr "Children" - -#. module: document_page -#: model:ir.actions.act_window,help:document_page.action_page -msgid "Click to create a new web page." -msgstr "Click to create a new web page." - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff -msgid "Close" -msgstr "Close" - -#. module: document_page -#: selection:document.page,type:0 -#: model:ir.model.fields,field_description:document_page.field_document_page_content -#: model:ir.model.fields,field_description:document_page.field_document_page_history_content -#: model:ir.ui.view,arch_db:document_page.view_wiki_filter -#: model:ir.ui.view,arch_db:document_page.view_wiki_form -msgid "Content" -msgstr "Content" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu -msgid "Create Menu" -msgstr "Create Menu" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid -msgid "Created by" -msgstr "Created by" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_date -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date -msgid "Created on" -msgstr "Created on" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date -msgid "Date" -msgstr "Date" - -#. module: document_page -#: model:ir.model.fields,help:document_page.field_document_page_message_last_post -msgid "Date of the last message posted on the record." -msgstr "Date of the last message posted on the record." - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff -msgid "Diff" -msgstr "Diff" - -#. 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 -#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff -msgid "Difference" -msgstr "Difference" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name -#: model:ir.model.fields,field_description:document_page.field_document_page_display_name -#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name -msgid "Display Name" -msgstr "Display Name" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_display_content -msgid "Displayed Content" -msgstr "Displayed Content" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree -msgid "Document History" -msgstr "Document History" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_filter -#: model:ir.ui.view,arch_db:document_page.view_wiki_form -#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form -#: model:ir.ui.view,arch_db:document_page.view_wiki_tree -#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children -msgid "Document Page" -msgstr "Document Page" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_history -#: model:ir.ui.view,arch_db:document_page.wiki_history_form -msgid "Document Page History" -msgstr "Document Page History" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_filter -msgid "Document Type" -msgstr "Document Type" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_category_form -msgid "Documents" -msgstr "Documents" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids -msgid "Followers" -msgstr "Followers" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids -msgid "Followers (Channels)" -msgstr "Followers (Channels)" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids -msgid "Followers (Partners)" -msgstr "Followers (Partners)" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_filter -msgid "Group By..." -msgstr "Group By..." - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids -msgid "History" -msgstr "History" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id -#: model:ir.model.fields,field_description:document_page.field_document_page_history_id -#: model:ir.model.fields,field_description:document_page.field_document_page_id -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id -msgid "ID" -msgstr "ID" - -#. module: document_page -#: model:ir.model.fields,help:document_page.field_document_page_message_unread -msgid "If checked new messages require your attention." -msgstr "If checked new messages require your attention." - -#. module: document_page -#: model:ir.model.fields,help:document_page.field_document_page_message_needaction -msgid "If checked, new messages require your attention." -msgstr "If checked, new messages require your attention." - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower -msgid "Is Follower" -msgstr "Is Follower" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_form -msgid "Last Content" -msgstr "Last Content" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid -#: model:ir.ui.view,arch_db:document_page.view_wiki_filter -msgid "Last Contributor" -msgstr "Last Contributor" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post -msgid "Last Message Date" -msgstr "Last Message Date" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page___last_update -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update -#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid -#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date -#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date -#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id -msgid "Menu" -msgstr "Menu" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "Menu Information" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name -msgid "Menu Name" -msgstr "Menu Name" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids -msgid "Messages" -msgstr "Messages" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_write_date -msgid "Modification Date" -msgstr "Modification Date" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid -msgid "Modified By" -msgstr "Modified By" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_category_form -#: model:ir.ui.view,arch_db:document_page.view_wiki_form -#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form -msgid "Name" -msgstr "Name" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter -msgid "Number of Actions" -msgstr "Number of Actions" - -#. module: document_page -#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "Number of messages which requires an action" - -#. module: document_page -#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter -msgid "Number of unread messages" -msgstr "Number of unread messages" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id -msgid "Page" -msgstr "Page" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "Page History" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "Page history" - -#. module: document_page -#: model:ir.model.fields,help:document_page.field_document_page_type -msgid "Page type" -msgstr "Page type" - -#. 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_page_history -msgid "Pages history" -msgstr "Pages history" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id -msgid "Parent Menu" -msgstr "Parent Menu" - -#. module: document_page -#: code:addons/document_page/tests/test_document_page_show_diff.py:35 -#: code:addons/document_page/wizard/document_page_show_diff.py:51 -#, python-format -msgid "Select one or maximum two history revisions!" -msgstr "Select one or maximum two history revisions!" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary -msgid "Summary" -msgstr "Summary" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_category_form -msgid "Template" -msgstr "Template" - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_category_form -msgid "" -"Template that will be used as a content template for all new page of this " -"category." -msgstr "Template that will be used as a content template for all new page of this category." - -#. module: document_page -#: code:addons/document_page/models/document_page_history.py:52 -#, python-format -msgid "There are no changes in revisions." -msgstr "There are no changes in revisions." - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_name -msgid "Title" -msgstr "Title" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_type -msgid "Type" -msgstr "Type" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread -msgid "Unread Messages" -msgstr "Unread Messages" - -#. module: document_page -#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter -msgid "Unread Messages Counter" -msgstr "Unread Messages Counter" - -#. 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 -#: model:ir.ui.view,arch_db:document_page.view_category_form -#: model:ir.ui.view,arch_db:document_page.view_wiki_form -msgid "e.g. Once upon a time..." -msgstr "e.g. Once upon a time..." - -#. module: document_page -#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu -msgid "or" -msgstr "or" - -#. 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" From 6149a4449313c6bf8293f36616c72640beef7b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Fri, 15 Jun 2018 23:17:26 +0200 Subject: [PATCH 50/52] remove obsolete .pot files [ci skip] --- document_page/i18n/document_page.pot | 348 --------------------------- 1 file changed, 348 deletions(-) delete mode 100644 document_page/i18n/document_page.pot diff --git a/document_page/i18n/document_page.pot b/document_page/i18n/document_page.pot deleted file mode 100644 index 4739dc9b..00000000 --- a/document_page/i18n/document_page.pot +++ /dev/null @@ -1,348 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * document_page -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-27 20:33+0000\n" -"PO-Revision-Date: 2015-07-27 20:33+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 -#: model:ir.actions.act_window,help:document_page.action_page -msgid "

    \n" -" Click to create a new web page.\n" -"

    \n" -" " -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,create_uid:0 -msgid "Author" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Cancel" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_tree -#: model:ir.ui.menu,name:document_page.menu_category -msgid "Categories" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: field:document.page,parent_id:0 -#: selection:document.page,type:0 -#: model:ir.actions.act_window,name:document_page.action_category -msgid "Category" -msgstr "" - -#. module: document_page -#: field:document.page,child_ids:0 -msgid "Children" -msgstr "" - -#. module: document_page -#: view:wizard.document.page.history.show_diff:document_page.view_wiki_show_diff -msgid "Close" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: field:document.page,content:0 -#: selection:document.page,type:0 -#: field:document.page.history,content:0 -msgid "Content" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu -#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -msgid "Create Menu" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,create_uid:0 -#: field:wizard.document.page.history.show_diff,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: document_page -#: field:document.page,create_date:0 -#: field:document.page.create.menu,create_date:0 -#: field:wizard.document.page.history.show_diff,create_date:0 -msgid "Created on" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: document_page -#: help:document.page,message_last_post:0 -msgid "Date of the last message posted on the record." -msgstr "" - -#. module: document_page -#: field:wizard.document.page.history.show_diff,diff:0 -msgid "Diff" -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:document_page.view_wiki_show_diff -msgid "Difference" -msgstr "" - -#. module: document_page -#: view:document.page.history:document_page.view_wiki_history_tree -msgid "Document History" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -#: view:document.page:document_page.view_wiki_tree -#: view:document.page:document_page.view_wiki_tree_children -#: model:ir.model,name:document_page.model_document_page -msgid "Document Page" -msgstr "" - -#. module: document_page -#: view:document.page.history:document_page.wiki_history_form -#: model:ir.model,name:document_page.model_document_page_history -msgid "Document Page History" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Document Type" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -msgid "Documents" -msgstr "" - -#. module: document_page -#: field:document.page,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -msgid "Group By..." -msgstr "" - -#. module: document_page -#: field:document.page,history_ids:0 -msgid "History" -msgstr "" - -#. module: document_page -#: help:document.page,message_summary:0 -msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views." -msgstr "" - -#. module: document_page -#: field:document.page,id:0 -#: field:document.page.create.menu,id:0 -#: field:document.page.history,id:0 -#: field:wizard.document.page.history.show_diff,id:0 -msgid "ID" -msgstr "" - -#. module: document_page -#: help:document.page,message_unread:0 -msgid "If checked new messages require your attention." -msgstr "" - -#. module: document_page -#: field:document.page,message_is_follower:0 -msgid "Is a Follower" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_form -msgid "Last Content" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_wiki_filter -#: field:document.page,write_uid:0 -msgid "Last Contributor" -msgstr "" - -#. module: document_page -#: field:document.page,message_last_post:0 -msgid "Last Message Date" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,write_uid:0 -#: field:document.page.history,write_uid:0 -#: field:wizard.document.page.history.show_diff,write_uid:0 -msgid "Last Updated by" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,write_date:0 -#: field:document.page.history,write_date:0 -#: field:wizard.document.page.history.show_diff,write_date:0 -msgid "Last Updated on" -msgstr "" - -#. module: document_page -#: field:document.page,menu_id:0 -msgid "Menu" -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "Menu Information" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: document_page -#: field:document.page,message_ids:0 -msgid "Messages" -msgstr "" - -#. module: document_page -#: help:document.page,message_ids:0 -msgid "Messages and communication history" -msgstr "" - -#. module: document_page -#: field:document.page,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: document_page -#: field:document.page.history,create_uid:0 -msgid "Modified By" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -#: view:document.page:document_page.view_wiki_menu_form -msgid "Name" -msgstr "" - -#. module: document_page -#: field:document.page.history,page_id:0 -msgid "Page" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_related_page_history -msgid "Page History" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_history -msgid "Page history" -msgstr "" - -#. module: document_page -#: help:document.page,type:0 -msgid "Page type" -msgstr "" - -#. module: document_page -#: model:ir.actions.act_window,name:document_page.action_page -#: model:ir.ui.menu,name:document_page.menu_page -#: model:ir.ui.menu,name:document_page.menu_wiki -msgid "Pages" -msgstr "" - -#. module: document_page -#: model:ir.ui.menu,name:document_page.menu_page_history -msgid "Pages history" -msgstr "" - -#. module: document_page -#: field:document.page.create.menu,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: document_page -#: field:document.page,message_summary:0 -#: field:document.page.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -msgid "Template" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -msgid "Template that will be used as a content template for all new page of this category." -msgstr "" - -#. module: document_page -#: code:addons/document_page/document_page.py:175 -#, python-format -msgid "There are no changes in revisions." -msgstr "" - -#. module: document_page -#: field:document.page,name:0 -msgid "Title" -msgstr "" - -#. module: document_page -#: field:document.page,type:0 -msgid "Type" -msgstr "" - -#. module: document_page -#: field:document.page,message_unread:0 -msgid "Unread Messages" -msgstr "" - -#. module: document_page -#: model:ir.model,name:document_page.model_document_page_create_menu -msgid "Wizard Create Menu" -msgstr "" - -#. module: document_page -#: code:addons/document_page/wizard/document_page_show_diff.py:50 -#, python-format -msgid "You need to select minimum one or maximum two history revisions!" -msgstr "" - -#. module: document_page -#: view:document.page:document_page.view_category_form -#: view:document.page:document_page.view_wiki_form -msgid "e.g. Once upon a time..." -msgstr "" - -#. module: document_page -#: view:document.page.create.menu:document_page.view_wiki_create_menu -msgid "or" -msgstr "" From d0cc7ef0fbdd41d4461a0d2dd91624316ee87808 Mon Sep 17 00:00:00 2001 From: Jose Maria Alzaga Date: Fri, 6 Apr 2018 16:33:24 +0200 Subject: [PATCH 51/52] [MIG] document_page: Migration to 11.0 --- document_page/README.rst | 1 + document_page/__init__.py | 1 - document_page/__manifest__.py | 3 +- document_page/i18n/en.po | 405 ++++++++++++++++++ document_page/models/__init__.py | 1 - document_page/models/document_page.py | 1 - document_page/models/document_page_history.py | 1 - document_page/tests/__init__.py | 1 - document_page/tests/test_document_page.py | 1 - .../tests/test_document_page_create_menu.py | 1 - .../tests/test_document_page_history.py | 1 - .../tests/test_document_page_show_diff.py | 1 - document_page/wizard/__init__.py | 1 - .../wizard/document_page_create_menu.py | 1 - .../wizard/document_page_show_diff.py | 1 - 15 files changed, 407 insertions(+), 14 deletions(-) create mode 100644 document_page/i18n/en.po diff --git a/document_page/README.rst b/document_page/README.rst index 1b1a76de..b5f12436 100644 --- a/document_page/README.rst +++ b/document_page/README.rst @@ -56,6 +56,7 @@ Contributors * Gervais Naoussi * Maxime Chambreuil * Iván Todorovich +* Jose Maria Alzaga Funders ------- diff --git a/document_page/__init__.py b/document_page/__init__.py index e20b6b62..22e29c85 100644 --- a/document_page/__init__.py +++ b/document_page/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page/__manifest__.py b/document_page/__manifest__.py index 38e3b19b..29e548cc 100644 --- a/document_page/__manifest__.py +++ b/document_page/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Document Page', - 'version': '10.0.2.0.0', + 'version': '11.0.1.0.0', 'category': 'Knowledge Management', 'author': 'OpenERP SA, Odoo Community Association (OCA)', 'images': [ diff --git a/document_page/i18n/en.po b/document_page/i18n/en.po new file mode 100644 index 00000000..63327996 --- /dev/null +++ b/document_page/i18n/en.po @@ -0,0 +1,405 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * document_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: knowledge (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-09 11:27+0000\n" +"PO-Revision-Date: 2016-01-09 11:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-knowledge-9-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction +msgid "Action Needed" +msgstr "Action Needed" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Author" +msgstr "Author" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Cancel" +msgstr "Cancel" + +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_category +#: model:ir.ui.view,arch_db:document_page.view_category_tree +msgid "Categories" +msgstr "Categories" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.actions.act_window,name:document_page.action_category +#: model:ir.model.fields,field_description:document_page.field_document_page_parent_id +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Category" +msgstr "Category" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_child_ids +msgid "Children" +msgstr "Children" + +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_page +msgid "Click to create a new web page." +msgstr "Click to create a new web page." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Close" +msgstr "Close" + +#. module: document_page +#: selection:document.page,type:0 +#: model:ir.model.fields,field_description:document_page.field_document_page_content +#: model:ir.model.fields,field_description:document_page.field_document_page_history_content +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Content" +msgstr "Content" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_create_menu +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Create Menu" +msgstr "Create Menu" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_date +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_create_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_create_date +msgid "Created on" +msgstr "Created on" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_date +msgid "Date" +msgstr "Date" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_last_post +msgid "Date of the last message posted on the record." +msgstr "Date of the last message posted on the record." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_diff +msgid "Diff" +msgstr "Diff" + +#. 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 +#: model:ir.ui.view,arch_db:document_page.view_wiki_show_diff +msgid "Difference" +msgstr "Difference" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_display_name +#: model:ir.model.fields,field_description:document_page.field_document_page_history_display_name +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_display_content +msgid "Displayed Content" +msgstr "Displayed Content" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_history_tree +msgid "Document History" +msgstr "Document History" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree +#: model:ir.ui.view,arch_db:document_page.view_wiki_tree_children +msgid "Document Page" +msgstr "Document Page" + +#. module: document_page +#: model:ir.model,name:document_page.model_document_page_history +#: model:ir.ui.view,arch_db:document_page.wiki_history_form +msgid "Document Page History" +msgstr "Document Page History" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Document Type" +msgstr "Document Type" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Documents" +msgstr "Documents" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_follower_ids +msgid "Followers" +msgstr "Followers" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_channel_ids +msgid "Followers (Channels)" +msgstr "Followers (Channels)" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_partner_ids +msgid "Followers (Partners)" +msgstr "Followers (Partners)" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Group By..." +msgstr "Group By..." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_ids +msgid "History" +msgstr "History" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_id +#: model:ir.model.fields,field_description:document_page.field_document_page_history_id +#: model:ir.model.fields,field_description:document_page.field_document_page_id +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_id +msgid "ID" +msgstr "ID" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread +msgid "If checked new messages require your attention." +msgstr "If checked new messages require your attention." + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction +msgid "If checked, new messages require your attention." +msgstr "If checked, new messages require your attention." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_is_follower +msgid "Is Follower" +msgstr "Is Follower" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "Last Content" +msgstr "Last Content" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_uid +#: model:ir.ui.view,arch_db:document_page.view_wiki_filter +msgid "Last Contributor" +msgstr "Last Contributor" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_last_post +msgid "Last Message Date" +msgstr "Last Message Date" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu___last_update +#: model:ir.model.fields,field_description:document_page.field_document_page_history___last_update +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_uid +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_uid +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_write_date +#: model:ir.model.fields,field_description:document_page.field_document_page_history_write_date +#: model:ir.model.fields,field_description:document_page.field_wizard_document_page_history_show_diff_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_menu_id +msgid "Menu" +msgstr "Menu" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "Menu Information" +msgstr "Menu Information" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_name +msgid "Menu Name" +msgstr "Menu Name" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_ids +msgid "Messages" +msgstr "Messages" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_write_date +msgid "Modification Date" +msgstr "Modification Date" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_create_uid +msgid "Modified By" +msgstr "Modified By" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_menu_form +msgid "Name" +msgstr "Name" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_needaction_counter +msgid "Number of Actions" +msgstr "Number of Actions" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Number of messages which requires an action" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_message_unread_counter +msgid "Number of unread messages" +msgstr "Number of unread messages" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_page_id +msgid "Page" +msgstr "Page" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_related_page_history +msgid "Page History" +msgstr "Page History" + +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history +msgid "Page history" +msgstr "Page history" + +#. module: document_page +#: model:ir.model.fields,help:document_page.field_document_page_type +msgid "Page type" +msgstr "Page type" + +#. 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_page_history +msgid "Pages history" +msgstr "Pages history" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_create_menu_menu_parent_id +msgid "Parent Menu" +msgstr "Parent Menu" + +#. module: document_page +#: code:addons/document_page/tests/test_document_page_show_diff.py:35 +#: code:addons/document_page/wizard/document_page_show_diff.py:51 +#, python-format +msgid "Select one or maximum two history revisions!" +msgstr "Select one or maximum two history revisions!" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_history_summary +msgid "Summary" +msgstr "Summary" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "Template" +msgstr "Template" + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_category_form +msgid "" +"Template that will be used as a content template for all new page of this " +"category." +msgstr "Template that will be used as a content template for all new page of this category." + +#. module: document_page +#: code:addons/document_page/models/document_page_history.py:52 +#, python-format +msgid "There are no changes in revisions." +msgstr "There are no changes in revisions." + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_name +msgid "Title" +msgstr "Title" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_type +msgid "Type" +msgstr "Type" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread +msgid "Unread Messages" +msgstr "Unread Messages" + +#. module: document_page +#: model:ir.model.fields,field_description:document_page.field_document_page_message_unread_counter +msgid "Unread Messages Counter" +msgstr "Unread Messages Counter" + +#. 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 +#: model:ir.ui.view,arch_db:document_page.view_category_form +#: model:ir.ui.view,arch_db:document_page.view_wiki_form +msgid "e.g. Once upon a time..." +msgstr "e.g. Once upon a time..." + +#. module: document_page +#: model:ir.ui.view,arch_db:document_page.view_wiki_create_menu +msgid "or" +msgstr "or" + +#. 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" diff --git a/document_page/models/__init__.py b/document_page/models/__init__.py index 032f47f7..01c939a7 100644 --- a/document_page/models/__init__.py +++ b/document_page/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index 3824dc5d..483ac526 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page/models/document_page_history.py b/document_page/models/document_page_history.py index 8334d6ab..a5e70e78 100644 --- a/document_page/models/document_page_history.py +++ b/document_page/models/document_page_history.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page/tests/__init__.py b/document_page/tests/__init__.py index 14e2fa0b..67afbfa7 100644 --- a/document_page/tests/__init__.py +++ b/document_page/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import test_document_page from . import test_document_page_create_menu diff --git a/document_page/tests/test_document_page.py b/document_page/tests/test_document_page.py index 32da79e2..9daec4a5 100644 --- a/document_page/tests/test_document_page.py +++ b/document_page/tests/test_document_page.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from odoo.tests import common diff --git a/document_page/tests/test_document_page_create_menu.py b/document_page/tests/test_document_page_create_menu.py index 2484d008..2f544b2a 100644 --- a/document_page/tests/test_document_page_create_menu.py +++ b/document_page/tests/test_document_page_create_menu.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from odoo.tests import common diff --git a/document_page/tests/test_document_page_history.py b/document_page/tests/test_document_page_history.py index f6d87702..590475e2 100644 --- a/document_page/tests/test_document_page_history.py +++ b/document_page/tests/test_document_page_history.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from odoo.tests import common diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index 5befd18d..68f75b30 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from odoo.tests import common from odoo import _ diff --git a/document_page/wizard/__init__.py b/document_page/wizard/__init__.py index 2b067b08..f05bccc2 100644 --- a/document_page/wizard/__init__.py +++ b/document_page/wizard/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index ebc2649a..f9b9d1ce 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/document_page/wizard/document_page_show_diff.py b/document_page/wizard/document_page_show_diff.py index 6757ddb2..440ce6d6 100644 --- a/document_page/wizard/document_page_show_diff.py +++ b/document_page/wizard/document_page_show_diff.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2004-2010 Tiny SPRL (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). From 2fc70bc880c2390dde1d170272fadddec8fcaef1 Mon Sep 17 00:00:00 2001 From: Gabriela Mogollon Date: Wed, 20 Jun 2018 18:03:36 +0000 Subject: [PATCH 52/52] [MIG] document_page: Migration to 11.0 continue migration --- document_page/README.rst | 2 +- document_page/models/document_page.py | 16 +--------------- .../tests/test_document_page_show_diff.py | 8 ++------ .../wizard/document_page_create_menu.py | 1 - 4 files changed, 4 insertions(+), 23 deletions(-) diff --git a/document_page/README.rst b/document_page/README.rst index b5f12436..978b2f71 100644 --- a/document_page/README.rst +++ b/document_page/README.rst @@ -30,7 +30,7 @@ To use this module, you need to: .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/118/10.0 + :target: https://runbot.odoo-community.org/runbot/118/11.0 Known issues / Roadmap ====================== diff --git a/document_page/models/document_page.py b/document_page/models/document_page.py index 483ac526..24524210 100644 --- a/document_page/models/document_page.py +++ b/document_page/models/document_page.py @@ -54,13 +54,6 @@ class DocumentPage(models.Model): "for all new page of this category.", ) - # deprecated - should be removed on 11.0 - # left here because some modules might still need it - display_content = fields.Text( - string='Displayed Content', - compute='_compute_display_content' - ) - history_head = fields.Many2one( 'document.page.history', 'HEAD', @@ -116,14 +109,7 @@ class DocumentPage(models.Model): return r @api.multi - @api.depends('content') - def _compute_display_content(self): - # @deprecated, simply use content - for rec in self: - rec.display_content = rec.content - - @api.multi - @api.depends('history_head', 'history_ids') + @api.depends('history_head') def _compute_content(self): for rec in self: if rec.type == 'category': diff --git a/document_page/tests/test_document_page_show_diff.py b/document_page/tests/test_document_page_show_diff.py index 68f75b30..5044c443 100644 --- a/document_page/tests/test_document_page_show_diff.py +++ b/document_page/tests/test_document_page_show_diff.py @@ -1,6 +1,5 @@ - +from odoo.exceptions import UserError from odoo.tests import common -from odoo import _ class TestDocumentPageShowDiff(common.TransactionCase): @@ -26,10 +25,7 @@ class TestDocumentPageShowDiff(common.TransactionCase): history_pages = history_document.search([('page_id', '=', page.id)]) - with self.assertRaises(Exception) as context: + with self.assertRaises(UserError): show_diff_object.with_context( active_ids=[i.id for i in history_pages] )._get_diff() - - self.assertTrue(_("Select one or maximum two history revisions!") - in context.exception) diff --git a/document_page/wizard/document_page_create_menu.py b/document_page/wizard/document_page_create_menu.py index f9b9d1ce..b150ef85 100644 --- a/document_page/wizard/document_page_create_menu.py +++ b/document_page/wizard/document_page_create_menu.py @@ -64,7 +64,6 @@ class DocumentPageCreateMenu(models.TransientModel): menu_id = obj_menu.sudo().create({ 'name': data.menu_name, 'parent_id': data.menu_parent_id.id, - 'icon': 'STOCK_DIALOG_QUESTION', 'action': 'ir.actions.act_window,' + str(action_id.id), }) page.write({'menu_id': menu_id.id})