diff --git a/.travis.yml b/.travis.yml index 6341713d..12e07c88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,20 +4,23 @@ python: - "2.7" env: - - VERSION="8.0" + - VERSION="8.0" ODOO_REPO="odoo/odoo" + - VERSION="8.0" ODOO_REPO="OCA/OCB" virtualenv: system_site_packages: true + install: - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} - - travis_install_nightly ${VERSION} - - $HOME/maintainer-quality-tools/travis/travis_install_nightly ${VERSION} + - travis_install_nightly + script: - travis_run_flake8 - - travis_run_tests ${VERSION} + - travis_run_tests + after_success: coveralls diff --git a/document_page/__init__.py b/document_page/__init__.py new file mode 100644 index 00000000..d11fab84 --- /dev/null +++ b/document_page/__init__.py @@ -0,0 +1,22 @@ +# -*- 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 wizard diff --git a/document_page/__openerp__.py b/document_page/__openerp__.py new file mode 100644 index 00000000..116aa153 --- /dev/null +++ b/document_page/__openerp__.py @@ -0,0 +1,53 @@ +# -*- 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'], +} diff --git a/document_page/document_page.py b/document_page/document_page.py new file mode 100644 index 00000000..8983ba00 --- /dev/null +++ b/document_page/document_page.py @@ -0,0 +1,179 @@ +# -*- 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 difflib +from openerp import models, fields, api, _ + + +class document_page(models.Model): + _name = "document.page" + _description = "Document Page" + _order = 'name' + + 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(subpage) + + "
  • "] + r = '' + if link: + r = '%s' % (page.id, page.name) + + if index: + r += "
      " + "".join(index) + "
    " + return r + + def _get_display_content(self): + 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): + 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): + history = self.env['document.page.history'] + return history.create({ + "content": content, + "page_id": page_id + }) + + @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" + _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 + ) 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..c94054e7 --- /dev/null +++ b/document_page/document_page_demo.xml @@ -0,0 +1,131 @@ + + + + + + + + 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..e9990ef2 --- /dev/null +++ b/document_page/document_page_view.xml @@ -0,0 +1,212 @@ + + + + + + + + + + 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..13f0479f --- /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/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..bc75c64e --- /dev/null +++ b/document_page/test/document_page_test00.yml @@ -0,0 +1,55 @@ +- + 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/wizard/__init__.py b/document_page/wizard/__init__.py new file mode 100644 index 00000000..3348328b --- /dev/null +++ b/document_page/wizard/__init__.py @@ -0,0 +1,24 @@ +# -*- 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_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 new file mode 100644 index 00000000..07bfb4ec --- /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 models, fields, api + + +class document_page_create_menu(models.TransientModel): + """ Create Menu """ + _name = "document.page.create.menu" + _description = "Wizard Create Menu" + + menu_name = fields.Char( + 'Menu Name', + required=True + ) + + menu_parent_id = fields.Many2one( + 'ir.ui.menu', + 'Parent Menu', + required=True + ) + + @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 + + @api.multi + def document_page_menu_create(self): + 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) + + data = self[0] + 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 + + # only the super user is allowed to create menu due to security rules + # on ir.values + # 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.id), + }) + page.write({'menu_id': menu_id.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..858aa0ed --- /dev/null +++ b/document_page/wizard/document_page_create_menu_view.xml @@ -0,0 +1,41 @@ + + + + + + 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..25a93de2 --- /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 import models, fields, _ +from openerp import exceptions + + +class showdiff(models.TransientModel): + """ Display Difference for History """ + + _name = 'wizard.document.page.history.show_diff' + + 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(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) + else: + raise exceptions.Warning( + _("You need to select minimum one or maximum " + "two history revisions!") + ) + return diff + + diff = fields.Text( + 'Diff', + 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_view.xml new file mode 100644 index 00000000..dbe973b3 --- /dev/null +++ b/document_page/wizard/document_page_show_diff_view.xml @@ -0,0 +1,47 @@ + + + + + + + Show Difference + wizard.document.page.history.show_diff + +
    + +
    +
    + +
    +
    + + + + + Difference + ir.actions.act_window + wizard.document.page.history.show_diff + form + form + new + + + + + + +
    +