[REM] removed HTML_view module
authorFabien Pinckaers <fp@tinyerp.com>
Fri, 18 May 2012 16:43:13 +0000 (18:43 +0200)
committerFabien Pinckaers <fp@tinyerp.com>
Fri, 18 May 2012 16:43:13 +0000 (18:43 +0200)
bzr revid: fp@tinyerp.com-20120518164313-9l2b57g3lpa0nogc

43 files changed:
addons/html_view/__init__.py [deleted file]
addons/html_view/__openerp__.py [deleted file]
addons/html_view/html_view.py [deleted file]
addons/html_view/html_view.xml [deleted file]
addons/html_view/i18n/ar.po [deleted file]
addons/html_view/i18n/bg.po [deleted file]
addons/html_view/i18n/ca.po [deleted file]
addons/html_view/i18n/cs.po [deleted file]
addons/html_view/i18n/da.po [deleted file]
addons/html_view/i18n/de.po [deleted file]
addons/html_view/i18n/el.po [deleted file]
addons/html_view/i18n/en_GB.po [deleted file]
addons/html_view/i18n/es.po [deleted file]
addons/html_view/i18n/es_CR.po [deleted file]
addons/html_view/i18n/es_MX.po [deleted file]
addons/html_view/i18n/es_PY.po [deleted file]
addons/html_view/i18n/es_VE.po [deleted file]
addons/html_view/i18n/et.po [deleted file]
addons/html_view/i18n/fi.po [deleted file]
addons/html_view/i18n/fr.po [deleted file]
addons/html_view/i18n/gl.po [deleted file]
addons/html_view/i18n/hr.po [deleted file]
addons/html_view/i18n/html_view.pot [deleted file]
addons/html_view/i18n/hu.po [deleted file]
addons/html_view/i18n/it.po [deleted file]
addons/html_view/i18n/ja.po [deleted file]
addons/html_view/i18n/mk.po [deleted file]
addons/html_view/i18n/mn.po [deleted file]
addons/html_view/i18n/nb.po [deleted file]
addons/html_view/i18n/nl.po [deleted file]
addons/html_view/i18n/pt.po [deleted file]
addons/html_view/i18n/pt_BR.po [deleted file]
addons/html_view/i18n/ro.po [deleted file]
addons/html_view/i18n/ru.po [deleted file]
addons/html_view/i18n/sk.po [deleted file]
addons/html_view/i18n/sl.po [deleted file]
addons/html_view/i18n/sr.po [deleted file]
addons/html_view/i18n/sr@latin.po [deleted file]
addons/html_view/i18n/sv.po [deleted file]
addons/html_view/i18n/tr.po [deleted file]
addons/html_view/i18n/vi.po [deleted file]
addons/html_view/i18n/zh_CN.po [deleted file]
addons/html_view/security/ir.model.access.csv [deleted file]

diff --git a/addons/html_view/__init__.py b/addons/html_view/__init__.py
deleted file mode 100644 (file)
index 12bd1af..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-import html_view
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/addons/html_view/__openerp__.py b/addons/html_view/__openerp__.py
deleted file mode 100644 (file)
index 3e1ba2e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-{
-    "name" : "Html View",
-    "version" : "1.1",
-    "author" : "OpenERP SA",
-    "category" : "Hidden/Test",
-    "depends" : ['base'],
-    "init_xml" : ['html_view.xml'],
-    "demo_xml" : [],
-    "description": """
-This is the test module which shows HTML tag support in normal XML form view.
-=============================================================================
-
-Creates a sample form-view using HTML tags. It is visible only in OpenERP Web.
-    """,
-    'update_xml': ['security/ir.model.access.csv','html_view.xml',],
-    'installable': True,
-    'auto_install': False,
-    'certificate': '001302129363003126557',
-}
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/addons/html_view/html_view.py b/addons/html_view/html_view.py
deleted file mode 100644 (file)
index 09201b2..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-from osv import osv, fields
-
-class html_view(osv.osv):
-    _name = 'html.view'
-    _columns = {
-        'name': fields.char('Name', size=128, required=True, select=True),
-        'comp_id': fields.many2one('res.company', 'Company', select=1),
-        'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),
-    }
-    
-html_view()
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/addons/html_view/html_view.xml b/addons/html_view/html_view.xml
deleted file mode 100644 (file)
index e29930a..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-  <data>
-    <record id="html_view_form" model="ir.ui.view">
-      <field name="name">htmlform</field>
-      <field name="model">html.view</field>
-      <field name="type">form</field>
-      <field name="arch" type="xml">
-        <form string="Html Example">
-          <html>
-            <h2>This is Test Html Page </h2>
-            <table>
-              <tr>
-                <td>
-                  Name :
-                </td>
-                <td>
-                  <field name="name"/>
-                </td>
-                <td>
-                  Company :
-                </td>
-                <td>
-                  <field name="comp_id"/>
-                </td>
-              </tr>
-            </table>
-            <field name="bank_ids"/>
-          </html>
-        </form>
-      </field>
-    </record>
-    <record id="action_html_view_form" model="ir.actions.act_window">
-      <field name="name">Html Test</field>
-      <field name="type">ir.actions.act_window</field>
-      <field name="res_model">html.view</field>
-      <field name="view_type">form</field>
-    </record>
-    <menuitem action="action_html_view_form" id="html_form" parent="base.menu_sales" sequence="40"/>
-  </data>
-</openerp>
\ No newline at end of file
diff --git a/addons/html_view/i18n/ar.po b/addons/html_view/i18n/ar.po
deleted file mode 100644 (file)
index 56f21a8..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Arabic translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-09-26 21:06+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Arabic <ar@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "اسم"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "شركة"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "إختبار HTML"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "مثال HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "المصارف"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "عرض HTML"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    هذه وحدة برمجية إختبارية تظهر علامات html التي يمكن عرضها في XML.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/bg.po b/addons/html_view/i18n/bg.po
deleted file mode 100644 (file)
index f6488cb..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Bulgarian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-02-27 12:40+0000\n"
-"Last-Translator: Dimitar Markov <dimitar.markov@gmail.com>\n"
-"Language-Team: Bulgarian <bg@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Име"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Фирма"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html тест"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html пример"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Банки"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Html изглед"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Това е тест модул, който показва, HTML поддръжката на тагове в нормален "
-#~ "xml form view.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/ca.po b/addons/html_view/i18n/ca.po
deleted file mode 100644 (file)
index 907cf16..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Catalan translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-03-06 22:58+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Catalan <ca@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nom"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Companyia"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Prova html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Exemple html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancs"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.vista"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Aquest és el mòdul de proves que mostra el suport d'etiquetes html en "
-#~ "vistes formulari xml normals.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Vista html"
diff --git a/addons/html_view/i18n/cs.po b/addons/html_view/i18n/cs.po
deleted file mode 100644 (file)
index 3632fb2..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Czech translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-02-10 18:45+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Czech <cs@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Název"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Společnost"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Test HMTL"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Příklad HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banky"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Zobrazení HTML"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Toto je testovací modul který ukazuje podporu html tagů ve standartním "
-#~ "xml formovém zobrazení.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/da.po b/addons/html_view/i18n/da.po
deleted file mode 100644 (file)
index 563f822..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Danish translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-11-08 22:09+0000\n"
-"Last-Translator: OpenERP Danmark / Henning Dinsen <Unknown>\n"
-"Language-Team: Danish <da@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Navn"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Firma"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "HTML test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "HTML eksempel"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banker"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Dette er testmodulet, der viser understøttelse af HTML tags i en normal "
-#~ "XML formular.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "HTML visning"
diff --git a/addons/html_view/i18n/de.po b/addons/html_view/i18n/de.po
deleted file mode 100644 (file)
index 0b7154c..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# German translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-13 05:34+0000\n"
-"Last-Translator: silas <Unknown>\n"
-"Language-Team: German <de@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Bezeichnung"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Unternehmen"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Beispiel"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banken"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "HTML Ansicht"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Diese Anwendung zeigt einen Test der html tag Unterstützung in normalen "
-#~ "xml basierten Ansichten.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/el.po b/addons/html_view/i18n/el.po
deleted file mode 100644 (file)
index 72c77db..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Greek translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-28 19:40+0000\n"
-"Last-Translator: Dimitris Andavoglou <dimitrisand@gmail.com>\n"
-"Language-Team: Greek <el@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Όνομα"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Εταιρία"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "HTML Τέστ"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Παράδειγμα HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Τράπεζες"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr ""
-
-#~ msgid "Html View"
-#~ msgstr "HTML Προβολή"
diff --git a/addons/html_view/i18n/en_GB.po b/addons/html_view/i18n/en_GB.po
deleted file mode 100644 (file)
index 79c2215..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# English (United Kingdom) translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-08-25 11:58+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Name"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Company"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Example"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banks"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Html View"
diff --git a/addons/html_view/i18n/es.po b/addons/html_view/i18n/es.po
deleted file mode 100644 (file)
index a37a703..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-# Spanish translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2010-12-27 09:12+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: Spanish <es@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nombre"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Prueba html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Ejemplo html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Vista html"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Este es el módulo de pruebas que muestra el soporte de etiquetas html en "
-#~ "vistas formulario xml normales.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/es_CR.po b/addons/html_view/i18n/es_CR.po
deleted file mode 100644 (file)
index 9e4682c..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# Spanish translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2012-02-16 22:56+0000\n"
-"Last-Translator: Carlos Vásquez (CLEARCORP) "
-"<carlos.vasquez@clearcorp.co.cr>\n"
-"Language-Team: Spanish <es@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-17 05:01+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
-"Language: es\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nombre"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Prueba html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Ejemplo html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Vista html"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Este es el módulo de pruebas que muestra el soporte de etiquetas html en "
-#~ "vistas formulario xml normales.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/es_MX.po b/addons/html_view/i18n/es_MX.po
deleted file mode 100644 (file)
index 14b7fa6..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-# Spanish translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-11 11:15+0000\n"
-"PO-Revision-Date: 2010-12-27 09:12+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: Spanish <es@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-09-05 05:55+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nombre"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Prueba html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Ejemplo html"
-
-#. module: html_view
-#: model:ir.module.module,shortdesc:html_view.module_meta_information
-msgid "Html View"
-msgstr "Vista html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.module.module,description:html_view.module_meta_information
-msgid ""
-"\n"
-"    This is the test module which shows html tag supports in normal xml form "
-"view.\n"
-"    "
-msgstr ""
-"\n"
-"    Este es el módulo de pruebas que muestra el soporte de etiquetas html en "
-"vistas formulario xml normales.\n"
-"    "
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
diff --git a/addons/html_view/i18n/es_PY.po b/addons/html_view/i18n/es_PY.po
deleted file mode 100644 (file)
index f3fefb5..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Spanish (Paraguay) translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-03-07 02:06+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Spanish (Paraguay) <es_PY@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nombre:"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Prueba html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Ejemplo html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Este es el módulo de pruebas que muestra el soporte de etiquetas html en "
-#~ "vistas formulario xml normales.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Vista html"
diff --git a/addons/html_view/i18n/es_VE.po b/addons/html_view/i18n/es_VE.po
deleted file mode 100644 (file)
index 14b7fa6..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-# Spanish translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2011-01-11 11:15+0000\n"
-"PO-Revision-Date: 2010-12-27 09:12+0000\n"
-"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
-"<jesteve@zikzakmedia.com>\n"
-"Language-Team: Spanish <es@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-09-05 05:55+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nombre"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Prueba html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Ejemplo html"
-
-#. module: html_view
-#: model:ir.module.module,shortdesc:html_view.module_meta_information
-msgid "Html View"
-msgstr "Vista html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.module.module,description:html_view.module_meta_information
-msgid ""
-"\n"
-"    This is the test module which shows html tag supports in normal xml form "
-"view.\n"
-"    "
-msgstr ""
-"\n"
-"    Este es el módulo de pruebas que muestra el soporte de etiquetas html en "
-"vistas formulario xml normales.\n"
-"    "
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
diff --git a/addons/html_view/i18n/et.po b/addons/html_view/i18n/et.po
deleted file mode 100644 (file)
index 972305b..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-# Estonian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-10-11 17:49+0000\n"
-"Last-Translator: Aare Vesi <Unknown>\n"
-"Language-Team: Estonian <et@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nimi"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr ""
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr ""
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr ""
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Pangad"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr ""
diff --git a/addons/html_view/i18n/fi.po b/addons/html_view/i18n/fi.po
deleted file mode 100644 (file)
index f915e18..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Finnish translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-06-08 10:26+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Finnish <fi@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nimi"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Yritys"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "HTML testi"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "HTML malli"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Pankit"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr ""
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Tämä on testimoduuli joka näyttää html tagi joita tuetaan normaalissa "
-#~ "xml näkymässä\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "HTML näkymä"
diff --git a/addons/html_view/i18n/fr.po b/addons/html_view/i18n/fr.po
deleted file mode 100644 (file)
index 03348f4..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# French translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-13 11:34+0000\n"
-"Last-Translator: lholivier <olivier.lenoir@free.fr>\n"
-"Language-Team: French <fr@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nom"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Société"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Test HTML"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Exemple de HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banques"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Vue HTML"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Ceci est le module de test qui montre le support des balises html dans "
-#~ "les vues formulaire xml normales.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/gl.po b/addons/html_view/i18n/gl.po
deleted file mode 100644 (file)
index daabfb1..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Galician translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-02-08 10:15+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Galician <gl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Compañía"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Proba Html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Exemplo Html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Este é un módulo de probas que soporta-lo etiquetado HTML na vista XML "
-#~ "normal de formulario\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Vista Html"
diff --git a/addons/html_view/i18n/hr.po b/addons/html_view/i18n/hr.po
deleted file mode 100644 (file)
index a4750e3..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Croatian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-12-21 14:51+0000\n"
-"Last-Translator: Goran Kliska <gkliska@gmail.com>\n"
-"Language-Team: Croatian <hr@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Naziv"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Organizacija"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html primjer"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banke"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr ""
-
-#~ msgid "Html View"
-#~ msgstr "Html pogled"
diff --git a/addons/html_view/i18n/html_view.pot b/addons/html_view/i18n/html_view.pot
deleted file mode 100644 (file)
index 224c21e..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#      * html_view
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.1rc1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2012-02-08 00:36+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: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr ""
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr ""
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr ""
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr ""
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr ""
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr ""
-
diff --git a/addons/html_view/i18n/hu.po b/addons/html_view/i18n/hu.po
deleted file mode 100644 (file)
index 97644d4..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#    * html_view
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0dev\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-20 19:43+0000\n"
-"Last-Translator: NOVOTRADE RENDSZERHÁZ ( novotrade.hu ) "
-"<openerp@novotrade.hu>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Név"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Vállalat"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Teszt"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Minta"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bankok"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Ez a tesztmodul, megmutatja mely html tag-ket lehet felhasználni a "
-#~ "normál xml űrlap nézetben.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Html nézet"
diff --git a/addons/html_view/i18n/it.po b/addons/html_view/i18n/it.po
deleted file mode 100644 (file)
index 5feb20b..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Italian translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-13 09:06+0000\n"
-"Last-Translator: Nicola Riolini - Micronaet <Unknown>\n"
-"Language-Team: Italian <it@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Azienda"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Test HTML"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Esempio HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banche"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Vista HTML"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Questo è il modulo di test che mostra i tag HTML supportati nelle "
-#~ "normali viste / moduli XML.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/ja.po b/addons/html_view/i18n/ja.po
deleted file mode 100644 (file)
index 63bfe0d..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-# Japanese translation for openobject-addons
-# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2012-04-18 01:30+0000\n"
-"Last-Translator: Masaki Yamaya <Unknown>\n"
-"Language-Team: Japanese <ja@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-19 04:38+0000\n"
-"X-Generator: Launchpad (build 15108)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "氏名"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "会社"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "HTMLテスト"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "HTML例"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "銀行"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "HTMLビュー"
diff --git a/addons/html_view/i18n/mk.po b/addons/html_view/i18n/mk.po
deleted file mode 100644 (file)
index 86e20e0..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Macedonian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-09-14 08:15+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Macedonian <mk@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Име"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Компанија"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html тест"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html пример"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Банки"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Html преглед"
diff --git a/addons/html_view/i18n/mn.po b/addons/html_view/i18n/mn.po
deleted file mode 100644 (file)
index 74fdc77..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Mongolian translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2010-12-21 13:55+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
-"Language-Team: Mongolian <mn@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Нэр"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Компани"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "HTML Тест"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "HTML Жишээ"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Банкууд"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "HTML Харагдац"
diff --git a/addons/html_view/i18n/nb.po b/addons/html_view/i18n/nb.po
deleted file mode 100644 (file)
index b229891..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Norwegian Bokmal translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-19 20:38+0000\n"
-"Last-Translator: Terje Nauf <Unknown>\n"
-"Language-Team: Norwegian Bokmal <nb@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Navn"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Firma"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Eksempel"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banker"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.visning"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Dette er test modulen som viser html tag støtter i normal xml skjema "
-#~ "visning.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Html Visning"
diff --git a/addons/html_view/i18n/nl.po b/addons/html_view/i18n/nl.po
deleted file mode 100644 (file)
index 73b0b24..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Dutch translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-13 08:51+0000\n"
-"Last-Translator: Douwe Wullink (Dypalio) <Unknown>\n"
-"Language-Team: Dutch <nl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Naam"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Bedrijf"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html voorbeeld"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banken"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Html weergave"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Dit is de test module die html tag support laat zien een normale xml "
-#~ "formulier weergave.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/pt.po b/addons/html_view/i18n/pt.po
deleted file mode 100644 (file)
index 4d76339..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Portuguese translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2010-12-04 08:19+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
-"Language-Team: Portuguese <pt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Empresa"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Teste de HTML"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Exemplo de HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Vista de HTML"
diff --git a/addons/html_view/i18n/pt_BR.po b/addons/html_view/i18n/pt_BR.po
deleted file mode 100644 (file)
index 14b2851..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Brazilian Portuguese translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-17 11:41+0000\n"
-"Last-Translator: Emerson <Unknown>\n"
-"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nome"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Empresa"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Teste Html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Exemplo Html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bancos"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Visão Html"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Este é o módulo de teste que mostra as tags html suportadas na "
-#~ "visualização do formulário de xml normal.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/ro.po b/addons/html_view/i18n/ro.po
deleted file mode 100644 (file)
index 245b492..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Romanian translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2010-12-12 00:01+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
-"Language-Team: Romanian <ro@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Nume"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Companie"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Test Html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Exemplu Html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bănci"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Vizualizare Html"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Acesta este modulul de testare care arată suporturile etichetei html in "
-#~ "vizualizarea normală a formularului xml.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/ru.po b/addons/html_view/i18n/ru.po
deleted file mode 100644 (file)
index 41c8a3f..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Russian translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-05-01 17:43+0000\n"
-"Last-Translator: Alexandr Belugin <Unknown>\n"
-"Language-Team: Russian <ru@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Название"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Компания"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Проверка HTML"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Пример HTML"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Банки"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Просмотр HTML"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Это тестовый модуль, который показывает поддержку тегов HTML в "
-#~ "нормальном режиме формы XML.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/sk.po b/addons/html_view/i18n/sk.po
deleted file mode 100644 (file)
index 3a0bd64..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Slovak translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-02-11 10:30+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Slovak <sk@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Názov"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Spoločnosť"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html príklad"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banky"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Html zobrazenie"
diff --git a/addons/html_view/i18n/sl.po b/addons/html_view/i18n/sl.po
deleted file mode 100644 (file)
index ae9b37e..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Slovenian translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-25 11:13+0000\n"
-"Last-Translator: Simon Vidmar <Unknown>\n"
-"Language-Team: Slovenian <sl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Ime"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Podjetje"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Test html"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Primer html"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banke"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Pogled html"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    To je testni modul, ki prikazuje podporo html oznak v normalnem pogledu "
-#~ "xml obrazca.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/sr.po b/addons/html_view/i18n/sr.po
deleted file mode 100644 (file)
index c043b85..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Serbian translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2010-11-14 08:04+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
-"Language-Team: Serbian <sr@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Ime"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Preduzece"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Primer"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banke"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Html Pregled"
diff --git a/addons/html_view/i18n/sr@latin.po b/addons/html_view/i18n/sr@latin.po
deleted file mode 100644 (file)
index 4ad0c85..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Serbian translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-10-06 13:56+0000\n"
-"Last-Translator: Milan Milosevic <Unknown>\n"
-"Language-Team: Serbian <sr@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Naziv"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Preduzeće"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Primer"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banke"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid "Html View"
-#~ msgstr "Html Pregled"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    Ovo je test-modul koji pokazuje html podršku za tegove u uobičajenom xml "
-#~ "obliku pregleda.\n"
-#~ "    "
diff --git a/addons/html_view/i18n/sv.po b/addons/html_view/i18n/sv.po
deleted file mode 100644 (file)
index bfab62c..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Swedish translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2010-11-24 09:37+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
-"Language-Team: Swedish <sv@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Namn"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Företag"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html exempel"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Banker"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr ""
-
-#~ msgid "Html View"
-#~ msgstr "Html vy"
diff --git a/addons/html_view/i18n/tr.po b/addons/html_view/i18n/tr.po
deleted file mode 100644 (file)
index 4a2e42b..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Turkish translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-13 23:16+0000\n"
-"Last-Translator: Arif Aydogmus <arifaydogmus@gmail.com>\n"
-"Language-Team: Turkish <tr@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Ad"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Firma"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "Html Test"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "Html Örneği"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Bankalar"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.görünümü"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    XML formlarında HTML kodlarının görünürlüğünü test eden modül.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "Html Görünümü"
diff --git a/addons/html_view/i18n/vi.po b/addons/html_view/i18n/vi.po
deleted file mode 100644 (file)
index 7723236..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Vietnamese translation for openobject-addons
-# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-05-29 14:12+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Vietnamese <vi@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "Tên"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "Công ty"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "kiểm tra HTML"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "HTML mẫu"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "Các ngân hàng"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "html.view"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    đây là module thử nghiệm sẽ trình bày dưới dạng HTML thông qua XML.\n"
-#~ "    "
-
-#~ msgid "Html View"
-#~ msgstr "xem dưới dạng HTML"
diff --git a/addons/html_view/i18n/zh_CN.po b/addons/html_view/i18n/zh_CN.po
deleted file mode 100644 (file)
index a139b18..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Chinese (Simplified) translation for openobject-addons
-# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
-# This file is distributed under the same license as the openobject-addons package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: openobject-addons\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-02-08 00:36+0000\n"
-"PO-Revision-Date: 2011-01-12 06:21+0000\n"
-"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
-"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-09 07:07+0000\n"
-"X-Generator: Launchpad (build 14763)\n"
-
-#. module: html_view
-#: field:html.view,name:0
-msgid "Name"
-msgstr "名称"
-
-#. module: html_view
-#: field:html.view,comp_id:0
-msgid "Company"
-msgstr "公司"
-
-#. module: html_view
-#: model:ir.actions.act_window,name:html_view.action_html_view_form
-#: model:ir.ui.menu,name:html_view.html_form
-msgid "Html Test"
-msgstr "HTML 测试"
-
-#. module: html_view
-#: view:html.view:0
-msgid "Html Example"
-msgstr "HTML 示例"
-
-#. module: html_view
-#: field:html.view,bank_ids:0
-msgid "Banks"
-msgstr "存储"
-
-#. module: html_view
-#: model:ir.model,name:html_view.model_html_view
-msgid "html.view"
-msgstr "HTML 视图"
-
-#~ msgid "Html View"
-#~ msgstr "HTML 视图"
-
-#~ msgid ""
-#~ "\n"
-#~ "    This is the test module which shows html tag supports in normal xml form "
-#~ "view.\n"
-#~ "    "
-#~ msgstr ""
-#~ "\n"
-#~ "    本测试模块展示 普通 XML 表单视图如何支持 HTML 标签。\n"
-#~ "    "
diff --git a/addons/html_view/security/ir.model.access.csv b/addons/html_view/security/ir.model.access.csv
deleted file mode 100644 (file)
index 4370c07..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink\r
-access_html_view,html.view,model_html_view,base.group_system,1,0,0,0\r
-access_html_view_sale_user,html.view user,model_html_view,base.group_sale_salesman,1,1,1,0\r
-access_html_view_sale_manager,html.view manager,model_html_view,base.group_sale_manager,1,0,0,0\r