=== modified file 'bin/addons/__init__.py'
--- bin/addons/__init__.py	2012-01-15 11:33:42 +0000
+++ bin/addons/__init__.py	2012-05-09 12:37:21 +0000
@@ -50,6 +50,15 @@
 
 logger = netsvc.Logger()
 
+### OpenUpgrade
+def table_exists(cr, table):
+    """ Check whether a certain table or view exists """
+    cr.execute(
+        'SELECT count(relname) FROM pg_class WHERE relname = %s',
+        (table,))
+    return cr.fetchone()[0] == 1
+### End of OpenUpgrade
+
 _ad = os.path.abspath(opj(tools.ustr(tools.config['root_path']), u'addons'))     # default addons path (base)
 ad_paths= map(lambda m: os.path.abspath(tools.ustr(m.strip())), tools.config['addons_path'].split(','))
 
@@ -698,7 +707,7 @@
                     tools.convert_xml_import(cr, module_name, file, id_map, mode, noupdate)
             finally:
                 file.close()
-
+                
     local_registry = {}
     def get_repr(properties, type='val'):
         """ 
@@ -730,24 +739,12 @@
         if isinstance(model, osv.osv.osv_memory):
             return
 
+        model_registry = local_registry.setdefault(
+                model._name, {})
         if model._inherits:
-            properties = { 
-                'model': model._name,
-                'field': '_inherits',
-                'type': '',
-                'isfunction': '',
-                'relation': '',
-                'required': '',
-                'selection_keys': '',
-                'req_default': '',
-                'inherits': unicode(model._inherits),
-                }
-            local_registry[get_repr(properties, 'key')] = get_repr(
-                properties)
-        for k,v  in model._columns.items():
-            properties = { 
-                'model': model._name,
-                'field': k,
+            model_registry['_inherits'] = {'_inherits': unicode(model._inherits)}
+        for k, v in model._columns.items():
+            properties = { 
                 'type': v._type,
                 'isfunction': (
                     isinstance(v, osv.fields.function) and 'function' or ''),
@@ -773,49 +770,70 @@
                     properties['req_default'] = 'function'
                 else:
                     properties['req_default'] = unicode(model._defaults[k])
-            local_registry[get_repr(properties, 'key')] = get_repr(
-                properties)
-
-    def compare_registries():
-        """
-        OpenUpgrade: Store the characteristics of the BaseModel and its fields
-        in the local registry, so that we can compare changes with the
-        main registry
-        """
-        for key in sorted(local_registry.keys()):
-            if key in registry:
-                if registry[key] != local_registry[key]:
-                    logger.notifyChannel(
-                        'OpenUpgrade_FIELD', netsvc.LOG_INFO,
-                        '"%s","modify",%s,%s' % (
-                            package.name, key, local_registry[key]))
-            else:
-                logger.notifyChannel(
-                    'OpenUpgrade_FIELD', netsvc.LOG_INFO,
-                    '"%s","create",%s,%s' % (
-                    package.name, key, local_registry[key]))
-            registry[key] = local_registry[key]
-
-    def log_xmlids(cr, package_name):
-        """
-        OpenUpgrade: Log all XMLID's owned by this package.
-        TODO: other modules can really easily add items that 'belong' to
-        another module. Needs deeper digging in the load_data methods.
-
-        Need to pass the cursor, as the one passed to the upper method is
-        closed by now (or it is in OpenERP 6.1).
-        """
-
-        cr.execute(
-            'select model, name from ir_model_data where module=%s '
-            'order by model, name', (package_name,))
-        for res in cr.fetchall():
-            xmlid_repr = ','.join([
-                    "\"" + string.replace(property, '\"', '\'') + "\""
-                    for property in (res[0], res[1], package_name)
-                    ])
-            logger.notifyChannel(
-                'OpenUpgrade_XMLID', netsvc.LOG_INFO, xmlid_repr)
+            for key, value in properties.items():
+                if value:
+                    model_registry.setdefault(k, {})[key] = value
+
+    def get_record_id(cr, module, model, field, mode):
+        """
+        OpenUpgrade: get or create the id from the record table matching
+        the key parameter values
+        """
+        cr.execute(
+            "SELECT id FROM openupgrade_record "
+            "WHERE module = %s AND model = %s AND "
+            "field = %s AND mode = %s AND type = %s",
+            (module, model, field, mode, 'field')
+            )
+        record = cr.fetchone()
+        if record:
+            return record[0]
+        cr.execute(
+            "INSERT INTO openupgrade_record "
+            "(module, model, field, mode, type) "
+            "VALUES (%s, %s, %s, %s, %s)",
+            (module, model, field, mode, 'field')
+            )
+        cr.execute(
+            "SELECT id FROM openupgrade_record "
+            "WHERE module = %s AND model = %s AND "
+            "field = %s AND mode = %s AND type = %s",
+            (module, model, field, mode, 'field')
+            )
+        return cr.fetchone()[0]
+        
+    def compare_registries(cr, module):
+        """
+        OpenUpgrade: Compare the local registry with the global registry,
+        log any differences and merge the local registry with
+        the global one.
+        """
+        if not table_exists(cr, 'openupgrade_record'):
+            return
+        for model, fields in local_registry.items():
+            registry.setdefault(model, {})
+            for field, attributes in fields.items():
+                old_field = registry[model].setdefault(field, {})
+                mode = old_field and 'modify' or 'create'
+                record_id = False
+                for key, value in attributes.items():
+                    if key not in old_field or old_field[key] != value:
+                        if not record_id:
+                            record_id = get_record_id(
+                                cr, module, model, field, mode)
+                        cr.execute(
+                            "SELECT id FROM openupgrade_attribute "
+                            "WHERE name = %s AND value = %s AND "
+                            "record_id = %s",
+                            (key, value, record_id)
+                            )
+                        if not cr.fetchone():
+                            cr.execute(
+                                "INSERT INTO openupgrade_attribute "
+                                "(name, value, record_id) VALUES (%s, %s, %s)",
+                                (key, value, record_id)
+                                )
+                        old_field[key] = value
 
     # **kwargs is passed directly to convert_xml_import
     if not status:
@@ -839,11 +857,10 @@
 
         if hasattr(package, 'init') or hasattr(package, 'update') or package.state in ('to install', 'to upgrade'):
             # OpenUpgrade: add this module's models to the registry
-            logger.notifyChannel('OpenUpgrade_FIELD', netsvc.LOG_INFO, 'module %s' % (package.name))
             local_registry = {}
-            for model in osv.orm.orm:
+            for model in modules:
                 log_model(model)
-            compare_registries()
+            compare_registries(cr, package.name)
 
             init_module_objects(cr, package.name, modules)
         cr.commit()
@@ -898,7 +915,7 @@
                 modobj.write(cr, 1, [mid], {'state': 'installed', 'latest_version': ver})
                 cr.commit()
                 # Update translations for all installed languages
-                modobj.update_translations(cr, 1, [mid], None)
+                modobj.update_translations(cr, 1, [mid], None, {'overwrite': True})
                 cr.commit()
 
             package.state = 'installed'
@@ -907,7 +924,6 @@
                     delattr(package, kind)
 
         statusi += 1
-        log_xmlids(cr, package.name) # OpenUpgrade
     cr.commit()
 
     return processed_modules

=== modified file 'bin/addons/base/base_data.xml'
--- bin/addons/base/base_data.xml	2011-03-16 12:17:33 +0000
+++ bin/addons/base/base_data.xml	2012-05-09 12:37:21 +0000
@@ -1330,7 +1330,7 @@
 
         <record id="INR" model="res.currency">
             <field name="name">INR</field>
-            <field name="symbol">Rs</field>
+            <field name="symbol">₹</field>
             <field name="rounding">0.01</field>
             <field name="accuracy">4</field>
             <field name="company_id" ref="main_company"/>
@@ -1617,5 +1617,71 @@
             <field name="currency_id" ref="MUR"/>
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
+
+        <record id="XOF" model="res.currency">
+            <field name="name">XOF</field>
+            <field name="symbol">CFA</field>
+            <field name="rounding">1</field>
+            <field name="accuracy">4</field>
+            <field name="company_id" ref="main_company"/>
+        </record>
+        <record id="rateXOF" model="res.currency.rate">
+           <field name="rate">655.957</field>
+           <field name="currency_id" ref="XOF"/>
+           <field eval="time.strftime('%Y-01-01')" name="name"/>
+       </record>
+
+        <record id="XAF" model="res.currency">
+            <field name="name">XAF</field>
+            <field name="symbol">FCFA</field>
+            <field name="rounding">1</field>
+            <field name="accuracy">4</field>
+            <field name="company_id" ref="main_company"/>
+        </record>
+        <record id="rateXAF" model="res.currency.rate">
+           <field name="rate">655.957</field>
+           <field name="currency_id" ref="XAF"/>
+           <field eval="time.strftime('%Y-01-01')" name="name"/>
+       </record>
+
+        <record id="UGX" model="res.currency">
+            <field name="name">UGX</field>
+            <field name="symbol">USh</field>
+            <field name="rounding">1</field>
+            <field name="accuracy">4</field>
+            <field name="company_id" ref="main_company"/>
+        </record>
+        <record id="rateUGX" model="res.currency.rate">
+            <field name="rate">3401.91388</field>
+            <field name="currency_id" ref="UGX"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
+
+        <record id="HNL" model="res.currency">
+            <field name="name">HNL</field>
+            <field name="symbol">L</field>
+            <field name="rounding">0.01</field>
+            <field name="accuracy">4</field>
+            <field name="company_id" ref="main_company"/>
+        </record>
+        <record id="rateHNL" model="res.currency.rate">
+            <field name="rate">25</field>
+            <field name="currency_id" ref="HNL"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
+
+        <!-- Chilean peso -->
+        <record id="CLP" model="res.currency">
+            <field name="name">CLP</field>
+            <field name="symbol">$</field>
+            <field name="rounding">0.01</field>
+            <field name="accuracy">4</field>
+            <field name="company_id" ref="main_company"/>
+        </record>
+        <record id="rateCLP" model="res.currency.rate">
+            <field name="rate">710</field>
+            <field name="currency_id" ref="CLP"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
     </data>
 </openerp>

=== added file 'bin/addons/base/i18n/ab.po'
--- bin/addons/base/i18n/ab.po	1970-01-01 00:00:00 +0000
+++ bin/addons/base/i18n/ab.po	2012-05-09 12:37:21 +0000
@@ -0,0 +1,9246 @@
+# Abkhazian translation for openobject-server
+# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
+# This file is distributed under the same license as the openobject-server package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-server\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-01-11 11:14+0000\n"
+"PO-Revision-Date: 2012-02-27 08:03+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Abkhazian <ab@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-03-07 05:41+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
+
+#. module: base
+#: view:ir.filters:0
+#: field:ir.model.fields,domain:0
+#: field:ir.rule,domain:0
+#: field:ir.rule,domain_force:0
+#: field:res.partner.title,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sh
+msgid "Saint Helena"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "Other Configuration"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "DateTime"
+msgstr ""
+
+#. module: base
+#: code:addons/fields.py:582
+#, python-format
+msgid ""
+"The second argument of the many2many field %s must be a SQL table !You used "
+"%s, which is not a valid SQL table name."
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+#: field:ir.values,meta_unpickle:0
+msgid "Metadata"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view,arch:0
+#: field:ir.ui.view.custom,arch:0
+msgid "View Architecture"
+msgstr ""
+
+#. module: base
+#: field:base.language.import,code:0
+msgid "Code (eg:en__US)"
+msgstr ""
+
+#. module: base
+#: view:workflow:0
+#: view:workflow.activity:0
+#: field:workflow.activity,wkf_id:0
+#: field:workflow.instance,wkf_id:0
+#: field:workflow.transition,wkf_id:0
+#: field:workflow.workitem,wkf_id:0
+msgid "Workflow"
+msgstr ""
+
+#. module: base
+#: view:partner.sms.send:0
+msgid "SMS - Gateway: clickatell"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Hungarian / Magyar"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Not Searchable"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (VE) / Español (VE)"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,wkf_model_id:0
+msgid "Workflow On"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,display_menu_tip:0
+msgid "Display Menu Tips"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Views"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:532
+#, python-format
+msgid ""
+"You can not write in this document (%s) ! Be sure your user belongs to one "
+"of these groups: %s."
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,domain:0
+msgid ""
+"The optional domain to restrict possible values for relationship fields, "
+"specified as a Python expression defining a list of triplets. For example: "
+"[('color','=','red')]"
+msgstr ""
+
+#. module: base
+#: field:res.partner,ref:0
+msgid "Reference"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,target:0
+msgid "Target Window"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:558
+#, python-format
+msgid "Warning!"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:344
+#, python-format
+msgid ""
+"Properties of base fields cannot be altered in this manner! Please modify "
+"them through Python code, preferably through a custom addon!"
+msgstr ""
+
+#. module: base
+#: code:addons/osv.py:129
+#, python-format
+msgid "Constraint Error"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_custom
+msgid "ir.ui.view.custom"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sz
+msgid "Swaziland"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:4206
+#, python-format
+msgid "created."
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_woodsuppliers0
+msgid "Wood Suppliers"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:390
+#, python-format
+msgid ""
+"Some installed modules depend on the module you plan to Uninstall :\n"
+" %s"
+msgstr ""
+
+#. module: base
+#: field:ir.sequence,number_increment:0
+msgid "Increment Number"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_company_tree
+#: model:ir.ui.menu,name:base.menu_action_res_company_tree
+msgid "Company's Structure"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Inuktitut / ᐃᓄᒃᑎᑐᑦ"
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+msgid "Search Partner"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_user.py:132
+#, python-format
+msgid "\"smtp_server\" needs to be set to send mails to users"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_export_language.py:60
+#, python-format
+msgid "new"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,multi:0
+msgid "On multiple doc."
+msgstr ""
+
+#. module: base
+#: field:ir.module.category,module_nr:0
+msgid "Number of Modules"
+msgstr ""
+
+#. module: base
+#: help:multi_company.default,company_dest_id:0
+msgid "Company to store the current record"
+msgstr ""
+
+#. module: base
+#: field:res.partner.bank.type.field,size:0
+msgid "Max. Size"
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
+#: field:res.partner.address,name:0
+msgid "Contact Name"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_export_language.py:56
+#, python-format
+msgid ""
+"Save this document to a %s file and edit it with a specific software or a "
+"text editor. The file encoding is UTF-8."
+msgstr ""
+
+#. module: base
+#: sql_constraint:res.lang:0
+msgid "The name of the language must be unique !"
+msgstr ""
+
+#. module: base
+#: selection:res.request,state:0
+msgid "active"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.wizard,wiz_name:0
+msgid "Wizard Name"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2526
+#, python-format
+msgid "Invalid group_by"
+msgstr ""
+
+#. module: base
+#: field:res.partner,credit_limit:0
+msgid "Credit Limit"
+msgstr ""
+
+#. module: base
+#: field:ir.model.data,date_update:0
+msgid "Update Date"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Owner"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,src_model:0
+msgid "Source Object"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+msgid "Config Wizard Steps"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_sc
+msgid "ir.ui.view_sc"
+msgstr ""
+
+#. module: base
+#: field:res.widget.user,widget_id:0
+#: field:res.widget.wizard,widgets_list:0
+msgid "Widget"
+msgstr ""
+
+#. module: base
+#: view:ir.model.access:0
+#: field:ir.model.access,group_id:0
+msgid "Group"
+msgstr ""
+
+#. module: base
+#: field:ir.exports.line,name:0
+#: field:ir.translation,name:0
+#: field:res.partner.bank.type.field,name:0
+msgid "Field Name"
+msgstr ""
+
+#. module: base
+#: wizard_view:server.action.create,init:0
+#: wizard_field:server.action.create,init,type:0
+msgid "Select Action Type"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tv
+msgid "Tuvalu"
+msgstr ""
+
+#. module: base
+#: selection:ir.model,state:0
+msgid "Custom Object"
+msgstr ""
+
+#. module: base
+#: field:res.lang,date_format:0
+msgid "Date Format"
+msgstr ""
+
+#. module: base
+#: field:res.bank,email:0
+#: field:res.partner.address,email:0
+msgid "E-Mail"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.an
+msgid "Netherlands Antilles"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:396
+#, python-format
+msgid ""
+"You can not remove the admin user as it is used internally for resources "
+"created by OpenERP (updates, module installation, ...)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gf
+msgid "French Guyana"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Greek / Ελληνικά"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Bosnian / bosanski jezik"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.report.xml,attachment_use:0
+msgid ""
+"If you check this, then the second time the user prints with same attachment "
+"name, it returns the previous report."
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:904
+#, python-format
+msgid "The read method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: help:res.lang,iso_code:0
+msgid "This ISO code is the name of po files to use for translations"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "Your system will be updated."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.todo,note:0
+#: selection:ir.property,type:0
+msgid "Text"
+msgstr ""
+
+#. module: base
+#: field:res.country,name:0
+msgid "Country Name"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.co
+msgid "Colombia"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule Upgrade"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1390
+#, python-format
+msgid "Key/value '%s' not found in selection field '%s'"
+msgstr ""
+
+#. module: base
+#: help:res.country,code:0
+msgid ""
+"The ISO country code in two chars.\n"
+"You can use this field for quick search."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pw
+msgid "Palau"
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+msgid "Sales & Purchases"
+msgstr ""
+
+#. module: base
+#: view:ir.translation:0
+msgid "Untranslated"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,context:0
+msgid ""
+"Context dictionary as Python expression, empty by default (Default: {})"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_wizard
+#: view:ir.actions.wizard:0
+#: model:ir.ui.menu,name:base.menu_ir_action_wizard
+msgid "Wizards"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_miscellaneoussuppliers0
+msgid "Miscellaneous Suppliers"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:287
+#, python-format
+msgid "Custom fields must have a name that starts with 'x_' !"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,action_id:0
+msgid "Select the Action Window, Report, Wizard to be executed."
+msgstr ""
+
+#. module: base
+#: view:res.config.users:0
+msgid "New User"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid "Export done"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+#: field:ir.model,name:0
+msgid "Model Description"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,src_model:0
+msgid ""
+"Optional model name of the objects on which this action should be visible"
+msgstr ""
+
+#. module: base
+#: field:workflow.transition,trigger_expr_id:0
+msgid "Trigger Expression"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.jo
+msgid "Jordan"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Certified"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.er
+msgid "Eritrea"
+msgstr ""
+
+#. module: base
+#: view:res.config:0
+#: view:res.config.installer:0
+msgid "description"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
+msgid "Automated Actions"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_actions
+msgid "ir.actions.actions"
+msgstr ""
+
+#. module: base
+#: view:partner.wizard.ean.check:0
+msgid "Want to check Ean ? "
+msgstr ""
+
+#. module: base
+#: field:ir.values,key2:0
+msgid "Event Type"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid ""
+"OpenERP translations (core, modules, clients) are managed through "
+"Launchpad.net, our open source project management facility. We use their "
+"online interface to synchronize all translations efforts."
+msgstr ""
+
+#. module: base
+#: field:res.partner,title:0
+msgid "Partner Form"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Swedish / svenska"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.rs
+msgid "Serbia"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard View"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kh
+msgid "Cambodia, Kingdom of"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_sequence_form
+#: view:ir.sequence:0
+#: model:ir.ui.menu,name:base.menu_ir_sequence_form
+msgid "Sequences"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_language_import
+msgid "Language Import"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_config_users
+msgid "res.config.users"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Albanian / Shqip"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_crm_config_opportunity
+msgid "Opportunities"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_language_export
+msgid "base.language.export"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pg
+msgid "Papua New Guinea"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.report.xml,report_type:0
+msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..."
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_4
+msgid "Basic Partner"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid ","
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+msgid "My Partners"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "XML Report"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.es
+msgid "Spain"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_export
+msgid "Import / Export"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,domain:0
+msgid ""
+"Optional domain filtering of the destination data, as a Python expression"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade
+#: model:ir.model,name:base.model_base_module_upgrade
+msgid "Module Upgrade"
+msgstr ""
+
+#. module: base
+#: view:res.config.users:0
+msgid ""
+"Groups are used to define access rights on objects and the visibility of "
+"screens and menus"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (UY) / Español (UY)"
+msgstr ""
+
+#. module: base
+#: field:res.partner,mobile:0
+#: field:res.partner.address,mobile:0
+msgid "Mobile"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.om
+msgid "Oman"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_payterm_form
+#: model:ir.model,name:base.model_res_payterm
+msgid "Payment term"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nu
+msgid "Niue"
+msgstr ""
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Work Days"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Other OSI Approved Licence"
+msgstr ""
+
+#. module: base
+#: help:res.config.users,context_lang:0
+#: help:res.users,context_lang:0
+msgid ""
+"Sets the language for the user's user interface, when UI translations are "
+"available"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1043
+#, python-format
+msgid "The unlink method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_menu_create
+#: view:wizard.ir.model.menu.create:0
+msgid "Create Menu"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.in
+msgid "India"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_request_link-act
+#: model:ir.ui.menu,name:base.menu_res_request_link_act
+msgid "Request Reference Types"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "client_action_multi, client_action_relate"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ad
+msgid "Andorra, Principality of"
+msgstr ""
+
+#. module: base
+#: field:res.partner.category,child_ids:0
+msgid "Child Categories"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_config_parameter
+msgid "ir.config_parameter"
+msgstr ""
+
+#. module: base
+#: selection:base.language.export,format:0
+msgid "TGZ Archive"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%B - Full month name."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.todo,type:0
+#: view:ir.attachment:0
+#: field:ir.attachment,type:0
+#: field:ir.model,state:0
+#: field:ir.model.fields,state:0
+#: field:ir.property,type:0
+#: field:ir.server.object.lines,type:0
+#: field:ir.translation,type:0
+#: view:ir.ui.view:0
+#: view:ir.values:0
+#: field:ir.values,key:0
+#: view:res.partner:0
+#: view:res.partner.address:0
+msgid "Type"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:398
+#, python-format
+msgid ""
+"Language with code \"%s\" is not defined in your system !\n"
+"Define it through the Administration menu."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gu
+msgid "Guam (USA)"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_hr_project
+msgid "Human Resources Dashboard"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:558
+#, python-format
+msgid "Setting empty passwords is not allowed for security reasons!"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.server,state:0
+#: selection:workflow.activity,kind:0
+msgid "Dummy"
+msgstr ""
+
+#. module: base
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ky
+msgid "Cayman Islands"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kr
+msgid "South Korea"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_transition_form
+#: model:ir.ui.menu,name:base.menu_workflow_transition
+#: view:workflow.activity:0
+msgid "Transitions"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:4615
+#, python-format
+msgid "Record #%d of %s not found, cannot copy!"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,contributors:0
+msgid "Contributors"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "Char"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form
+#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract
+msgid "Contracts"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (AR) / Español (AR)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ug
+msgid "Uganda"
+msgstr ""
+
+#. module: base
+#: field:ir.model.access,perm_unlink:0
+msgid "Delete Access"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ne
+msgid "Niger"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Chinese (HK)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ba
+msgid "Bosnia-Herzegovina"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid ""
+"To improve or expand the official translations, you should use directly "
+"Lauchpad's web interface (Rosetta). If you need to perform mass translation, "
+"Launchpad also allows uploading full .po files at once"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (GT) / Español (GT)"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid ""
+"%W - Week number of the year (Monday as the first day of the week) as a "
+"decimal number [00,53]. All days in a new year preceding the first Monday "
+"are considered to be in week 0."
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,website:0
+#: field:res.company,website:0
+#: field:res.partner,website:0
+msgid "Website"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gs
+msgid "S. Georgia & S. Sandwich Isls."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.url,url:0
+msgid "Action URL"
+msgstr ""
+
+#. module: base
+#: field:base.module.import,module_name:0
+msgid "Module Name"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mh
+msgid "Marshall Islands"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:368
+#, python-format
+msgid "Changing the model of a field is forbidden!"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ht
+msgid "Haiti"
+msgstr ""
+
+#. module: base
+#: view:ir.ui.view:0
+#: selection:ir.ui.view,type:0
+msgid "Search"
+msgstr ""
+
+#. module: base
+#: code:addons/osv.py:132
+#, python-format
+msgid ""
+"The operation cannot be completed, probably due to the following:\n"
+"- deletion: you may be trying to delete a record while other records still "
+"reference it\n"
+"- creation/update: a mandatory field is not correctly set"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid ""
+"2. Group-specific rules are combined together with a logical AND operator"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:222
+#, python-format
+msgid "Operation Canceled"
+msgstr ""
+
+#. module: base
+#: help:base.language.export,lang:0
+msgid "To export a new language, do not select a language."
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+msgid "Request Date"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_hr_dasboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_purchase_root
+msgid "Purchases"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.md
+msgid "Moldavia"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Features"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+#: report:ir.module.reference.graph:0
+msgid "Version"
+msgstr ""
+
+#. module: base
+#: view:ir.model.access:0
+#: field:ir.model.access,perm_read:0
+#: view:ir.rule:0
+msgid "Read Access"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports
+msgid "ir.exports"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_update_translations.py:38
+#, python-format
+msgid "No language with code \"%s\" exists"
+msgstr ""
+
+#. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
+#: code:addons/base/publisher_warranty/publisher_warranty.py:163
+#, python-format
+msgid "Error during communication with the publisher warranty server."
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,email:0
+msgid ""
+"Provides the fields that will be used to fetch the email address, e.g. when "
+"you select the invoice, then `object.invoice_address_id.email` is the field "
+"which gives the correct address"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%Y - Year with century."
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "-"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract.wizard:0
+msgid ""
+"This wizard helps you register a publisher warranty contract in your OpenERP "
+"system. After the contract has been registered, you will be able to send "
+"issues directly to OpenERP."
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1744
+#, python-format
+msgid "The search method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: view:wizard.ir.model.menu.create:0
+msgid "Create _Menu"
+msgstr ""
+
+#. module: base
+#: field:res.payterm,name:0
+msgid "Payment Term (short name)"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_bank
+#: view:res.bank:0
+#: field:res.partner.bank,bank:0
+msgid "Bank"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports_line
+msgid "ir.exports.line"
+msgstr ""
+
+#. module: base
+#: help:base.language.install,overwrite:0
+msgid ""
+"If you check this box, your customized translations will be overwritten and "
+"replaced by the official ones."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_rml:0
+msgid "Main report file path"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_report_xml
+#: field:ir.module.module,reports_by_module:0
+#: model:ir.ui.menu,name:base.menu_ir_action_report_xml
+msgid "Reports"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window.view,multi:0
+#: help:ir.actions.report.xml,multi:0
+msgid ""
+"If set to true, the action will not be displayed on the right toolbar of a "
+"form view."
+msgstr ""
+
+#. module: base
+#: field:workflow,on_create:0
+msgid "On Create"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:681
+#, python-format
+msgid ""
+"'%s' contains too many dots. XML ids should not contain dots ! These are "
+"used to refer to other modules data, as in module.reference_id"
+msgstr ""
+
+#. module: base
+#: field:partner.sms.send,user:0
+#: field:res.users,login:0
+msgid "Login"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid ""
+"Access all the fields related to the current object using expressions, i.e. "
+"object.partner_id.name "
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_country_state
+msgid "Country state"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "Float"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_link
+msgid "res.request.link"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.wizard,name:0
+msgid "Wizard Info"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+#: model:ir.actions.act_window,name:base.action_wizard_lang_export
+#: model:ir.ui.menu,name:base.menu_wizard_lang_export
+msgid "Export Translation"
+msgstr ""
+
+#. module: base
+#: help:res.log,secondary:0
+msgid ""
+"Do not display this log if it belongs to the same object the user is working "
+"on"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tp
+msgid "East Timor"
+msgstr ""
+
+#. module: base
+#: model:res.company,follow_up_msg:base.main_company
+msgid ""
+"Date : %(date)s\n"
+"\n"
+"Dear %(partner_name)s,\n"
+"\n"
+"Please find in attachment a reminder of all your unpaid invoices, for a "
+"total amount due of:\n"
+"\n"
+"%(followup_amount).2f %(company_currency)s\n"
+"\n"
+"Thanks,\n"
+"--\n"
+"%(user_signature)s\n"
+"%(company_name)s"
+msgstr ""
+
+#. module: base
+#: field:res.currency,accuracy:0
+msgid "Computational Accuracy"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Sinhalese / සිංහල"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line
+msgid "wizard.ir.model.menu.create.line"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,res_id:0
+msgid "Attached ID"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day: %(day)s"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mv
+msgid "Maldives"
+msgstr ""
+
+#. module: base
+#: help:ir.values,res_id:0
+msgid "Keep 0 if the action must appear on all resources."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule
+msgid "ir.rule"
+msgstr ""
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Days"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,condition:0
+msgid ""
+"Condition that is to be tested before action is executed, e.g. "
+"object.list_price > object.cost_price"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
+#, python-format
+msgid " (copy)"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "7.  %H:%M:%S      ==> 18:25:20"
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+#: view:res.partner.category:0
+#: field:res.partner.category,partner_ids:0
+msgid "Partners"
+msgstr ""
+
+#. module: base
+#: field:res.partner.category,parent_left:0
+msgid "Left parent"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_widget_act_window
+#: model:ir.ui.menu,name:base.menu_res_widget_act_window
+msgid "Homepage Widgets"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,message:0
+msgid ""
+"Specify the message. You can use the fields from the object. e.g. `Dear [[ "
+"object.partner_id.name ]]`"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,res_model:0
+msgid "Attached Model"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid "Domain Setup"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,trigger_name:0
+msgid "Trigger Name"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_access
+msgid "ir.model.access"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
+#: field:res.request,priority:0
+#: field:res.request.link,priority:0
+msgid "Priority"
+msgstr ""
+
+#. module: base
+#: field:workflow.transition,act_from:0
+msgid "Source Activity"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Legend (for prefix, suffix)"
+msgstr ""
+
+#. module: base
+#: selection:ir.server.object.lines,type:0
+msgid "Formula"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:396
+#, python-format
+msgid "Can not remove root user!"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mw
+msgid "Malawi"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
+#, python-format
+msgid "%s (copy)"
+msgstr ""
+
+#. module: base
+#: field:res.partner.address,type:0
+msgid "Address Type"
+msgstr ""
+
+#. module: base
+#: view:ir.ui.menu:0
+msgid "Full Path"
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+msgid "References"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid ""
+"%U - Week number of the year (Sunday as the first day of the week) as a "
+"decimal number [00,53]. All days in a new year preceding the first Sunday "
+"are considered to be in week 0."
+msgstr ""
+
+#. module: base
+#: view:ir.ui.view:0
+msgid "Advanced"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.fi
+msgid "Finland"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: selection:ir.actions.act_window.view,view_mode:0
+#: view:ir.ui.view:0
+#: selection:ir.ui.view,type:0
+#: selection:wizard.ir.model.menu.create.line,view_type:0
+msgid "Tree"
+msgstr ""
+
+#. module: base
+#: help:res.config.users,password:0
+msgid ""
+"Keep empty if you don't want the user to be able to connect on the system."
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Create / Write / Copy"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid "https://help.launchpad.net/Translations"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,view_mode:0
+msgid "View Mode"
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid ""
+"When using CSV format, please also check that the first line of your file is "
+"one of the following:"
+msgstr ""
+
+#. module: base
+#: code:addons/fields.py:114
+#, python-format
+msgid "Not implemented search_memory method !"
+msgstr ""
+
+#. module: base
+#: view:res.log:0
+msgid "Logs"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish / Español"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Korean (KP) / 한국어 (KP)"
+msgstr ""
+
+#. module: base
+#: view:base.module.update:0
+msgid ""
+"This wizard will scan all module repositories on the server side to detect "
+"newly added modules as well as any change to existing modules."
+msgstr ""
+
+#. module: base
+#: field:res.company,logo:0
+msgid "Logo"
+msgstr ""
+
+#. module: base
+#: view:res.partner.address:0
+msgid "Search Contact"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Uninstall (beta)"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window,target:0
+#: selection:ir.actions.url,target:0
+msgid "New Window"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bs
+msgid "Bahamas"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_partner.py:273
+#, python-format
+msgid ""
+"Couldn't generate the next id because some partners have an alphabetic id !"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attachment"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ie
+msgid "Ireland"
+msgstr ""
+
+#. module: base
+#: field:base.module.update,update:0
+msgid "Number of modules updated"
+msgstr ""
+
+#. module: base
+#: code:addons/fields.py:100
+#, python-format
+msgid "Not implemented set_memory method !"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Workflow Activity"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid ""
+"Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND "
+"GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_ui_view
+msgid ""
+"Views allows you to personalize each view of OpenERP. You can add new "
+"fields, move fields, rename them or delete the ones that you do not need."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,groups_id:0
+#: model:ir.actions.act_window,name:base.action_res_groups
+#: view:ir.actions.report.xml:0
+#: field:ir.actions.report.xml,groups_id:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,groups_id:0
+#: field:ir.actions.wizard,groups_id:0
+#: view:ir.model:0
+#: field:ir.model.fields,groups:0
+#: field:ir.rule,groups:0
+#: view:ir.ui.menu:0
+#: field:ir.ui.menu,groups_id:0
+#: model:ir.ui.menu,name:base.menu_action_res_groups
+#: view:res.groups:0
+#: field:res.users,groups_id:0
+msgid "Groups"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (CL) / Español (CL)"
+msgstr ""
+
+#. module: base
+#: view:res.config.users:0
+msgid ""
+"Create additional users and assign them groups that will allow them to have "
+"access to selected functionalities within the system. Click on 'Done' if you "
+"do not wish to add more users at this stage, you can always do this later."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bz
+msgid "Belize"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ge
+msgid "Georgia"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pl
+msgid "Poland"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,view_mode:0
+msgid ""
+"Comma-separated list of allowed view modes, such as 'form', 'tree', "
+"'calendar', etc. (Default: tree,form)"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3615
+#, python-format
+msgid "A document was modified since you last viewed it (%s:%d)"
+msgstr ""
+
+#. module: base
+#: view:workflow:0
+msgid "Workflow Editor"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be removed"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_sequence
+msgid "ir.sequence"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,expression:0
+msgid ""
+"Enter the field/expression that will return the list. E.g. select the sale "
+"order in Object, and you can have loop on the sales order line. Expression = "
+"`object.order_line`."
+msgstr ""
+
+#. module: base
+#: field:ir.property,fields_id:0
+#: selection:ir.translation,type:0
+#: field:multi_company.default,field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid "Groups (no group = global)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.fo
+msgid "Faroe Islands"
+msgstr ""
+
+#. module: base
+#: selection:res.users,view:0
+msgid "Simplified"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.st
+msgid "Saint Tome (Sao Tome) and Principe"
+msgstr ""
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Invoice"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Portugese (BR) / Português (BR)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bb
+msgid "Barbados"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mg
+msgid "Madagascar"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:116
+#, python-format
+msgid ""
+"The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.configuration.wizard,note:0
+msgid "Next Wizard"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_menu_admin
+#: view:ir.ui.menu:0
+#: field:ir.ui.menu,name:0
+msgid "Menu"
+msgstr ""
+
+#. module: base
+#: field:res.currency,rate:0
+msgid "Current Rate"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view.custom,ref_id:0
+msgid "Original View"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "Action To Launch"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.url,target:0
+msgid "Action Target"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ai
+msgid "Anguilla"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view_sc,name:0
+msgid "Shortcut Name"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,limit:0
+msgid "Default limit for the list view"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,write_id:0
+msgid ""
+"Provide the field name that the record id refers to for the write operation. "
+"If it is empty it will refer to the active id of the object."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.zw
+msgid "Zimbabwe"
+msgstr ""
+
+#. module: base
+#: view:base.module.update:0
+msgid "Please be patient, as this operation may take a few seconds..."
+msgstr ""
+
+#. module: base
+#: help:ir.values,action_id:0
+msgid "This field is not used, it only helps you to select the right action."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,email:0
+msgid "Email Address"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "French (BE) / Français (BE)"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+#: field:workflow.activity,action_id:0
+msgid "Server Action"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tt
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lv
+msgid "Latvia"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "Values"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mappings"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid "Export Translations"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_custom
+msgid "Customization"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.py
+msgid "Paraguay"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_close
+msgid "ir.actions.act_window_close"
+msgstr ""
+
+#. module: base
+#: field:ir.server.object.lines,col1:0
+msgid "Destination"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lt
+msgid "Lithuania"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_view_partner_clear_ids
+#: model:ir.model,name:base.model_partner_clear_ids
+#: view:partner.clear.ids:0
+msgid "Clear IDs"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,model:0
+msgid ""
+"Name of object whose function will be called when this scheduler will run. "
+"e.g. 'res.partener'"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1040
+#, python-format
+msgid "The perm_read method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%y - Year without century [00,99]."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.si
+msgid "Slovenia"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pk
+msgid "Pakistan"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
+#, python-format
+msgid "Invalid Object Architecture!"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_email_gateway_form
+msgid "Messages"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
+#: code:addons/base/module/wizard/base_update_translations.py:38
+#, python-format
+msgid "Error!"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%p - Equivalent of either AM or PM."
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Actions"
+msgstr ""
+
+#. module: base
+#: help:multi_company.default,company_id:0
+msgid "Company where the user is connected"
+msgstr ""
+
+#. module: base
+#: field:publisher_warranty.contract,date_stop:0
+msgid "Ending Date"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nz
+msgid "New Zealand"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3895
+#, python-format
+msgid ""
+"One of the records you are trying to modify has already been deleted "
+"(Document type: %s)."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_country
+msgid ""
+"Display and manage the list of all countries that can be assigned to your "
+"partner records. You can create or delete countries to make sure the ones "
+"you are working on will be maintained."
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_7
+msgid "Openstuff.net"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nf
+msgid "Norfolk Island"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Korean (KR) / 한국어 (KR)"
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,model:0
+msgid "The technical name of the model this field belongs to"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,action_id:0
+#: selection:ir.actions.server,state:0
+msgid "Client Action"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bd
+msgid "Bangladesh"
+msgstr ""
+
+#. module: base
+#: constraint:res.company:0
+msgid "Error! You can not create recursive companies."
+msgstr ""
+
+#. module: base
+#: selection:publisher_warranty.contract,state:0
+msgid "Valid"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "XSL"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:409
+#, python-format
+msgid "Can not upgrade module '%s'. It is not installed."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cu
+msgid "Cuba"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_event
+msgid "res.partner.event"
+msgstr ""
+
+#. module: base
+#: model:res.widget,title:base.facebook_widget
+msgid "Facebook"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.am
+msgid "Armenia"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_property_form
+#: model:ir.ui.menu,name:base.menu_ir_property_form_all
+msgid "Configuration Parameters"
+msgstr ""
+
+#. module: base
+#: constraint:ir.cron:0
+msgid "Invalid arguments"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.se
+msgid "Sweden"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window.view,view_mode:0
+#: selection:ir.ui.view,type:0
+#: selection:wizard.ir.model.menu.create.line,view_type:0
+msgid "Gantt"
+msgstr ""
+
+#. module: base
+#: view:ir.property:0
+msgid "Property"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
+#: view:res.partner.bank.type:0
+msgid "Bank Account Type"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,config_logo:0
+#: field:base.language.import,config_logo:0
+#: field:base.language.install,config_logo:0
+#: field:base.module.import,config_logo:0
+#: field:base.module.update,config_logo:0
+#: field:base.update.translations,config_logo:0
+#: field:ir.actions.configuration.wizard,config_logo:0
+#: field:ir.wizard.screen,config_logo:0
+#: field:publisher_warranty.contract.wizard,config_logo:0
+#: field:res.config,config_logo:0
+#: field:res.config.installer,config_logo:0
+msgid "Image"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Action Configuration"
+msgstr ""
+
+#. module: base
+#: selection:publisher_warranty.contract,state:0
+msgid "Canceled"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.at
+msgid "Austria"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,state:0
+#: selection:base.module.import,state:0
+#: selection:base.module.update,state:0
+msgid "done"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window.view,view_mode:0
+#: model:ir.ui.menu,name:base.menu_calendar_configuration
+#: selection:ir.ui.view,type:0
+#: selection:wizard.ir.model.menu.create.line,view_type:0
+msgid "Calendar"
+msgstr ""
+
+#. module: base
+#: field:res.partner.address,partner_id:0
+msgid "Partner Name"
+msgstr ""
+
+#. module: base
+#: field:workflow.activity,signal_send:0
+msgid "Signal (subflow.*)"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_17
+msgid "HR sector"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:4408
+#, python-format
+msgid ""
+"Invalid \"order\" specified. A valid \"order\" specification is a comma-"
+"separated list of valid field names (optionally followed by asc/desc for the "
+"direction)"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module_dependency
+msgid "Module dependency"
+msgstr ""
+
+#. module: base
+#: selection:publisher_warranty.contract.wizard,state:0
+msgid "Draft"
+msgstr ""
+
+#. module: base
+#: selection:res.users,view:0
+msgid "Extended"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_partner_title_contact
+msgid ""
+"Manage the contact titles you want to have available in your system and the "
+"way you want to print them in letters and other documents. Some example: "
+"Mr., Mrs. "
+msgstr ""
+
+#. module: base
+#: field:res.company,rml_footer1:0
+msgid "Report Footer 1"
+msgstr ""
+
+#. module: base
+#: field:res.company,rml_footer2:0
+msgid "Report Footer 2"
+msgstr ""
+
+#. module: base
+#: view:ir.model.access:0
+#: view:res.groups:0
+#: field:res.groups,model_access:0
+msgid "Access Controls"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+#: field:ir.module.module,dependencies_id:0
+msgid "Dependencies"
+msgstr ""
+
+#. module: base
+#: field:multi_company.default,company_id:0
+msgid "Main Company"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,web_icon_hover:0
+msgid "Web Icon File (hover)"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid ""
+"If you use a formula type, use a python expression using the variable "
+"'object'."
+msgstr ""
+
+#. module: base
+#: field:res.partner.address,birthdate:0
+msgid "Birthdate"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_title_contact
+#: model:ir.ui.menu,name:base.menu_partner_title_contact
+msgid "Contact Titles"
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid ""
+"Please double-check that the file encoding is set to UTF-8 (sometimes called "
+"Unicode) when the translator exports it."
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (DO) / Español (DO)"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_activity
+msgid "workflow.activity"
+msgstr ""
+
+#. module: base
+#: help:ir.ui.view_sc,res_id:0
+msgid ""
+"Reference of the target resource, whose model/table depends on the 'Resource "
+"Name' field."
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,select_level:0
+msgid "Searchable"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.uy
+msgid "Uruguay"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Finnish / Suomi"
+msgstr ""
+
+#. module: base
+#: field:ir.rule,perm_write:0
+msgid "Apply For Write"
+msgstr ""
+
+#. module: base
+#: field:ir.sequence,prefix:0
+msgid "Prefix"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "German / Deutsch"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,trigger_name:0
+msgid "Select the Signal name that is to be used as the trigger."
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Fields Mapping"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Portugese / Português"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_sir
+msgid "Sir"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2134
+#, python-format
+msgid "There is no view of type '%s' defined for the structure!"
+msgstr ""
+
+#. module: base
+#: field:ir.default,ref_id:0
+msgid "ID Ref."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.server,name:base.action_start_configurator
+#: model:ir.ui.menu,name:base.menu_view_base_module_configuration
+msgid "Start Configuration"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mt
+msgid "Malta"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,fields_lines:0
+msgid "Field Mappings."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module
+#: view:ir.model.data:0
+#: field:ir.model.data,module:0
+#: view:ir.module.module:0
+#: field:ir.module.module.dependency,module_id:0
+#: report:ir.module.reference.graph:0
+msgid "Module"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
+#: view:ir.module.module:0
+#: field:ir.module.module,description:0
+#: view:res.partner.event:0
+#: field:res.partner.event,description:0
+#: view:res.request:0
+msgid "Description"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_instance_form
+#: model:ir.ui.menu,name:base.menu_workflow_instance
+msgid "Instances"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.aq
+msgid "Antarctica"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,auto:0
+msgid "Custom python parser"
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid "_Import"
+msgstr ""
+
+#. module: base
+#: view:res.partner.canal:0
+msgid "Channel"
+msgstr ""
+
+#. module: base
+#: field:res.lang,grouping:0
+msgid "Separator Format"
+msgstr ""
+
+#. module: base
+#: selection:publisher_warranty.contract,state:0
+msgid "Unvalidated"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_9
+msgid "Database Structure"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_mass_mail
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
+msgid "Mass Mailing"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.yt
+msgid "Mayotte"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:653
+#, python-format
+msgid "Please specify an action to launch !"
+msgstr ""
+
+#. module: base
+#: view:res.payterm:0
+msgid "Payment Term"
+msgstr ""
+
+#. module: base
+#: selection:res.lang,direction:0
+msgid "Right-to-Left"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+#: model:ir.actions.act_window,name:base.actions_ir_filters_view
+#: view:ir.filters:0
+#: model:ir.model,name:base.model_ir_filters
+#: model:ir.ui.menu,name:base.menu_ir_filters
+msgid "Filters"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:758
+#, python-format
+msgid "Please check that all your lines have %d columns."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_cron_act
+#: view:ir.cron:0
+#: model:ir.ui.menu,name:base.menu_ir_cron_act
+msgid "Scheduled Actions"
+msgstr ""
+
+#. module: base
+#: field:res.partner.address,title:0
+#: field:res.partner.title,name:0
+#: field:res.widget,title:0
+msgid "Title"
+msgstr ""
+
+#. module: base
+#: help:ir.property,res_id:0
+msgid "If not set, acts as a default value for new resources"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3988
+#, python-format
+msgid "Recursivity Detected."
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:302
+#, python-format
+msgid "Recursion error in modules dependencies !"
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+msgid ""
+"This wizard helps you add a new language to your OpenERP system. After "
+"loading a new language it becomes available as default interface language "
+"for users and partners."
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+msgid "Create a Menu"
+msgstr ""
+
+#. module: base
+#: help:res.partner,vat:0
+msgid ""
+"Value Added Tax number. Check the box if the partner is subjected to the "
+"VAT. Used by the VAT legal statement."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract
+msgid "maintenance.contract"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ru
+msgid "Russian Federation"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Urdu / اردو"
+msgstr ""
+
+#. module: base
+#: field:res.company,name:0
+msgid "Company Name"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country
+#: model:ir.ui.menu,name:base.menu_country_partner
+msgid "Countries"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "RML  (deprecated - use Report)"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid "Record rules"
+msgstr ""
+
+#. module: base
+#: view:ir.property:0
+msgid "Field Information"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+msgid "Search Actions"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_view_partner_wizard_ean_check
+#: view:partner.wizard.ean.check:0
+msgid "Ean check"
+msgstr ""
+
+#. module: base
+#: field:res.partner,vat:0
+msgid "VAT"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "12. %w              ==> 5 ( Friday is the 6th day)"
+msgstr ""
+
+#. module: base
+#: constraint:res.partner.category:0
+msgid "Error ! You can not create recursive categories."
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%x - Appropriate date representation."
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%d - Day of the month [01,31]."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tj
+msgid "Tajikistan"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-2 or later version"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,shortcut:base.res_partner_title_sir
+msgid "M."
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:519
+#, python-format
+msgid ""
+"Can not create the module file:\n"
+" %s"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3437
+#, python-format
+msgid ""
+"Operation prohibited by access rules, or performed on an already deleted "
+"document (Operation: read, Document type: %s)."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nr
+msgid "Nauru"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:240
+#, python-format
+msgid "The certificate ID of the module must be unique !"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_property
+msgid "ir.property"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: selection:ir.actions.act_window.view,view_mode:0
+#: view:ir.ui.view:0
+#: selection:ir.ui.view,type:0
+#: selection:wizard.ir.model.menu.create.line,view_type:0
+msgid "Form"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.me
+msgid "Montenegro"
+msgstr ""
+
+#. module: base
+#: view:ir.cron:0
+msgid "Technical Data"
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+#: field:res.partner,category_id:0
+msgid "Categories"
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid ""
+"If you need another language than the official ones available, you can "
+"import a language pack from here. Other OpenERP languages than the official "
+"ones can be found on launchpad."
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be upgraded"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ly
+msgid "Libya"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cf
+msgid "Central African Republic"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.li
+msgid "Liechtenstein"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_partner_sms_send
+#: view:partner.sms.send:0
+msgid "Send SMS"
+msgstr ""
+
+#. module: base
+#: field:res.partner,ean13:0
+msgid "EAN13"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2134
+#, python-format
+msgid "Invalid Architecture!"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pt
+msgid "Portugal"
+msgstr ""
+
+#. module: base
+#: sql_constraint:ir.model.data:0
+msgid ""
+"You cannot have multiple records with the same id for the same module !"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,certificate:0
+msgid "Quality Certificate"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "6.  %d, %m         ==> 05, 12"
+msgstr ""
+
+#. module: base
+#: field:res.config.users,date:0
+#: field:res.users,date:0
+msgid "Last Connection"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,help:0
+msgid "Action description"
+msgstr ""
+
+#. module: base
+#: help:res.partner,customer:0
+msgid "Check this box if the partner is a customer."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_lang_act_window
+#: model:ir.model,name:base.model_res_lang
+#: model:ir.ui.menu,name:base.menu_res_lang_act_window
+#: view:res.lang:0
+msgid "Languages"
+msgstr ""
+
+#. module: base
+#: selection:workflow.activity,join_mode:0
+#: selection:workflow.activity,split_mode:0
+msgid "Xor"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ec
+msgid "Ecuador"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_export_language.py:52
+#, python-format
+msgid ""
+"Save this document to a .CSV file and open it with your favourite "
+"spreadsheet software. The file encoding is UTF-8. You have to translate the "
+"latest column before reimporting it."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_customer_form
+#: model:ir.actions.act_window,name:base.action_partner_form
+#: model:ir.ui.menu,name:base.menu_partner_form
+#: view:res.partner:0
+msgid "Customers"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.au
+msgid "Australia"
+msgstr ""
+
+#. module: base
+#: help:res.partner,lang:0
+msgid ""
+"If the selected language is loaded in the system, all documents related to "
+"this partner will be printed in this language. If not, it will be english."
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Menu :"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,state:0
+msgid "Base Field"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract:0
+msgid "Validate"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.todo,restart:0
+msgid "Restart"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_sxw_content:0
+#: field:ir.actions.report.xml,report_sxw_content_data:0
+msgid "SXW content"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.wizard:0
+#: field:wizard.ir.model.menu.create.line,wizard_id:0
+msgid "Wizard"
+msgstr ""
+
+#. module: base
+#: view:ir.cron:0
+msgid "Action to Trigger"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_user.py:136
+#, python-format
+msgid "\"email_from\" needs to be set to send welcome mails to users"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Constraint"
+msgstr ""
+
+#. module: base
+#: selection:ir.values,key:0
+#: selection:res.partner.address,type:0
+msgid "Default"
+msgstr ""
+
+#. module: base
+#: view:ir.model.fields:0
+#: field:ir.model.fields,required:0
+#: field:res.partner.bank.type.field,required:0
+msgid "Required"
+msgstr ""
+
+#. module: base
+#: view:res.users:0
+msgid "Default Filters"
+msgstr ""
+
+#. module: base
+#: field:res.request.history,name:0
+msgid "Summary"
+msgstr ""
+
+#. module: base
+#: field:multi_company.default,expression:0
+msgid "Expression"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,subject:0
+msgid ""
+"Specify the subject. You can use fields from the object, e.g. `Hello [[ "
+"object.partner_id.name ]]`"
+msgstr ""
+
+#. module: base
+#: view:res.company:0
+msgid "Header/Footer"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,help:0
+msgid ""
+"Optional help text for the users with a description of the target view, such "
+"as its usage and purpose."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.va
+msgid "Holy See (Vatican City State)"
+msgstr ""
+
+#. module: base
+#: field:base.module.import,module_file:0
+msgid "Module .ZIP file"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view,xml_id:0
+msgid "XML ID"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_16
+msgid "Telecom sector"
+msgstr ""
+
+#. module: base
+#: field:workflow.transition,trigger_model:0
+msgid "Trigger Object"
+msgstr ""
+
+#. module: base
+#: view:res.users:0
+msgid "Current Activity"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.activity,in_transitions:0
+msgid "Incoming Transitions"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sr
+msgid "Suriname"
+msgstr ""
+
+#. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
+#: model:ir.ui.menu,name:base.marketing_menu
+msgid "Marketing"
+msgstr ""
+
+#. module: base
+#: view:res.partner.bank:0
+msgid "Bank account"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (HN) / Español (HN)"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence.type:0
+msgid "Sequence Type"
+msgstr ""
+
+#. module: base
+#: view:ir.ui.view.custom:0
+msgid "Customized Architecture"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,license:0
+msgid "License"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,url:0
+msgid "Url"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,restart:0
+msgid "Always"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "SQL Constraint"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
+#: field:ir.model.fields,model_id:0
+#: view:ir.values:0
+msgid "Model"
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+msgid ""
+"The selected language has been successfully installed. You must change the "
+"preferences of the user and open a new menu to view the changes."
+msgstr ""
+
+#. module: base
+#: sql_constraint:ir.config_parameter:0
+msgid "Key must be unique."
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Open a Window"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gq
+msgid "Equatorial Guinea"
+msgstr ""
+
+#. module: base
+#: view:base.module.import:0
+#: model:ir.actions.act_window,name:base.action_view_base_module_import
+msgid "Module Import"
+msgstr ""
+
+#. module: base
+#: field:res.bank,zip:0
+#: field:res.company,zip:0
+#: field:res.partner.address,zip:0
+#: field:res.partner.bank,zip:0
+msgid "Zip"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+#: field:ir.module.module,author:0
+msgid "Author"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mk
+msgid "FYROM"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%c - Appropriate date and time representation."
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_config.py:386
+#, python-format
+msgid ""
+"Your database is now fully configured.\n"
+"\n"
+"Click 'Continue' and enjoy your OpenERP experience..."
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Hebrew / עִבְרִי"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bo
+msgid "Bolivia"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gh
+msgid "Ghana"
+msgstr ""
+
+#. module: base
+#: field:res.lang,direction:0
+msgid "Direction"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+#: model:ir.actions.act_window,name:base.action_ui_view
+#: field:ir.actions.act_window,view_ids:0
+#: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
+#: field:ir.module.module,views_by_module:0
+#: model:ir.ui.menu,name:base.menu_action_ui_view
+#: view:ir.ui.view:0
+msgid "Views"
+msgstr ""
+
+#. module: base
+#: view:res.groups:0
+#: field:res.groups,rule_groups:0
+msgid "Rules"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:256
+#, python-format
+msgid "You try to remove a module that is installed or will be installed"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "The selected modules have been updated / installed !"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (PR) / Español (PR)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gt
+msgid "Guatemala"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_form
+#: model:ir.ui.menu,name:base.menu_low_workflow
+#: model:ir.ui.menu,name:base.menu_workflow
+#: model:ir.ui.menu,name:base.menu_workflow_root
+msgid "Workflows"
+msgstr ""
+
+#. module: base
+#: field:ir.translation,xml_id:0
+msgid "XML Id"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_user_form
+msgid "Create Users"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_title
+msgid "res.partner.title"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "tree_but_action, client_print_multi"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_retailers0
+msgid "Retailers"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,priority:0
+msgid ""
+"0=Very Urgent\n"
+"10=Not urgent"
+msgstr ""
+
+#. module: base
+#: view:res.config:0
+#: view:res.config.installer:0
+msgid "Skip"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ls
+msgid "Lesotho"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:139
+#, python-format
+msgid "You can not remove the model '%s' !"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ke
+msgid "Kenya"
+msgstr ""
+
+#. module: base
+#: view:res.partner.event:0
+msgid "Event"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_custom_reports
+msgid "Custom Reports"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Abkhazian / аҧсуа"
+msgstr ""
+
+#. module: base
+#: view:base.module.configuration:0
+msgid "System Configuration Done"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1459
+#, python-format
+msgid "Error occurred while validating the field(s) %s: %s"
+msgstr ""
+
+#. module: base
+#: view:ir.property:0
+msgid "Generic"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sm
+msgid "San Marino"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bm
+msgid "Bermuda"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pe
+msgid "Peru"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,on_delete:0
+msgid "Set NULL"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bj
+msgid "Benin"
+msgstr ""
+
+#. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
+#, python-format
+msgid "That contract is already registered in the system."
+msgstr ""
+
+#. module: base
+#: help:ir.sequence,suffix:0
+msgid "Suffix value of the record for the sequence"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (PY) / Español (PY)"
+msgstr ""
+
+#. module: base
+#: field:ir.config_parameter,key:0
+msgid "Key"
+msgstr ""
+
+#. module: base
+#: field:res.company,rml_header:0
+msgid "RML Header"
+msgstr ""
+
+#. module: base
+#: field:partner.sms.send,app_id:0
+msgid "API ID"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:533
+#, python-format
+msgid ""
+"You can not create this document (%s) ! Be sure your user belongs to one of "
+"these groups: %s."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mu
+msgid "Mauritius"
+msgstr ""
+
+#. module: base
+#: view:ir.model.access:0
+#: view:ir.rule:0
+msgid "Full Access"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+#: view:ir.actions.report.xml:0
+#: view:ir.actions.wizard:0
+#: view:ir.model.fields:0
+#: model:ir.ui.menu,name:base.menu_security
+msgid "Security"
+msgstr ""
+
+#. module: base
+#: model:res.widget,title:base.openerp_favorites_twitter_widget
+msgid "OpenERP Favorites"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.za
+msgid "South Africa"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "Installed"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Ukrainian / українська"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_translation
+#: model:ir.ui.menu,name:base.menu_action_translation
+msgid "Translation Terms"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sn
+msgid "Senegal"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.hu
+msgid "Hungary"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_groups
+msgid "res.groups"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.br
+msgid "Brazil"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%M - Minute [00,59]."
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Affero GPL-3"
+msgstr ""
+
+#. module: base
+#: field:ir.sequence,number_next:0
+msgid "Next Number"
+msgstr ""
+
+#. module: base
+#: help:workflow.transition,condition:0
+msgid "Expression to be satisfied if we want the transition done."
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (PA) / Español (PA)"
+msgstr ""
+
+#. module: base
+#: view:res.currency:0
+#: field:res.currency,rate_ids:0
+msgid "Rates"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sy
+msgid "Syria"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "======================================================"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,mobile:0
+msgid ""
+"Provides fields that be used to fetch the mobile number, e.g. you select the "
+"invoice, then `object.invoice_address_id.mobile` is the field which gives "
+"the correct mobile number"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "System update completed"
+msgstr ""
+
+#. module: base
+#: selection:res.request,state:0
+msgid "draft"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+#: field:res.currency,date:0
+#: field:res.currency.rate,name:0
+#: field:res.partner,date:0
+#: field:res.partner.event,date:0
+#: field:res.request,date_sent:0
+msgid "Date"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_sxw:0
+msgid "SXW path"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Data"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,parent_id:0
+#: field:wizard.ir.model.menu.create,menu_id:0
+msgid "Parent Menu"
+msgstr ""
+
+#. module: base
+#: field:ir.rule,perm_unlink:0
+msgid "Apply For Delete"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:359
+#, python-format
+msgid "Cannot rename column to %s, because that column already exists!"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attached To"
+msgstr ""
+
+#. module: base
+#: field:res.lang,decimal_point:0
+msgid "Decimal Separator"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_res_groups
+msgid ""
+"A group is a set of functional areas that will be assigned to the user in "
+"order to give them access and rights to specific applications and tasks in "
+"the system. You can create custom groups or edit the ones existing by "
+"default in order to customize the view of the menu that users will be able "
+"to see. Whether they can have a read, write, create and delete access right "
+"can be managed from here."
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+#: view:res.request:0
+#: field:res.request,history:0
+msgid "History"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,create_uid:0
+msgid "Creator"
+msgstr ""
+
+#. module: base
+#: model:res.company,overdue_msg:base.main_company
+msgid ""
+"Please note that the following payments are now due. If your payment         "
+"                has been sent, kindly forward your payment details. If "
+"payment will be                         delayed further, please contact us "
+"to discuss.                         \n"
+"Would your payment have been carried out after this mail was sent, please "
+"consider the present one as void."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mx
+msgid "Mexico"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_base_config_plugins
+msgid "Plugins"
+msgstr ""
+
+#. module: base
+#: field:res.company,child_ids:0
+msgid "Child Companies"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_users
+msgid "res.users"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ni
+msgid "Nicaragua"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1046
+#, python-format
+msgid "The write method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: view:res.partner.event:0
+msgid "General Description"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_simple_view_form
+#: view:res.config.view:0
+msgid "Configure Your Interface"
+msgstr ""
+
+#. module: base
+#: field:ir.values,meta:0
+msgid "Meta Datas"
+msgstr ""
+
+#. module: base
+#: sql_constraint:ir.ui.view_sc:0
+msgid "Shortcut for this menu already exists!"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ve
+msgid "Venezuela"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "9.  %j              ==> 340"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.zm
+msgid "Zambia"
+msgstr ""
+
+#. module: base
+#: help:res.partner,user_id:0
+msgid ""
+"The internal user that is in charge of communicating with this partner if "
+"any."
+msgstr ""
+
+#. module: base
+#: field:res.partner,parent_id:0
+msgid "Parent Partner"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Upgrade"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ci
+msgid "Ivory Coast (Cote D'Ivoire)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kz
+msgid "Kazakhstan"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%w - Weekday number [0(Sunday),6]."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_partner_form
+msgid ""
+"A customer is an entity you do business with, like a company or an "
+"organization. A customer can have several contacts or addresses which are "
+"the people working for this company. You can use the history tab, to follow "
+"all transactions related to a customer: sales order, emails, opportunities, "
+"claims, etc. If you use the email gateway, the Outlook or the Thunderbird "
+"plugin, don't forget to register emails to each contact so that the gateway "
+"will automatically attach incoming emails to the right partner."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,name:0
+#: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
+#: field:ir.cron,name:0
+#: field:ir.model.access,name:0
+#: field:ir.model.fields,name:0
+#: field:ir.module.category,name:0
+#: view:ir.module.module:0
+#: field:ir.module.module,name:0
+#: field:ir.module.module.dependency,name:0
+#: report:ir.module.reference.graph:0
+#: field:ir.property,name:0
+#: field:ir.rule,name:0
+#: field:ir.sequence,name:0
+#: field:ir.sequence.type,name:0
+#: field:ir.values,name:0
+#: field:multi_company.default,name:0
+#: field:res.bank,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
+#: field:res.lang,name:0
+#: field:res.partner,name:0
+#: field:res.partner.bank.type,name:0
+#: view:res.partner.event:0
+#: field:res.request.link,name:0
+#: field:workflow,name:0
+#: field:workflow.activity,name:0
+msgid "Name"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,multi:0
+msgid ""
+"If set to true, the action will not be displayed on the right toolbar of a "
+"form view"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ms
+msgid "Montserrat"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:237
+#, python-format
+msgid ""
+"The Selection Options expression is not a valid Pythonic expression.Please "
+"provide an expression in the [('key','Label'), ...] format."
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_app
+msgid "Application Terms"
+msgstr ""
+
+#. module: base
+#: help:res.users,context_tz:0
+msgid ""
+"The user's timezone, used to perform timezone conversions between the server "
+"and the client."
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,demo:0
+msgid "Demo data"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "English (UK)"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Japanese / 日本語"
+msgstr ""
+
+#. module: base
+#: help:workflow.transition,act_from:0
+msgid ""
+"Source activity. When this activity is over, the condition is tested to "
+"determine if we can start the ACT_TO activity."
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_3
+msgid "Starter Partner"
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,relation_field:0
+msgid ""
+"For one2many fields, the field on the target model that implement the "
+"opposite many2one relationship"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_view
+msgid "ir.actions.act_window.view"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Web"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "English (CA)"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_publisher_warranty_contract
+msgid "publisher_warranty.contract"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.et
+msgid "Ethiopia"
+msgstr ""
+
+#. module: base
+#: help:res.country.state,code:0
+msgid "The state code in three chars.\n"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sj
+msgid "Svalbard and Jan Mayen Islands"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_wizard
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.wizard"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+#: view:ir.actions.report.xml:0
+#: view:ir.actions.server:0
+#: view:res.request:0
+msgid "Group By"
+msgstr ""
+
+#. module: base
+#: view:res.config:0
+#: view:res.config.installer:0
+msgid "title"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_language_install
+msgid "Install Language"
+msgstr ""
+
+#. module: base
+#: view:ir.translation:0
+msgid "Translation"
+msgstr ""
+
+#. module: base
+#: selection:res.request,state:0
+msgid "closed"
+msgstr ""
+
+#. module: base
+#: selection:base.language.export,state:0
+msgid "get"
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,on_delete:0
+msgid "On delete property for many2one fields"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,write_id:0
+msgid "Write Id"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_product
+msgid "Products"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,domain:0
+#: field:ir.filters,domain:0
+msgid "Domain Value"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "SMS Configuration"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (BO) / Español (BO)"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_access_act
+#: model:ir.ui.menu,name:base.menu_ir_access_act
+msgid "Access Controls List"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.um
+msgid "USA Minor Outlying Islands"
+msgstr ""
+
+#. module: base
+#: field:res.partner.bank.type.field,bank_type_id:0
+msgid "Bank Type"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
+#, python-format
+msgid "The name of the group can not start with \"-\""
+msgstr ""
+
+#. module: base
+#: view:ir.ui.view_sc:0
+#: field:res.partner.title,shortcut:0
+msgid "Shortcut"
+msgstr ""
+
+#. module: base
+#: field:ir.model.data,date_init:0
+msgid "Init Date"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Gujarati / ગુજરાતી"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:297
+#, python-format
+msgid ""
+"Unable to process module \"%s\" because an external dependency is not met: %s"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract.wizard:0
+msgid "Please enter the serial key provided in your contract document:"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.activity,flow_start:0
+msgid "Flow Start"
+msgstr ""
+
+#. module: base
+#: code:addons/__init__.py:834
+#, python-format
+msgid "module base cannot be loaded! (hint: verify addons-path)"
+msgstr ""
+
+#. module: base
+#: view:res.partner.bank:0
+msgid "Bank Account Owner"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form
+msgid "Client Actions Connections"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,res_name:0
+#: field:ir.ui.view_sc,resource:0
+msgid "Resource Name"
+msgstr ""
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Hours"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gp
+msgid "Guadeloupe (French)"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
+#, python-format
+msgid "User Error"
+msgstr ""
+
+#. module: base
+#: help:workflow.transition,signal:0
+msgid ""
+"When the operation of transition comes from a button pressed in the client "
+"form, signal tests the name of the pressed button. If signal is NULL, no "
+"button is necessary to validate this transition."
+msgstr ""
+
+#. module: base
+#: help:multi_company.default,object_id:0
+msgid "Object affected by this rule"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Directory"
+msgstr ""
+
+#. module: base
+#: field:wizard.ir.model.menu.create,name:0
+msgid "Menu Name"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Author Website"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Month"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.my
+msgid "Malaysia"
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+#: model:ir.actions.act_window,name:base.action_view_base_language_install
+msgid "Load Official Translation"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_history
+msgid "res.request.history"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Client Action Configuration"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_address
+#: view:res.partner.address:0
+msgid "Partner Addresses"
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,translate:0
+msgid ""
+"Whether values for this field can be translated (enables the translation "
+"mechanism for that field)"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%S - Seconds [00,61]."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cv
+msgid "Cape Verde"
+msgstr ""
+
+#. module: base
+#: view:base.module.import:0
+msgid "Select module package to import (.zip file):"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
+#: field:res.partner,events:0
+#: field:res.partner.event,name:0
+#: model:res.widget,title:base.events_widget
+msgid "Events"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_url
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.url"
+msgstr ""
+
+#. module: base
+#: model:res.widget,title:base.currency_converter_widget
+msgid "Currency Converter"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:341
+#, python-format
+msgid "Wrong ID for the browse record, got %r, expected an integer."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_addess_tree
+#: view:res.partner:0
+msgid "Partner Contacts"
+msgstr ""
+
+#. module: base
+#: field:base.module.update,add:0
+msgid "Number of modules added"
+msgstr ""
+
+#. module: base
+#: view:res.currency:0
+msgid "Price Accuracy"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Latvian / latviešu valoda"
+msgstr ""
+
+#. module: base
+#: view:res.config:0
+#: view:res.config.installer:0
+msgid "vsep"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "French / Français"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1049
+#, python-format
+msgid "The create method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: field:workflow.triggers,workitem_id:0
+msgid "Workitem"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+msgid "Set as Todo"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window.view,act_window_id:0
+#: view:ir.actions.actions:0
+#: field:ir.actions.todo,action_id:0
+#: field:ir.ui.menu,action:0
+#: view:ir.values:0
+#: selection:ir.values,key:0
+#: view:res.users:0
+msgid "Action"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Email Configuration"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_cron
+msgid "ir.cron"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid "Combination of rules"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Current Year without Century: %(y)s"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,trigger_obj_id:0
+msgid "Trigger On"
+msgstr ""
+
+#. module: base
+#: sql_constraint:ir.rule:0
+msgid "Rule must have at least one checked access right !"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.fj
+msgid "Fiji"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,size:0
+msgid "Size"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sd
+msgid "Sudan"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.fm
+msgid "Micronesia"
+msgstr ""
+
+#. module: base
+#: view:res.request.history:0
+msgid "Request History"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,menus_by_module:0
+#: view:res.groups:0
+msgid "Menus"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Serbian (Latin) / srpski"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.il
+msgid "Israel"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_server_action_create
+msgid "Create Action"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_model_model
+#: model:ir.model,name:base.model_ir_model
+#: model:ir.ui.menu,name:base.ir_model_model_menu
+msgid "Objects"
+msgstr ""
+
+#. module: base
+#: field:res.lang,time_format:0
+msgid "Time Format"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Defined Reports"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "Report xml"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,modules:0
+#: model:ir.actions.act_window,name:base.action_module_open_categ
+#: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
+#: view:ir.module.module:0
+#: model:ir.ui.menu,name:base.menu_management
+#: model:ir.ui.menu,name:base.menu_module_tree
+msgid "Modules"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+#: selection:workflow.activity,kind:0
+#: field:workflow.activity,subflow_id:0
+#: field:workflow.workitem,subflow_id:0
+msgid "Subflow"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_config
+msgid "res.config"
+msgstr ""
+
+#. module: base
+#: field:workflow.transition,signal:0
+msgid "Signal (button Name)"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_bank_form
+#: model:ir.ui.menu,name:base.menu_action_res_bank_form
+#: view:res.bank:0
+#: field:res.partner,bank_ids:0
+msgid "Banks"
+msgstr ""
+
+#. module: base
+#: view:res.log:0
+msgid "Unread"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,doall:0
+msgid "Repeat Missed"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,state:0
+msgid "Type of the Action that is to be executed"
+msgstr ""
+
+#. module: base
+#: field:ir.server.object.lines,server_id:0
+msgid "Object Mapping"
+msgstr ""
+
+#. module: base
+#: help:res.currency.rate,rate:0
+msgid "The rate of the currency to the currency of rate 1"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.uk
+msgid "United Kingdom"
+msgstr ""
+
+#. module: base
+#: view:res.config:0
+msgid "res_config_contents"
+msgstr ""
+
+#. module: base
+#: help:res.partner.category,active:0
+msgid "The active field allows you to hide the category without removing it."
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Object:"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bw
+msgid "Botswana"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_title_partner
+#: model:ir.ui.menu,name:base.menu_partner_title_partner
+#: view:res.partner.title:0
+msgid "Partner Titles"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,auto_refresh:0
+msgid "Add an auto-refresh on the view"
+msgstr ""
+
+#. module: base
+#: help:res.partner,employee:0
+msgid "Check this box if the partner is an Employee."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_rml_content:0
+#: field:ir.actions.report.xml,report_rml_content_data:0
+msgid "RML content"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_workitem_form
+#: model:ir.ui.menu,name:base.menu_workflow_workitem
+msgid "Workitems"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,advice:0
+msgid "Advice"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_attachment
+msgid "ir.attachment"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:4086
+#, python-format
+msgid ""
+"You cannot perform this operation. New Record Creation is not allowed for "
+"this object as this object is for reporting purpose."
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid "- module,type,name,res_id,src,value"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Lithuanian / Lietuvių kalba"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,record_id:0
+msgid ""
+"Provide the field name where the record id is stored after the create "
+"operations. If it is empty, you can not track the new record."
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,relation:0
+msgid "For relationship fields, the technical name of the target model"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Indonesian / Bahasa Indonesia"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view,inherit_id:0
+msgid "Inherited View"
+msgstr ""
+
+#. module: base
+#: view:ir.translation:0
+msgid "Source Term"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_main_pm
+msgid "Project"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,web_icon_hover_data:0
+msgid "Web Icon Image (hover)"
+msgstr ""
+
+#. module: base
+#: view:base.module.import:0
+msgid "Module file successfully imported!"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Cancelled"
+msgstr ""
+
+#. module: base
+#: view:res.config.users:0
+msgid "Create User"
+msgstr ""
+
+#. module: base
+#: view:partner.clear.ids:0
+msgid "Want to Clear Ids ? "
+msgstr ""
+
+#. module: base
+#: field:publisher_warranty.contract,name:0
+#: field:publisher_warranty.contract.wizard,name:0
+msgid "Serial Key"
+msgstr ""
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "Low"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_audit
+msgid "Audit"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lc
+msgid "Saint Lucia"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract:0
+msgid "Maintenance Contract"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,trigger_obj_id:0
+msgid "Select the object from the model on which the workflow will executed."
+msgstr ""
+
+#. module: base
+#: model:res.groups,name:base.group_user
+#: field:res.partner,employee:0
+msgid "Employee"
+msgstr ""
+
+#. module: base
+#: field:ir.model.access,perm_create:0
+msgid "Create Access"
+msgstr ""
+
+#. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
+#: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
+msgid "Fed. State"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,copy_object:0
+msgid "Copy Of"
+msgstr ""
+
+#. module: base
+#: field:ir.model,osv_memory:0
+msgid "In-memory model"
+msgstr ""
+
+#. module: base
+#: view:partner.clear.ids:0
+msgid "Clear Ids"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.io
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#. module: base
+#: field:res.users,view:0
+msgid "Interface"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mapping"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract:0
+msgid "Refresh Validation Dates"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,ttype:0
+msgid "Field Type"
+msgstr ""
+
+#. module: base
+#: field:res.country.state,code:0
+msgid "State Code"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,on_delete:0
+msgid "On delete"
+msgstr ""
+
+#. module: base
+#: selection:res.lang,direction:0
+msgid "Left-to-Right"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+#: field:res.lang,translatable:0
+msgid "Translatable"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.vn
+msgid "Vietnam"
+msgstr ""
+
+#. module: base
+#: field:res.users,signature:0
+msgid "Signature"
+msgstr ""
+
+#. module: base
+#: code:addons/fields.py:456
+#: code:addons/fields.py:654
+#: code:addons/fields.py:656
+#: code:addons/fields.py:658
+#: code:addons/fields.py:660
+#: code:addons/fields.py:662
+#: code:addons/fields.py:664
+#, python-format
+msgid "Not Implemented"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_widget_user
+msgid "res.widget.user"
+msgstr ""
+
+#. module: base
+#: field:res.partner.category,complete_name:0
+msgid "Full Name"
+msgstr ""
+
+#. module: base
+#: view:base.module.configuration:0
+msgid "_Ok"
+msgstr ""
+
+#. module: base
+#: help:ir.filters,user_id:0
+msgid "False means for every user"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:238
+#, python-format
+msgid "The name of the module must be unique !"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mz
+msgid "Mozambique"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_project_long_term
+msgid "Long Term Planning"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
+#: view:partner.sms.send:0
+#: field:res.log,name:0
+msgid "Message"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window.view,multi:0
+msgid "On Multiple Doc."
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+#: field:res.partner,user_id:0
+msgid "Salesman"
+msgstr ""
+
+#. module: base
+#: field:res.partner,address:0
+#: view:res.partner.address:0
+msgid "Contacts"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3704
+#, python-format
+msgid ""
+"Unable to delete this document because it is used as a default property"
+msgstr ""
+
+#. module: base
+#: view:res.widget.wizard:0
+msgid "Add"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+#: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
+msgid "Apply Scheduled Upgrades"
+msgstr ""
+
+#. module: base
+#: view:res.widget:0
+msgid "Widgets"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cz
+msgid "Czech Republic"
+msgstr ""
+
+#. module: base
+#: view:res.widget.wizard:0
+msgid "Widget Wizard"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.act_ir_actions_todo_form
+msgid ""
+"The configuration wizards are used to help you configure a new instance of "
+"OpenERP. They are launched during the installation of new modules, but you "
+"can choose to restart some wizards manually from this menu."
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:222
+#, python-format
+msgid ""
+"Please use the change password wizard (in User Preferences or User menu) to "
+"change your own password."
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1883
+#, python-format
+msgid "Insufficient fields for Calendar View!"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "Integer"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.report.xml,report_rml:0
+msgid ""
+"The path to the main report file (depending on Report Type) or NULL if the "
+"content is in another data field"
+msgstr ""
+
+#. module: base
+#: help:res.users,company_id:0
+msgid "The company this user is currently working for."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create
+msgid "wizard.ir.model.menu.create"
+msgstr ""
+
+#. module: base
+#: view:workflow.transition:0
+msgid "Transition"
+msgstr ""
+
+#. module: base
+#: field:res.groups,menu_access:0
+msgid "Access Menu"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.na
+msgid "Namibia"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mn
+msgid "Mongolia"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Menus"
+msgstr ""
+
+#. module: base
+#: selection:ir.ui.view,type:0
+msgid "mdx"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bi
+msgid "Burundi"
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+#: view:base.module.import:0
+#: view:base.module.update:0
+#: view:publisher_warranty.contract.wizard:0
+#: view:res.request:0
+msgid "Close"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (MX) / Español (MX)"
+msgstr ""
+
+#. module: base
+#: view:res.log:0
+msgid "My Logs"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bt
+msgid "Bhutan"
+msgstr ""
+
+#. module: base
+#: help:ir.sequence,number_next:0
+msgid "Next number of this sequence"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_11
+msgid "Textile Suppliers"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.url,target:0
+msgid "This Window"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract:0
+msgid "Publisher Warranty Contracts"
+msgstr ""
+
+#. module: base
+#: help:res.log,name:0
+msgid "The logging message."
+msgstr ""
+
+#. module: base
+#: field:base.language.export,format:0
+msgid "File Format"
+msgstr ""
+
+#. module: base
+#: field:res.lang,iso_code:0
+msgid "ISO code"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_config_view
+msgid "res.config.view"
+msgstr ""
+
+#. module: base
+#: view:res.log:0
+#: field:res.log,read:0
+msgid "Read"
+msgstr ""
+
+#. module: base
+#: sql_constraint:res.country:0
+msgid "The name of the country must be unique !"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_country_state
+msgid ""
+"If you are working on the American market, you can manage the different "
+"federal states you are working on from here. Each state is attached to one "
+"country."
+msgstr ""
+
+#. module: base
+#: view:workflow.workitem:0
+msgid "Workflow Workitems"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.vc
+msgid "Saint Vincent & Grenadines"
+msgstr ""
+
+#. module: base
+#: field:ir.mail_server,smtp_pass:0
+#: field:partner.sms.send,password:0
+#: field:res.users,password:0
+msgid "Password"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_model_fields
+#: view:ir.model:0
+#: field:ir.model,field_id:0
+#: model:ir.model,name:base.model_ir_model_fields
+#: view:ir.model.fields:0
+#: model:ir.ui.menu,name:base.ir_model_model_fields
+msgid "Fields"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_employee_form
+msgid "Employees"
+msgstr ""
+
+#. module: base
+#: help:res.log,read:0
+msgid ""
+"If this log item has been read, get() should not send it to the client"
+msgstr ""
+
+#. module: base
+#: field:res.company,rml_header2:0
+#: field:res.company,rml_header3:0
+msgid "RML Internal Header"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,search_view_id:0
+msgid "Search View Ref."
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,installed_version:0
+msgid "Latest version"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.res_partner_canal-act
+msgid ""
+"Track from where is coming your leads and opportunities by creating specific "
+"channels that will be maintained at the creation of a document in the "
+"system. Some examples of channels can be: Website, Phone Call, Reseller, etc."
+msgstr ""
+
+#. module: base
+#: model:res.partner.bank.type.field,name:base.bank_normal_field
+msgid "acc_number"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_address_form
+#: model:ir.ui.menu,name:base.menu_partner_address_form
+msgid "Addresses"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mm
+msgid "Myanmar"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Chinese (CN) / 简体中文"
+msgstr ""
+
+#. module: base
+#: field:res.bank,street:0
+#: field:res.company,street:0
+#: field:res.partner.address,street:0
+#: field:res.partner.bank,street:0
+msgid "Street"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.yu
+msgid "Yugoslavia"
+msgstr ""
+
+#. module: base
+#: field:ir.model.data,name:0
+msgid "XML Identifier"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ca
+msgid "Canada"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module.dependency,state:0
+msgid "Unknown"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_users_my
+msgid "Change My Preferences"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:167
+#, python-format
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: base
+#: field:partner.sms.send,text:0
+msgid "SMS Message"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cm
+msgid "Cameroon"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bf
+msgid "Burkina Faso"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Skipped"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,state:0
+msgid "Custom Field"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,web:0
+msgid "Has a web component"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cc
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,state:0
+#: selection:base.module.import,state:0
+#: selection:base.module.update,state:0
+msgid "init"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "11. %U or %W       ==> 48 (49th week)"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type_field
+msgid "Bank type fields"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Dutch / Nederlands"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_config.py:348
+#, python-format
+msgid ""
+"\n"
+"\n"
+"This addon is already installed on your system"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,interval_number:0
+msgid "Repeat every x."
+msgstr ""
+
+#. module: base
+#: wizard_view:server.action.create,step_1:0
+#: wizard_field:server.action.create,step_1,report:0
+msgid "Select Report"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "1cm 28cm 20cm 28cm"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,maintainer:0
+msgid "Maintainer"
+msgstr ""
+
+#. module: base
+#: field:ir.sequence,suffix:0
+msgid "Suffix"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mo
+msgid "Macau"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.report.xml,name:base.res_partner_address_report
+msgid "Labels"
+msgstr ""
+
+#. module: base
+#: field:partner.massmail.wizard,email_from:0
+msgid "Sender's email"
+msgstr ""
+
+#. module: base
+#: field:ir.default,field_name:0
+msgid "Object Field"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (PE) / Español (PE)"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "French (CH) / Français (CH)"
+msgstr ""
+
+#. module: base
+#: help:res.users,action_id:0
+msgid ""
+"If specified, this action will be opened at logon for this user, in addition "
+"to the standard menu."
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "Client Actions"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1806
+#, python-format
+msgid "The exists method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:423
+#, python-format
+msgid ""
+"You try to upgrade a module that depends on the module: %s.\n"
+"But this module is not available in your system."
+msgstr ""
+
+#. module: base
+#: field:workflow.transition,act_to:0
+msgid "Destination Activity"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "Connect Events to Actions"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_update_translations
+msgid "base.update.translations"
+msgstr ""
+
+#. module: base
+#: field:res.partner.category,parent_id:0
+msgid "Parent Category"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "Integer Big"
+msgstr ""
+
+#. module: base
+#: selection:res.partner.address,type:0
+#: selection:res.partner.title,domain:0
+msgid "Contact"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_menu
+msgid "ir.ui.menu"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.us
+msgid "United States"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Uninstall"
+msgstr ""
+
+#. module: base
+#: view:res.bank:0
+#: view:res.partner:0
+#: view:res.partner.address:0
+msgid "Communication"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "RML Report"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_server_object_lines
+msgid "ir.server.object.lines"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:622
+#, python-format
+msgid "Module %s: Invalid Quality Certificate"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kw
+msgid "Kuwait"
+msgstr ""
+
+#. module: base
+#: field:workflow.workitem,inst_id:0
+msgid "Instance"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.report.xml,attachment:0
+msgid ""
+"This is the filename of the attachment used to store the printing result. "
+"Keep empty to not save the printed reports. You can use a python expression "
+"with the object and time variables."
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "Many2One"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ng
+msgid "Nigeria"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:282
+#, python-format
+msgid "For selection fields, the Selection Options must be given!"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_sms_send
+msgid "SMS Send"
+msgstr ""
+
+#. module: base
+#: field:res.company,user_ids:0
+msgid "Accepted Users"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,web_icon_data:0
+msgid "Web Icon Image"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "Values for Event Type"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Always Searchable"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.hk
+msgid "Hong Kong"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,name:0
+msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_partner_address_form
+msgid ""
+"Customers (also called Partners in other areas of the system) helps you "
+"manage your address book of companies whether they are prospects, customers "
+"and/or suppliers. The partner form allows you to track and record all the "
+"necessary information to interact with your partners from the company "
+"address to their contacts as well as pricelists, and much more. If you "
+"installed the CRM, with the history tab, you can track all the interactions "
+"with a partner such as opportunities, emails, or sales orders issued."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ph
+msgid "Philippines"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ma
+msgid "Morocco"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "2.  %a ,%A         ==> Fri, Friday"
+msgstr ""
+
+#. module: base
+#: field:res.widget,content:0
+msgid "Content"
+msgstr ""
+
+#. module: base
+#: help:ir.rule,global:0
+msgid "If no group is specified the rule is global and applied to everyone"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.td
+msgid "Chad"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_transition
+msgid "workflow.transition"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%a - Abbreviated weekday name."
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Introspection report on objects"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pf
+msgid "Polynesia (French)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.dm
+msgid "Dominica"
+msgstr ""
+
+#. module: base
+#: sql_constraint:publisher_warranty.contract:0
+msgid ""
+"Your publisher warranty contract is already subscribed in the system !"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,nextcall:0
+msgid "Next planned execution date for this scheduler"
+msgstr ""
+
+#. module: base
+#: help:res.config.users,view:0
+#: help:res.users,view:0
+msgid "Choose between the simplified interface and the extended one"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.np
+msgid "Nepal"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2307
+#, python-format
+msgid ""
+"Invalid value for reference field \"%s\" (last part must be a non-zero "
+"integer): \"%s\""
+msgstr ""
+
+#. module: base
+#: help:ir.cron,args:0
+msgid "Arguments to be passed to the method. e.g. (uid,)"
+msgstr ""
+
+#. module: base
+#: help:ir.ui.menu,groups_id:0
+msgid ""
+"If you have groups, the visibility of this menu will be based on these "
+"groups. If this field is empty, OpenERP will compute visibility based on the "
+"related object's read access."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_ui_view_custom
+#: model:ir.ui.menu,name:base.menu_action_ui_view_custom
+#: view:ir.ui.view.custom:0
+msgid "Customized Views"
+msgstr ""
+
+#. module: base
+#: view:partner.sms.send:0
+msgid "Bulk SMS send"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Seconde: %(sec)s"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_view_base_module_update
+msgid "Update Modules List"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:295
+#, python-format
+msgid ""
+"Unable to upgrade module \"%s\" because an external dependency is not met: %s"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:271
+#, python-format
+msgid ""
+"Please keep in mind that documents currently displayed may not be relevant "
+"after switching to another company. If you have unsaved changes, please make "
+"sure to save and close all forms before switching to a different company. "
+"(You can click on Cancel in the User Preferences now)"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Continue"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Thai / ภาษาไทย"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:343
+#, python-format
+msgid "Object %s does not exists"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Slovenian / slovenščina"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,attachment_use:0
+msgid "Reload from Attachment"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bv
+msgid "Bouvet Island"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,name:0
+msgid "Attachment Name"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,data:0
+#: field:base.language.import,data:0
+msgid "File"
+msgstr ""
+
+#. module: base
+#: view:res.config.users:0
+msgid "Add User"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install
+msgid "Module Upgrade Install"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_configuration_wizard
+msgid "ir.actions.configuration.wizard"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%b - Abbreviated month name."
+msgstr ""
+
+#. module: base
+#: field:res.partner,supplier:0
+#: view:res.partner.address:0
+#: field:res.partner.address,is_supplier_add:0
+#: model:res.partner.category,name:base.res_partner_category_8
+msgid "Supplier"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+#: selection:ir.actions.server,state:0
+msgid "Multi Actions"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+#: view:base.language.import:0
+#: view:wizard.ir.model.menu.create:0
+msgid "_Close"
+msgstr ""
+
+#. module: base
+#: field:multi_company.default,company_dest_id:0
+msgid "Default Company"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (EC) / Español (EC)"
+msgstr ""
+
+#. module: base
+#: help:ir.ui.view,xml_id:0
+msgid "ID of the view defined in xml file"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_module_import
+msgid "Import Module"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.as
+msgid "American Samoa"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,res_model:0
+msgid "Model name of the object to open in the view window"
+msgstr ""
+
+#. module: base
+#: field:res.log,secondary:0
+msgid "Secondary Log"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,selectable:0
+msgid "Selectable"
+msgstr ""
+
+#. module: base
+#: view:res.request.link:0
+msgid "Request Link"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+#: selection:ir.attachment,type:0
+#: field:ir.module.module,url:0
+msgid "URL"
+msgstr ""
+
+#. module: base
+#: help:res.country,name:0
+msgid "The full name of the country."
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Iteration"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
+#, python-format
+msgid "UserError"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ae
+msgid "United Arab Emirates"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_crm_case_job_req_main
+msgid "Recruitment"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.re
+msgid "Reunion (French)"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:361
+#, python-format
+msgid ""
+"New column name must still start with x_ , because it is a custom field!"
+msgstr ""
+
+#. module: base
+#: view:ir.model.access:0
+#: view:ir.rule:0
+#: field:ir.rule,global:0
+msgid "Global"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mp
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sb
+msgid "Solomon Islands"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
+#, python-format
+msgid "AccessError"
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+msgid "Waiting"
+msgstr ""
+
+#. module: base
+#: code:addons/__init__.py:834
+#, python-format
+msgid "Could not load base module"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "8.  %I:%M:%S %p  ==> 06:25:20 PM"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1803
+#, python-format
+msgid "The copy method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: field:res.log,create_date:0
+msgid "Creation Date"
+msgstr ""
+
+#. module: base
+#: view:ir.translation:0
+#: model:ir.ui.menu,name:base.menu_translation
+msgid "Translations"
+msgstr ""
+
+#. module: base
+#: field:ir.sequence,padding:0
+msgid "Number padding"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "Report"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ua
+msgid "Ukraine"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.to
+msgid "Tonga"
+msgstr ""
+
+#. module: base
+#: view:ir.module.category:0
+msgid "Module Category"
+msgstr ""
+
+#. module: base
+#: view:partner.wizard.ean.check:0
+msgid "Ignore"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Reference Guide"
+msgstr ""
+
+#. module: base
+#: view:ir.ui.view:0
+msgid "Architecture"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ml
+msgid "Mali"
+msgstr ""
+
+#. module: base
+#: help:res.config.users,email:0
+#: help:res.users,email:0
+msgid ""
+"If an email is provided, the user will be sent a message welcoming him.\n"
+"\n"
+"Warning: if \"email_from\" and \"smtp_server\" aren't configured, it won't "
+"be possible to email new users."
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Flemish (BE) / Vlaams (BE)"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,interval_number:0
+msgid "Interval Number"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tk
+msgid "Tokelau"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_xsl:0
+msgid "XSL path"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bn
+msgid "Brunei Darussalam"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+#: field:ir.actions.act_window,view_type:0
+#: field:ir.actions.act_window.view,view_mode:0
+#: field:ir.ui.view,type:0
+#: field:wizard.ir.model.menu.create.line,view_type:0
+msgid "View Type"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_2
+msgid "User Interface"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,create_date:0
+msgid "Date Created"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_todo
+msgid "ir.actions.todo"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_config.py:94
+#, python-format
+msgid "Couldn't find previous ir.actions.todo"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "General Settings"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_administration_shortcut
+msgid "Custom Shortcuts"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Vietnamese / Tiếng Việt"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.dz
+msgid "Algeria"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.be
+msgid "Belgium"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_osv_memory_autovacuum
+msgid "osv_memory.autovacuum"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,lang:0
+#: field:base.language.install,lang:0
+#: field:base.update.translations,lang:0
+#: field:ir.translation,lang:0
+#: field:res.partner,lang:0
+#: field:res.users,context_lang:0
+msgid "Language"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gm
+msgid "Gambia"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_company_form
+#: model:ir.model,name:base.model_res_company
+#: model:ir.ui.menu,name:base.menu_action_res_company_form
+#: model:ir.ui.menu,name:base.menu_res_company_global
+#: view:res.company:0
+#: field:res.users,company_ids:0
+msgid "Companies"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%H - Hour (24-hour clock) [00,23]."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_widget
+msgid "res.widget"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:290
+#, python-format
+msgid "Model %s does not exist!"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_lang.py:189
+#, python-format
+msgid "You cannot delete the language which is User's Preferred Language !"
+msgstr ""
+
+#. module: base
+#: code:addons/fields.py:103
+#, python-format
+msgid "Not implemented get_memory method !"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+#: field:ir.actions.server,code:0
+#: selection:ir.actions.server,state:0
+msgid "Python Code"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_module_import.py:69
+#, python-format
+msgid "Can not create the module file: %s !"
+msgstr ""
+
+#. module: base
+#: model:ir.module.module,description:base.module_base
+msgid "The kernel of OpenERP, needed for all installation."
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+#: view:base.module.import:0
+#: view:base.module.update:0
+#: view:base.module.upgrade:0
+#: view:base.update.translations:0
+#: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
+#: view:partner.sms.send:0
+#: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
+#: view:res.widget.wizard:0
+msgid "Cancel"
+msgstr ""
+
+#. module: base
+#: selection:base.language.export,format:0
+msgid "PO File"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nt
+msgid "Neutral Zone"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Hindi / हिंदी"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+msgid "Custom"
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+msgid "Current"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_9
+msgid "Components Supplier"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_users
+#: field:ir.default,uid:0
+#: model:ir.ui.menu,name:base.menu_action_res_users
+#: model:ir.ui.menu,name:base.menu_users
+#: view:res.groups:0
+#: field:res.groups,users:0
+#: view:res.users:0
+msgid "Users"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,published_version:0
+msgid "Published Version"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.is
+msgid "Iceland"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_window
+#: model:ir.ui.menu,name:base.menu_ir_action_window
+msgid "Window Actions"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%I - Hour (12-hour clock) [01,12]."
+msgstr ""
+
+#. module: base
+#: selection:publisher_warranty.contract.wizard,state:0
+msgid "Finished"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.de
+msgid "Germany"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Week of the year: %(woy)s"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_14
+msgid "Bad customers"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Reports :"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gy
+msgid "Guyana"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,view_type:0
+msgid ""
+"View type: set to 'tree' for a hierarchical tree view, or 'form' for other "
+"views"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_config.py:385
+#, python-format
+msgid "Click 'Continue' to configure the next addon..."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,record_id:0
+msgid "Create Id"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.hn
+msgid "Honduras"
+msgstr ""
+
+#. module: base
+#: help:res.users,menu_tips:0
+msgid ""
+"Check out this box if you want to always display tips on each menu action"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.eg
+msgid "Egypt"
+msgstr ""
+
+#. module: base
+#: field:ir.rule,perm_read:0
+msgid "Apply For Read"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,model_id:0
+msgid ""
+"Select the object on which the action will work (read, write, create)."
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:629
+#, python-format
+msgid "Please specify server option --email-from !"
+msgstr ""
+
+#. module: base
+#: field:base.language.import,name:0
+msgid "Language Name"
+msgstr ""
+
+#. module: base
+#: selection:ir.property,type:0
+msgid "Boolean"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+msgid "Fields Description"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+#: view:ir.attachment:0
+#: view:ir.cron:0
+#: view:ir.model.access:0
+#: view:ir.model.data:0
+#: view:ir.model.fields:0
+#: view:ir.ui.view:0
+#: view:ir.values:0
+#: view:res.partner:0
+#: view:res.partner.address:0
+#: view:workflow.activity:0
+msgid "Group By..."
+msgstr ""
+
+#. module: base
+#: view:ir.model.fields:0
+#: field:ir.model.fields,readonly:0
+#: field:res.partner.bank.type.field,readonly:0
+msgid "Readonly"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window.view,view_id:0
+#: field:ir.default,page:0
+#: selection:ir.translation,type:0
+#: field:wizard.ir.model.menu.create.line,view_id:0
+msgid "View"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be installed"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.act_window,display_menu_tip:0
+msgid ""
+"It gives the status if the tip has to be displayed or not when a user "
+"executes an action"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+#: model:ir.module.module,shortdesc:base.module_base
+#: field:res.currency,base:0
+msgid "Base"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Telugu / తెలుగు"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lr
+msgid "Liberia"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+#: view:ir.model:0
+#: view:res.groups:0
+#: view:res.partner:0
+#: field:res.partner,comment:0
+#: model:res.widget,title:base.note_widget
+msgid "Notes"
+msgstr ""
+
+#. module: base
+#: field:ir.config_parameter,value:0
+#: field:ir.property,value_binary:0
+#: field:ir.property,value_datetime:0
+#: field:ir.property,value_float:0
+#: field:ir.property,value_integer:0
+#: field:ir.property,value_reference:0
+#: field:ir.property,value_text:0
+#: selection:ir.server.object.lines,type:0
+#: field:ir.server.object.lines,value:0
+#: field:ir.values,value:0
+msgid "Value"
+msgstr ""
+
+#. module: base
+#: field:ir.sequence,code:0
+#: field:ir.sequence.type,code:0
+#: selection:ir.translation,type:0
+#: field:res.partner.bank.type,code:0
+msgid "Code"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_config_installer
+msgid "res.config.installer"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mc
+msgid "Monaco"
+msgstr ""
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Minutes"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Help"
+msgstr ""
+
+#. module: base
+#: help:res.users,menu_id:0
+msgid ""
+"If specified, the action will replace the standard menu for this user."
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Write Object"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_fundrising
+msgid "Fund Raising"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_sequence_type
+#: model:ir.ui.menu,name:base.menu_ir_sequence_type
+msgid "Sequence Codes"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (CO) / Español (CO)"
+msgstr ""
+
+#. module: base
+#: view:base.module.configuration:0
+msgid ""
+"All pending configuration wizards have been executed. You may restart "
+"individual wizards via the list of configuration wizards."
+msgstr ""
+
+#. module: base
+#: wizard_button:server.action.create,step_1,create:0
+msgid "Create"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Current Year with Century: %(year)s"
+msgstr ""
+
+#. module: base
+#: field:ir.exports,export_fields:0
+msgid "Export ID"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.fr
+msgid "France"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_log
+msgid "res.log"
+msgstr ""
+
+#. module: base
+#: help:ir.translation,module:0
+#: help:ir.translation,xml_id:0
+msgid "Maps to the ir_model_data for which this translation is provided."
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.activity,flow_stop:0
+msgid "Flow Stop"
+msgstr ""
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Weeks"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.af
+msgid "Afghanistan, Islamic State of"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
+#, python-format
+msgid "Error !"
+msgstr ""
+
+#. module: base
+#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry
+msgid "country_id"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,interval_type:0
+msgid "Interval Unit"
+msgstr ""
+
+#. module: base
+#: field:publisher_warranty.contract,kind:0
+#: field:workflow.activity,kind:0
+msgid "Kind"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:4368
+#, python-format
+msgid "This method does not exist anymore"
+msgstr ""
+
+#. module: base
+#: field:res.bank,fax:0
+#: field:res.company,fax:0
+#: field:res.partner.address,fax:0
+msgid "Fax"
+msgstr ""
+
+#. module: base
+#: field:res.lang,thousands_sep:0
+msgid "Thousands Separator"
+msgstr ""
+
+#. module: base
+#: field:res.request,create_date:0
+msgid "Created Date"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,loop_action:0
+msgid ""
+"Select the action that will be executed. Loop action will not be avaliable "
+"inside loop."
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Chinese (TW) / 正體字"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_request
+msgid "res.request"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+msgid "In Memory"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+msgid "Todo"
+msgstr ""
+
+#. module: base
+#: field:ir.attachment,datas:0
+msgid "File Content"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pa
+msgid "Panama"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_ltd
+msgid "Ltd"
+msgstr ""
+
+#. module: base
+#: help:workflow.transition,group_id:0
+msgid ""
+"The group that a user must have to be authorized to validate this transition."
+msgstr ""
+
+#. module: base
+#: constraint:res.users:0
+msgid "The chosen company is not in the allowed companies for this user"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gi
+msgid "Gibraltar"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_name:0
+msgid "Service Name"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pn
+msgid "Pitcairn Island"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid ""
+"We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_rule
+#: model:ir.ui.menu,name:base.menu_action_rule
+msgid "Record Rules"
+msgstr ""
+
+#. module: base
+#: field:res.users,name:0
+msgid "User Name"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day of the year: %(doy)s"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+#: view:ir.model.fields:0
+#: view:workflow.activity:0
+msgid "Properties"
+msgstr ""
+
+#. module: base
+#: help:ir.sequence,padding:0
+msgid ""
+"OpenERP will automatically adds some '0' on the left of the 'Next Number' to "
+"get the required padding size."
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%A - Full weekday name."
+msgstr ""
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Months"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,search_view:0
+msgid "Search View"
+msgstr ""
+
+#. module: base
+#: sql_constraint:res.lang:0
+msgid "The code of the language must be unique !"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_attachment
+#: view:ir.actions.report.xml:0
+#: view:ir.attachment:0
+#: model:ir.ui.menu,name:base.menu_action_attachment
+msgid "Attachments"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_base_partner
+#: model:ir.ui.menu,name:base.menu_sale_config_sales
+#: model:ir.ui.menu,name:base.menu_sales
+msgid "Sales"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,child_ids:0
+msgid "Other Actions"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Done"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_miss
+msgid "Miss"
+msgstr ""
+
+#. module: base
+#: view:ir.model.access:0
+#: field:ir.model.access,perm_write:0
+#: view:ir.rule:0
+msgid "Write Access"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%m - Month number [01,12]."
+msgstr ""
+
+#. module: base
+#: field:res.bank,city:0
+#: field:res.company,city:0
+#: field:res.partner,city:0
+#: field:res.partner.address,city:0
+#: field:res.partner.bank,city:0
+msgid "City"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.qa
+msgid "Qatar"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.it
+msgid "Italy"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+#: selection:ir.actions.todo,state:0
+msgid "To Do"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Estonian / Eesti keel"
+msgstr ""
+
+#. module: base
+#: field:res.partner,email:0
+msgid "E-mail"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-3 or later version"
+msgstr ""
+
+#. module: base
+#: field:workflow.activity,action:0
+msgid "Python Action"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "English (US)"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_model_data
+#: view:ir.model.data:0
+#: model:ir.ui.menu,name:base.ir_model_data_menu
+msgid "Object Identifiers"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_partner_title_partner
+msgid ""
+"Manage the partner titles you want to have available in your system. The "
+"partner titles is the legal status of the company: Private Limited, SA, etc."
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid "To browse official translations, you can start with these links:"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:531
+#, python-format
+msgid ""
+"You can not read this document (%s) ! Be sure your user belongs to one of "
+"these groups: %s."
+msgstr ""
+
+#. module: base
+#: view:res.bank:0
+#: view:res.partner.address:0
+msgid "Address"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,latest_version:0
+msgid "Installed version"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Mongolian / монгол"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mr
+msgid "Mauritania"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_translation
+msgid "ir.translation"
+msgstr ""
+
+#. module: base
+#: view:base.module.update:0
+msgid "Module update result"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.workitem,act_id:0
+msgid "Activity"
+msgstr ""
+
+#. module: base
+#: view:res.partner:0
+#: view:res.partner.address:0
+msgid "Postal Address"
+msgstr ""
+
+#. module: base
+#: field:res.company,parent_id:0
+msgid "Parent Company"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (CR) / Español (CR)"
+msgstr ""
+
+#. module: base
+#: field:res.currency.rate,rate:0
+msgid "Rate"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cg
+msgid "Congo"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "Examples"
+msgstr ""
+
+#. module: base
+#: field:ir.default,value:0
+#: view:ir.values:0
+msgid "Default Value"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_tools
+msgid "Tools"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kn
+msgid "Saint Kitts & Nevis Anguilla"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_currency.py:190
+#, python-format
+msgid ""
+"No rate found \n"
+"for the currency: %s \n"
+"at the date: %s"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_ui_view_custom
+msgid ""
+"Customized views are used when users reorganize the content of their "
+"dashboard views (via web client)"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,model:0
+msgid "Object Name"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,srcmodel_id:0
+msgid ""
+"Object in which you want to create / write the object. If it is empty then "
+"refer to the Object field."
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "Not Installed"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.activity,out_transitions:0
+msgid "Outgoing Transitions"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,icon:0
+msgid "Icon"
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,model_id:0
+msgid "The model this field belongs to"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.mq
+msgid "Martinique (French)"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence.type:0
+msgid "Sequences Type"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_request-act
+#: model:ir.ui.menu,name:base.menu_res_request_act
+#: model:ir.ui.menu,name:base.menu_resquest_ref
+#: view:res.request:0
+msgid "Requests"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ye
+msgid "Yemen"
+msgstr ""
+
+#. module: base
+#: selection:workflow.activity,split_mode:0
+msgid "Or"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_log_act_window
+#: model:ir.ui.menu,name:base.menu_res_log_act_window
+msgid "Client Logs"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.al
+msgid "Albania"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ws
+msgid "Samoa"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_lang.py:191
+#, python-format
+msgid ""
+"You cannot delete the language which is Active !\n"
+"Please de-activate the language first."
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+msgid ""
+"Please be patient, this operation may take a few minutes (depending on the "
+"number of modules currently installed)..."
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,child_id:0
+msgid "Child IDs"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#, python-format
+msgid "Problem in configuration `Record Id` in Server Action!"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
+#, python-format
+msgid "ValidateError"
+msgstr ""
+
+#. module: base
+#: view:base.module.import:0
+#: view:base.module.update:0
+msgid "Open Modules"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_res_bank_form
+msgid "Manage bank records you want to be used in the system."
+msgstr ""
+
+#. module: base
+#: view:base.module.import:0
+msgid "Import module"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,loop_action:0
+msgid "Loop Action"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.report.xml,report_file:0
+msgid ""
+"The path to the main report file (depending on Report Type) or NULL if the "
+"content is in another field"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.la
+msgid "Laos"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.server,state:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
+#: field:res.users,user_email:0
+msgid "Email"
+msgstr ""
+
+#. module: base
+#: field:res.users,action_id:0
+msgid "Home Action"
+msgstr ""
+
+#. module: base
+#: code:addons/custom.py:555
+#, python-format
+msgid ""
+"The sum of the data (2nd field) is null.\n"
+"We can't draw a pie chart !"
+msgstr ""
+
+#. module: base
+#: model:ir.module.category,name:base.module_category_reporting
+#: model:ir.ui.menu,name:base.menu_lunch_reporting
+#: model:ir.ui.menu,name:base.menu_project_report
+#: model:ir.ui.menu,name:base.menu_report_association
+#: model:ir.ui.menu,name:base.menu_report_marketing
+#: model:ir.ui.menu,name:base.menu_reporting
+#: model:ir.ui.menu,name:base.next_id_64
+#: model:ir.ui.menu,name:base.next_id_73
+#: model:ir.ui.menu,name:base.reporting_menu
+msgid "Reporting"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tg
+msgid "Togo"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Other Proprietary"
+msgstr ""
+
+#. module: base
+#: selection:workflow.activity,kind:0
+msgid "Stop All"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:412
+#, python-format
+msgid "The read_group method is not implemented on this object !"
+msgstr ""
+
+#. module: base
+#: view:ir.model.data:0
+msgid "Updatable"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "3.  %x ,%X         ==> 12/05/08, 18:25:20"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,on_delete:0
+msgid "Cascade"
+msgstr ""
+
+#. module: base
+#: field:workflow.transition,group_id:0
+msgid "Group Required"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Next Configuration Step"
+msgstr ""
+
+#. module: base
+#: field:res.groups,comment:0
+msgid "Comment"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ro
+msgid "Romania"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,doall:0
+msgid ""
+"Enable this if you want to execute missed occurences as soon as the server "
+"restarts."
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "Start update"
+msgstr ""
+
+#. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:144
+#, python-format
+msgid "Contract validation error"
+msgstr ""
+
+#. module: base
+#: field:res.country.state,name:0
+msgid "State Name"
+msgstr ""
+
+#. module: base
+#: field:workflow.activity,join_mode:0
+msgid "Join Mode"
+msgstr ""
+
+#. module: base
+#: field:res.users,context_tz:0
+msgid "Timezone"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_report_xml
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.report.xml"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,shortcut:base.res_partner_title_miss
+msgid "Mss"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view
+msgid "ir.ui.view"
+msgstr ""
+
+#. module: base
+#: constraint:res.partner:0
+msgid "Error ! You can not create recursive associated members."
+msgstr ""
+
+#. module: base
+#: help:res.lang,code:0
+msgid "This field is used to set/get locales for user"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_2
+msgid "OpenERP Partners"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_hr_manager
+msgid "HR Manager Dashboard"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:293
+#, python-format
+msgid ""
+"Unable to install module \"%s\" because an external dependency is not met: %s"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Search modules"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.by
+msgid "Belarus"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,name:0
+#: field:ir.actions.act_window_close,name:0
+#: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
+#: field:ir.actions.server,name:0
+#: field:ir.actions.url,name:0
+msgid "Action Name"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_res_users
+msgid ""
+"Create and manage users that will connect to the system. Users can be "
+"deactivated should there be a period of time during which they will/should "
+"not connect to the system. You can assign them groups in order to give them "
+"specific access to the applications they need to use in the system."
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,complexity:0
+#: selection:res.request,priority:0
+msgid "Normal"
+msgstr ""
+
+#. module: base
+#: field:res.bank,street2:0
+#: field:res.company,street2:0
+#: field:res.partner.address,street2:0
+msgid "Street2"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_view_base_module_update
+msgid "Module Update"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_module_upgrade.py:95
+#, python-format
+msgid "Following modules are not installed or unknown: %s"
+msgstr ""
+
+#. module: base
+#: view:ir.cron:0
+#: field:ir.cron,user_id:0
+#: field:ir.filters,user_id:0
+#: field:ir.ui.view.custom,user_id:0
+#: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
+#: field:res.log,user_id:0
+#: field:res.partner.event,user_id:0
+#: view:res.users:0
+#: field:res.widget.user,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pr
+msgid "Puerto Rico"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Open Window"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,auto_search:0
+msgid "Auto Search"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,filter:0
+msgid "Filter"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,shortcut:base.res_partner_title_madam
+msgid "Ms."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ch
+msgid "Switzerland"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gd
+msgid "Grenada"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.wf
+msgid "Wallis and Futuna Islands"
+msgstr ""
+
+#. module: base
+#: selection:server.action.create,init,type:0
+msgid "Open Report"
+msgstr ""
+
+#. module: base
+#: field:res.currency,rounding:0
+msgid "Rounding factor"
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+msgid "Load"
+msgstr ""
+
+#. module: base
+#: help:res.users,name:0
+msgid "The new user's real name, used for searching and most listings"
+msgstr ""
+
+#. module: base
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
+#, python-format
+msgid "Integrity Error"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_wizard_screen
+msgid "ir.wizard.screen"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:255
+#, python-format
+msgid "Size of the field can never be less than 1 !"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.so
+msgid "Somalia"
+msgstr ""
+
+#. module: base
+#: selection:publisher_warranty.contract,state:0
+msgid "Terminated"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_13
+msgid "Important customers"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "Update Terms"
+msgstr ""
+
+#. module: base
+#: field:partner.sms.send,mobile_to:0
+#: field:res.request,act_to:0
+#: field:res.request.history,act_to:0
+msgid "To"
+msgstr ""
+
+#. module: base
+#: view:ir.cron:0
+#: field:ir.cron,args:0
+msgid "Arguments"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1260
+#, python-format
+msgid "Database ID doesn't exist: %s : %s"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL Version 2"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL Version 3"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:1388
+#, python-format
+msgid "key '%s' not found in selection field '%s'"
+msgstr ""
+
+#. module: base
+#: view:partner.wizard.ean.check:0
+msgid "Correct EAN13"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2317
+#, python-format
+msgid "The value \"%s\" for the field \"%s\" is not in the selection"
+msgstr ""
+
+#. module: base
+#: field:res.partner,customer:0
+#: view:res.partner.address:0
+#: field:res.partner.address,is_customer_add:0
+#: model:res.partner.category,name:base.res_partner_category_0
+msgid "Customer"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (NI) / Español (NI)"
+msgstr ""
+
+#. module: base
+#: field:ir.module.module,shortdesc:0
+msgid "Short Description"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,context:0
+#: field:ir.filters,context:0
+msgid "Context Value"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Hour 00->24: %(h24)s"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,nextcall:0
+msgid "Next Execution Date"
+msgstr ""
+
+#. module: base
+#: help:multi_company.default,field_id:0
+msgid "Select field property"
+msgstr ""
+
+#. module: base
+#: field:res.request.history,date_sent:0
+msgid "Date sent"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Month: %(month)s"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window.view,sequence:0
+#: field:ir.actions.server,sequence:0
+#: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
+#: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
+#: view:ir.sequence:0
+#: field:ir.ui.menu,sequence:0
+#: view:ir.ui.view:0
+#: field:ir.ui.view,priority:0
+#: field:ir.ui.view_sc,sequence:0
+#: field:multi_company.default,sequence:0
+#: field:res.partner.bank,sequence:0
+#: field:res.widget.user,sequence:0
+#: field:wizard.ir.model.menu.create.line,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tn
+msgid "Tunisia"
+msgstr ""
+
+#. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
+#: model:ir.ui.menu,name:base.menu_mrp_root
+msgid "Manufacturing"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.km
+msgid "Comoros"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_server_action
+#: view:ir.actions.server:0
+#: model:ir.ui.menu,name:base.menu_server_action
+msgid "Server Actions"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Install"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,selection:0
+msgid "Selection Options"
+msgstr ""
+
+#. module: base
+#: field:res.partner.category,parent_right:0
+msgid "Right parent"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "Legends for Date and Time Formats"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Copy Object"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:119
+#, python-format
+msgid ""
+"Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country_state
+#: model:ir.ui.menu,name:base.menu_country_state_partner
+msgid "Fed. States"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+#: view:res.groups:0
+msgid "Access Rules"
+msgstr ""
+
+#. module: base
+#: field:ir.default,ref_table:0
+msgid "Table Ref."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,res_model:0
+#: field:ir.actions.report.xml,model:0
+#: field:ir.actions.server,model_id:0
+#: field:ir.actions.wizard,model:0
+#: field:ir.cron,model:0
+#: field:ir.default,field_tbl:0
+#: field:ir.filters,model_id:0
+#: view:ir.model.access:0
+#: field:ir.model.access,model_id:0
+#: view:ir.model.data:0
+#: view:ir.model.fields:0
+#: field:ir.rule,model_id:0
+#: selection:ir.translation,type:0
+#: view:ir.ui.view:0
+#: field:ir.ui.view,model:0
+#: field:multi_company.default,object_id:0
+#: field:res.log,res_model:0
+#: field:res.request.link,object:0
+#: field:workflow.triggers,model:0
+msgid "Object"
+msgstr ""
+
+#. module: base
+#: code:addons/osv.py:147
+#, python-format
+msgid ""
+"\n"
+"\n"
+"[object with reference: %s - %s]"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_default
+msgid "ir.default"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Minute: %(min)s"
+msgstr ""
+
+#. module: base
+#: view:base.update.translations:0
+#: model:ir.actions.act_window,name:base.action_wizard_update_translations
+#: model:ir.ui.menu,name:base.menu_wizard_update_translations
+msgid "Synchronize Translations"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_10
+msgid "Scheduler"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,numbercall:0
+msgid ""
+"Number of time the function is called,\n"
+"a negative number indicates no limit"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:371
+#, python-format
+msgid ""
+"Changing the type of a column is not yet supported. Please drop it and "
+"create it again!"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view_sc,user_id:0
+msgid "User Ref."
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:118
+#, python-format
+msgid "Warning !"
+msgstr ""
+
+#. module: base
+#: model:res.widget,title:base.google_maps_widget
+msgid "Google Maps"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_base_config
+#: model:ir.ui.menu,name:base.menu_config
+#: model:ir.ui.menu,name:base.menu_event_config
+#: model:ir.ui.menu,name:base.menu_lunch_survey_root
+#: model:ir.ui.menu,name:base.menu_marketing_config_association
+#: model:ir.ui.menu,name:base.menu_marketing_config_root
+#: view:res.company:0
+#: model:res.groups,name:base.group_system
+msgid "Configuration"
+msgstr "Nustatymai"
+
+#. module: base
+#: model:ir.model,name:base.model_publisher_warranty_contract_wizard
+msgid "publisher_warranty.contract.wizard"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,expression:0
+msgid "Loop Expression"
+msgstr ""
+
+#. module: base
+#: field:publisher_warranty.contract,date_start:0
+msgid "Starting Date"
+msgstr ""
+
+#. module: base
+#: help:res.partner,website:0
+msgid "Website of Partner"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_5
+msgid "Gold Partner"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner
+#: field:res.company,partner_id:0
+#: view:res.partner.address:0
+#: field:res.partner.event,partner_id:0
+#: selection:res.partner.title,domain:0
+#: model:res.request.link,name:base.req_link_partner
+msgid "Partner"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tr
+msgid "Turkey"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.fk
+msgid "Falkland Islands"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lb
+msgid "Lebanon"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+#: field:ir.actions.report.xml,report_type:0
+msgid "Report Type"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.todo,state:0
+#: field:ir.module.module,state:0
+#: field:ir.module.module.dependency,state:0
+#: field:publisher_warranty.contract,state:0
+#: view:res.country.state:0
+#: view:res.request:0
+#: field:res.request,state:0
+#: field:workflow.instance,state:0
+#: field:workflow.workitem,state:0
+msgid "State"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Galician / Galego"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.no
+msgid "Norway"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "4.  %b, %B         ==> Dec, December"
+msgstr ""
+
+#. module: base
+#: view:base.language.install:0
+#: model:ir.ui.menu,name:base.menu_view_base_language_install
+msgid "Load an Official Translation"
+msgstr ""
+
+#. module: base
+#: view:res.currency:0
+msgid "Miscelleanous"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_10
+msgid "Open Source Service Company"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kg
+msgid "Kyrgyz Republic (Kyrgyzstan)"
+msgstr ""
+
+#. module: base
+#: selection:res.request,state:0
+msgid "waiting"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_file:0
+msgid "Report file"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_triggers
+msgid "workflow.triggers"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:74
+#, python-format
+msgid "Invalid search criterions"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Created"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.wizard,multi:0
+msgid ""
+"If set to true, the wizard will not be displayed on the right toolbar of a "
+"form view."
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid "- type,name,res_id,src,value"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.hm
+msgid "Heard and McDonald Islands"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,view_id:0
+msgid "View Ref."
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Selection"
+msgstr ""
+
+#. module: base
+#: field:res.company,rml_header1:0
+msgid "Report Header"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,type:0
+#: field:ir.actions.act_window_close,type:0
+#: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
+#: field:ir.actions.report.xml,type:0
+#: view:ir.actions.server:0
+#: field:ir.actions.server,state:0
+#: field:ir.actions.server,type:0
+#: field:ir.actions.url,type:0
+#: field:ir.actions.wizard,type:0
+msgid "Action Type"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:308
+#, python-format
+msgid ""
+"You try to install module '%s' that depends on module '%s'.\n"
+"But the latter module is not available in your system."
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+#: model:ir.actions.act_window,name:base.action_view_base_import_language
+#: model:ir.ui.menu,name:base.menu_view_base_import_language
+msgid "Import Translation"
+msgstr ""
+
+#. module: base
+#: field:res.partner.bank.type,field_ids:0
+msgid "Type fields"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
+#: field:ir.module.module,category_id:0
+msgid "Category"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+#: selection:ir.attachment,type:0
+#: selection:ir.property,type:0
+msgid "Binary"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,sms:0
+#: selection:ir.actions.server,state:0
+msgid "SMS"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cr
+msgid "Costa Rica"
+msgstr ""
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Conditions"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_other_form
+msgid "Other Partners"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_currency_form
+#: model:ir.ui.menu,name:base.menu_action_currency_form
+#: view:res.currency:0
+msgid "Currencies"
+msgstr ""
+
+#. module: base
+#: sql_constraint:res.groups:0
+msgid "The name of the group must be unique !"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Hour 00->12: %(h12)s"
+msgstr ""
+
+#. module: base
+#: help:res.partner.address,active:0
+msgid "Uncheck the active field to hide the contact."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_widget_wizard
+msgid "Add a widget for User"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.dk
+msgid "Denmark"
+msgstr ""
+
+#. module: base
+#: field:res.country,code:0
+msgid "Country Code"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_instance
+msgid "workflow.instance"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:471
+#, python-format
+msgid "Unknown attribute %s in %s "
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "10. %S              ==> 20"
+msgstr ""
+
+#. module: base
+#: code:addons/fields.py:122
+#, python-format
+msgid "undefined get method !"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Norwegian Bokmål / Norsk bokmål"
+msgstr ""
+
+#. module: base
+#: help:res.config.users,new_password:0
+#: help:res.users,new_password:0
+msgid ""
+"Only specify a value if you want to change the user password. This user will "
+"have to logout and login again!"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_madam
+msgid "Madam"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ee
+msgid "Estonia"
+msgstr ""
+
+#. module: base
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
+msgid "Dashboards"
+msgstr ""
+
+#. module: base
+#: help:ir.attachment,type:0
+msgid "Binary File or external URL"
+msgstr ""
+
+#. module: base
+#: field:res.config.users,new_password:0
+#: field:res.users,new_password:0
+msgid "Change password"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nl
+msgid "Netherlands"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_4
+msgid "Low Level Objects"
+msgstr ""
+
+#. module: base
+#: view:res.company:0
+msgid "Your Logo - Use a size of about 450x150 pixels."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_values
+msgid "ir.values"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Occitan (FR, post 1500) / Occitan"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.open_module_tree
+msgid ""
+"You can install new modules in order to activate new features, menu, reports "
+"or data in your OpenERP instance. To install some modules, click on the "
+"button \"Schedule for Installation\" from the form view, then click on "
+"\"Apply Scheduled Upgrades\" to migrate your system."
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_emails
+#: model:ir.ui.menu,name:base.menu_mail_gateway
+msgid "Emails"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cd
+msgid "Congo, The Democratic Republic of the"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Malayalam / മലയാളം"
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+#: field:res.request,body:0
+#: field:res.request.history,req_id:0
+msgid "Request"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.jp
+msgid "Japan"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,numbercall:0
+msgid "Number of Calls"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+#: field:base.module.upgrade,module_info:0
+msgid "Modules to update"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,sequence:0
+msgid ""
+"Important when you deal with multiple actions, the execution order will be "
+"decided based on this, low number is higher priority."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,header:0
+msgid "Add RML header"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gr
+msgid "Greece"
+msgstr ""
+
+#. module: base
+#: field:res.request,trigger_date:0
+msgid "Trigger Date"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Croatian / hrvatski jezik"
+msgstr ""
+
+#. module: base
+#: field:base.language.import,overwrite:0
+#: field:base.language.install,overwrite:0
+msgid "Overwrite Existing Terms"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,code:0
+msgid "Python code to be executed"
+msgstr ""
+
+#. module: base
+#: sql_constraint:res.country:0
+msgid "The code of the country must be unique !"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module.dependency,state:0
+msgid "Uninstallable"
+msgstr ""
+
+#. module: base
+#: view:res.partner.category:0
+msgid "Partner Category"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+#: selection:ir.actions.server,state:0
+msgid "Trigger"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_module_update
+msgid "Update Module"
+msgstr ""
+
+#. module: base
+#: view:ir.model.fields:0
+#: field:ir.model.fields,translate:0
+msgid "Translate"
+msgstr ""
+
+#. module: base
+#: field:res.request.history,body:0
+msgid "Body"
+msgstr ""
+
+#. module: base
+#: view:partner.massmail.wizard:0
+msgid "Send Email"
+msgstr ""
+
+#. module: base
+#: field:res.users,menu_id:0
+msgid "Menu Action"
+msgstr ""
+
+#. module: base
+#: help:ir.model.fields,selection:0
+msgid ""
+"List of options for a selection field, specified as a Python expression "
+"defining a list of (key, label) pairs. For example: "
+"[('blue','Blue'),('yellow','Yellow')]"
+msgstr ""
+
+#. module: base
+#: selection:base.language.export,state:0
+msgid "choose"
+msgstr ""
+
+#. module: base
+#: help:ir.model,osv_memory:0
+msgid ""
+"Indicates whether this object model lives in memory only, i.e. is not "
+"persisted (osv.osv_memory)"
+msgstr ""
+
+#. module: base
+#: field:res.partner,child_ids:0
+#: field:res.request,ref_partner_id:0
+msgid "Partner Ref."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_supplier_form
+#: model:ir.ui.menu,name:base.menu_procurement_management_supplier_name
+#: view:res.partner:0
+msgid "Suppliers"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract.wizard:0
+msgid "Register"
+msgstr ""
+
+#. module: base
+#: field:res.request,ref_doc2:0
+msgid "Document Ref 2"
+msgstr ""
+
+#. module: base
+#: field:res.request,ref_doc1:0
+msgid "Document Ref 1"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ga
+msgid "Gabon"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_data
+msgid "ir.model.data"
+msgstr ""
+
+#. module: base
+#: view:ir.model:0
+#: view:ir.rule:0
+#: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
+msgid "Access Rights"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gl
+msgid "Greenland"
+msgstr ""
+
+#. module: base
+#: field:res.partner.bank,acc_number:0
+msgid "Account Number"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "1.  %c              ==> Fri Dec  5 18:25:20 2008"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.nc
+msgid "New Caledonia (French)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cy
+msgid "Cyprus"
+msgstr ""
+
+#. module: base
+#: view:base.module.import:0
+msgid ""
+"This wizard helps you add a new language to you OpenERP system. After "
+"loading a new language it becomes available as default interface language "
+"for users and partners."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,subject:0
+#: field:partner.massmail.wizard,subject:0
+#: field:res.request,name:0
+msgid "Subject"
+msgstr ""
+
+#. module: base
+#: field:res.request,act_from:0
+#: field:res.request.history,act_from:0
+msgid "From"
+msgstr ""
+
+#. module: base
+#: view:res.users:0
+msgid "Preferences"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_consumers0
+msgid "Consumers"
+msgstr ""
+
+#. module: base
+#: view:res.config:0
+#: wizard_button:server.action.create,init,step_1:0
+msgid "Next"
+msgstr ""
+
+#. module: base
+#: help:ir.cron,function:0
+msgid ""
+"Name of the method to be called on the object when this scheduler is "
+"executed."
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:251
+#, python-format
+msgid ""
+"The Selection Options expression is must be in the [('key','Label'), ...] "
+"format!"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "Miscellaneous"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cn
+msgid "China"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_user.py:516
+#, python-format
+msgid ""
+"--\n"
+"%(name)s %(email)s\n"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.eh
+msgid "Western Sahara"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_workflow
+msgid "workflow"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_res_company_form
+msgid ""
+"Create and manage the companies that will be managed by OpenERP from here. "
+"Shops or subsidiaries can be created and maintained from here."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.id
+msgid "Indonesia"
+msgstr ""
+
+#. module: base
+#: view:base.update.translations:0
+msgid ""
+"This wizard will detect new terms to translate in the application, so that "
+"you can then add translations manually or perform a complete export (as a "
+"template for a new language example)."
+msgstr ""
+
+#. module: base
+#: help:multi_company.default,expression:0
+msgid ""
+"Expression, must be True to match\n"
+"use context.get or user (browse)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bg
+msgid "Bulgaria"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract.wizard:0
+msgid "Publisher warranty contract successfully registered!"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ao
+msgid "Angola"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tf
+msgid "French Southern Territories"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_currency
+#: field:res.company,currency_id:0
+#: field:res.company,currency_ids:0
+#: view:res.currency:0
+#: field:res.currency,name:0
+#: field:res.currency.rate,currency_id:0
+msgid "Currency"
+msgstr ""
+
+#. module: base
+#: field:res.partner.canal,name:0
+msgid "Channel Name"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "5.  %y, %Y         ==> 08, 2008"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,shortcut:base.res_partner_title_ltd
+msgid "ltd"
+msgstr ""
+
+#. module: base
+#: field:res.log,res_id:0
+msgid "Object ID"
+msgstr ""
+
+#. module: base
+#: view:res.company:0
+msgid "Landscape"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
+msgid "Administration"
+msgstr ""
+
+#. module: base
+#: view:base.module.update:0
+msgid "Click on Update below to start the process..."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ir
+msgid "Iran"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_widget_user_act_window
+#: model:ir.ui.menu,name:base.menu_res_widget_user_act_window
+msgid "Widgets per User"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Slovak / Slovenský jazyk"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,state:0
+#: field:ir.ui.menu,icon_pict:0
+#: field:publisher_warranty.contract.wizard,state:0
+msgid "unknown"
+msgstr ""
+
+#. module: base
+#: field:res.currency,symbol:0
+msgid "Symbol"
+msgstr ""
+
+#. module: base
+#: help:res.users,login:0
+msgid "Used to log into the system"
+msgstr ""
+
+#. module: base
+#: view:base.update.translations:0
+msgid "Synchronize Translation"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view_sc,res_id:0
+msgid "Resource Ref."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ki
+msgid "Kiribati"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.iq
+msgid "Iraq"
+msgstr ""
+
+#. module: base
+#: model:ir.module.category,name:base.module_category_association
+#: model:ir.ui.menu,name:base.menu_association
+msgid "Association"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cl
+msgid "Chile"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_address_book
+#: model:ir.ui.menu,name:base.menu_config_address_book
+#: model:ir.ui.menu,name:base.menu_procurement_management_supplier
+msgid "Address Book"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_sequence_type
+msgid "ir.sequence.type"
+msgstr ""
+
+#. module: base
+#: selection:base.language.export,format:0
+msgid "CSV File"
+msgstr ""
+
+#. module: base
+#: field:res.company,account_no:0
+msgid "Account No."
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_lang.py:187
+#, python-format
+msgid "Base Language 'en_US' can not be deleted !"
+msgstr ""
+
+#. module: base
+#: selection:ir.model,state:0
+msgid "Base Object"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "Dependencies :"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,field_description:0
+msgid "Field Label"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.dj
+msgid "Djibouti"
+msgstr ""
+
+#. module: base
+#: field:ir.translation,value:0
+msgid "Translation Value"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ag
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:3669
+#, python-format
+msgid ""
+"Operation prohibited by access rules, or performed on an already deleted "
+"document (Operation: %s, Document type: %s)."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.zr
+msgid "Zaire"
+msgstr ""
+
+#. module: base
+#: field:ir.translation,res_id:0
+#: field:workflow.instance,res_id:0
+#: field:workflow.triggers,res_id:0
+msgid "Resource ID"
+msgstr ""
+
+#. module: base
+#: view:ir.cron:0
+#: field:ir.model,info:0
+msgid "Information"
+msgstr ""
+
+#. module: base
+#: view:res.widget.user:0
+msgid "User Widgets"
+msgstr ""
+
+#. module: base
+#: view:base.module.update:0
+msgid "Update Module List"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
+#: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
+msgid "Other"
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+msgid "Reply"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Turkish / Türkçe"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_activity_form
+#: model:ir.ui.menu,name:base.menu_workflow_activity
+#: view:workflow:0
+#: field:workflow,activities:0
+msgid "Activities"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,auto_refresh:0
+msgid "Auto-Refresh"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:74
+#, python-format
+msgid "The osv_memory field can only be compared with = and != operator."
+msgstr ""
+
+#. module: base
+#: selection:ir.ui.view,type:0
+msgid "Diagram"
+msgstr ""
+
+#. module: base
+#: help:multi_company.default,name:0
+msgid "Name it to easily find a record"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.grant_menu_access
+#: model:ir.ui.menu,name:base.menu_grant_menu_access
+msgid "Menu Items"
+msgstr ""
+
+#. module: base
+#: constraint:ir.rule:0
+msgid "Rules are not supported for osv_memory objects !"
+msgstr ""
+
+#. module: base
+#: model:ir.module.module,shortdesc:base.module_event
+#: model:ir.ui.menu,name:base.menu_event_main
+msgid "Events Organisation"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_sequence_actions
+#: model:ir.ui.menu,name:base.menu_custom_action
+#: model:ir.ui.menu,name:base.menu_ir_sequence_actions
+#: model:ir.ui.menu,name:base.next_id_6
+#: view:workflow.activity:0
+msgid "Actions"
+msgstr ""
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "High"
+msgstr ""
+
+#. module: base
+#: field:ir.exports.line,export_id:0
+msgid "Export"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.hr
+msgid "Croatia"
+msgstr ""
+
+#. module: base
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
+msgid "Bank Identifier Code"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tm
+msgid "Turkmenistan"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
+#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
+#: code:addons/base/publisher_warranty/publisher_warranty.py:163
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.pm
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.report.xml,header:0
+msgid "Add or not the coporate RML header"
+msgstr ""
+
+#. module: base
+#: help:workflow.transition,act_to:0
+msgid "The destination activity."
+msgstr ""
+
+#. module: base
+#: view:base.module.update:0
+#: view:base.module.upgrade:0
+#: view:base.update.translations:0
+msgid "Update"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.report.xml,name:base.ir_module_reference_print
+msgid "Technical guide"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tz
+msgid "Tanzania"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Danish / Dansk"
+msgstr ""
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Advanced Search (deprecated)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.cx
+msgid "Christmas Island"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Other Actions Configuration"
+msgstr ""
+
+#. module: base
+#: view:res.config.installer:0
+msgid "Install Modules"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_partner_canal-act
+#: model:ir.model,name:base.model_res_partner_canal
+#: model:ir.ui.menu,name:base.menu_res_partner_canal-act
+#: view:res.partner.canal:0
+msgid "Channels"
+msgstr ""
+
+#. module: base
+#: view:ir.ui.view:0
+msgid "Extra Info"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form_action
+#: model:ir.ui.menu,name:base.menu_values_form_action
+msgid "Client Events"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule for Installation"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_partner_wizard_ean_check
+msgid "Ean Check"
+msgstr ""
+
+#. module: base
+#: sql_constraint:res.users:0
+msgid "You can not have two users with the same login !"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_multi_company_default
+msgid "Default multi company"
+msgstr ""
+
+#. module: base
+#: view:res.request:0
+msgid "Send"
+msgstr ""
+
+#. module: base
+#: field:res.users,menu_tips:0
+msgid "Menu Tips"
+msgstr ""
+
+#. module: base
+#: field:ir.translation,src:0
+msgid "Source"
+msgstr ""
+
+#. module: base
+#: help:res.partner.address,partner_id:0
+msgid "Keep empty for a private address, not related to partner."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.vu
+msgid "Vanuatu"
+msgstr ""
+
+#. module: base
+#: view:res.company:0
+msgid "Internal Header/Footer"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_export_language.py:59
+#, python-format
+msgid ""
+"Save this document to a .tgz file. This archive containt UTF-8 %s files and "
+"may be uploaded to launchpad."
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "Start configuration"
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid "_Export"
+msgstr ""
+
+#. module: base
+#: field:base.language.install,state:0
+#: field:base.module.import,state:0
+#: field:base.module.update,state:0
+msgid "state"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Catalan / Català"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.do
+msgid "Dominican Republic"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Serbian (Cyrillic) / српски"
+msgstr ""
+
+#. module: base
+#: code:addons/orm.py:2527
+#, python-format
+msgid ""
+"Invalid group_by specification: \"%s\".\n"
+"A group_by specification must be a list of valid fields."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sa
+msgid "Saudi Arabia"
+msgstr ""
+
+#. module: base
+#: help:res.partner,supplier:0
+msgid ""
+"Check this box if the partner is a supplier. If it's not checked, purchase "
+"people will not see it when encoding a purchase order."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,trigger_obj_id:0
+#: field:ir.model.fields,relation_field:0
+msgid "Relation Field"
+msgstr ""
+
+#. module: base
+#: view:res.partner.event:0
+msgid "Event Logs"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_module_configuration.py:38
+#, python-format
+msgid "System Configuration done"
+msgstr ""
+
+#. module: base
+#: field:workflow.triggers,instance_id:0
+msgid "Destination Instance"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,multi:0
+#: field:ir.actions.wizard,multi:0
+msgid "Action on Multiple Doc."
+msgstr ""
+
+#. module: base
+#: view:base.language.export:0
+msgid "https://translations.launchpad.net/openobject"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_xml:0
+msgid "XML path"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,restart:0
+msgid "On Skip"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gn
+msgid "Guinea"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lu
+msgid "Luxembourg"
+msgstr ""
+
+#. module: base
+#: help:ir.values,key2:0
+msgid ""
+"The kind of action or button in the client side that will trigger the action."
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_ui_menu.py:284
+#, python-format
+msgid "Error ! You can not create recursive Menu."
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard
+#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add
+#: view:publisher_warranty.contract.wizard:0
+msgid "Register a Contract"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid ""
+"3. If user belongs to several groups, the results from step 2 are combined "
+"with logical OR operator"
+msgstr ""
+
+#. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:145
+#, python-format
+msgid "Please check your publisher warranty contract name and validity."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sv
+msgid "El Salvador"
+msgstr ""
+
+#. module: base
+#: field:res.bank,phone:0
+#: field:res.company,phone:0
+#: field:res.partner,phone:0
+#: field:res.partner.address,phone:0
+msgid "Phone"
+msgstr ""
+
+#. module: base
+#: field:ir.cron,active:0
+#: field:ir.sequence,active:0
+#: field:res.bank,active:0
+#: field:res.currency,active:0
+#: field:res.lang,active:0
+#: field:res.partner,active:0
+#: field:res.partner.address,active:0
+#: field:res.partner.category,active:0
+#: field:res.request,active:0
+#: field:res.users,active:0
+#: view:workflow.instance:0
+#: view:workflow.workitem:0
+msgid "Active"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.th
+msgid "Thailand"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_crm_config_lead
+msgid "Leads & Opportunities"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Romanian / română"
+msgstr ""
+
+#. module: base
+#: view:res.log:0
+msgid "System Logs"
+msgstr ""
+
+#. module: base
+#: selection:workflow.activity,join_mode:0
+#: selection:workflow.activity,split_mode:0
+msgid "And"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,relation:0
+msgid "Object Relation"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+#: view:res.partner:0
+msgid "General"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.uz
+msgid "Uzbekistan"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.act_window"
+msgstr ""
+
+#. module: base
+#: field:ir.rule,perm_create:0
+msgid "Apply For Create"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.vi
+msgid "Virgin Islands (USA)"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tw
+msgid "Taiwan"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_currency_rate
+msgid "Currency Rate"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.grant_menu_access
+msgid ""
+"Manage and customize the items available and displayed in your OpenERP "
+"system menu. You can delete an item by clicking on the box at the beginning "
+"of each line and then delete it through the button that appeared. Items can "
+"be assigned to specific groups in order to make them accessible to some "
+"users within the system."
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view,field_parent:0
+msgid "Child Field"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,usage:0
+#: field:ir.actions.act_window_close,usage:0
+#: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
+#: field:ir.actions.report.xml,usage:0
+#: field:ir.actions.server,usage:0
+#: field:ir.actions.wizard,usage:0
+msgid "Action Usage"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_workitem
+msgid "workflow.workitem"
+msgstr ""
+
+#. module: base
+#: selection:ir.module.module,state:0
+msgid "Not Installable"
+msgstr ""
+
+#. module: base
+#: report:ir.module.reference.graph:0
+msgid "View :"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,view_load:0
+msgid "View Auto-Load"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:264
+#, python-format
+msgid "You cannot remove the field '%s' !"
+msgstr ""
+
+#. module: base
+#: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
+#: view:ir.property:0
+#: field:ir.property,res_id:0
+msgid "Resource"
+msgstr ""
+
+#. module: base
+#: field:ir.ui.menu,web_icon:0
+msgid "Web Icon File"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Persian / فارس"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "View Ordering"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/base_module_upgrade.py:95
+#, python-format
+msgid "Unmet dependency !"
+msgstr ""
+
+#. module: base
+#: view:base.language.import:0
+msgid ""
+"Supported file formats: *.csv (Comma-separated values) or *.po (GetText "
+"Portable Objects)"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:534
+#, python-format
+msgid ""
+"You can not delete this document (%s) ! Be sure your user belongs to one of "
+"these groups: %s."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_base_module_configuration
+msgid "base.module.configuration"
+msgstr ""
+
+#. module: base
+#: field:base.language.export,name:0
+#: field:ir.attachment,datas_fname:0
+msgid "Filename"
+msgstr ""
+
+#. module: base
+#: field:ir.model,access_ids:0
+#: view:ir.model.access:0
+msgid "Access"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sk
+msgid "Slovak Republic"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.publisher_warranty
+msgid "Publisher Warranty"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.aw
+msgid "Aruba"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ar
+msgid "Argentina"
+msgstr ""
+
+#. module: base
+#: field:res.groups,full_name:0
+msgid "Group Name"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.bh
+msgid "Bahrain"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_12
+msgid "Segmentation"
+msgstr ""
+
+#. module: base
+#: view:ir.attachment:0
+#: field:ir.attachment,company_id:0
+#: field:ir.default,company_id:0
+#: field:ir.property,company_id:0
+#: field:ir.sequence,company_id:0
+#: field:ir.values,company_id:0
+#: view:res.company:0
+#: field:res.currency,company_id:0
+#: field:res.partner,company_id:0
+#: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
+#: view:res.users:0
+#: field:res.users,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: base
+#: view:res.users:0
+msgid "Email & Signature"
+msgstr ""
+
+#. module: base
+#: view:publisher_warranty.contract:0
+msgid "Publisher Warranty Contract"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Bulgarian / български език"
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_aftersale
+msgid "After-Sale Services"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.todo:0
+msgid "Launch"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.act_window,limit:0
+msgid "Limit"
+msgstr ""
+
+#. module: base
+#: help:ir.actions.server,wkf_model_id:0
+msgid "Workflow to be executed on this model."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.jm
+msgid "Jamaica"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_partner_category_form
+msgid ""
+"Manage the partner categories in order to better classify them for tracking "
+"and analysis purposes. A partner may belong to several categories and "
+"categories have a hierarchy structure: a partner belonging to a category "
+"also belong to his parent category."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.az
+msgid "Azerbaijan"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
+#, python-format
+msgid "Warning"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Arabic / الْعَرَبيّة"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.vg
+msgid "Virgin Islands (British)"
+msgstr ""
+
+#. module: base
+#: view:ir.property:0
+#: model:ir.ui.menu,name:base.next_id_15
+msgid "Parameters"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Czech / Čeština"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Trigger Configuration"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,help:base.action_partner_supplier_form
+msgid ""
+"You can access all information regarding your suppliers from the supplier "
+"form: accounting data, history of emails, meetings, purchases, etc. You can "
+"uncheck the 'Suppliers' filter button in order to search in all your "
+"partners, including customers and prospects."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.rw
+msgid "Rwanda"
+msgstr ""
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day of the week (0:Monday): %(weekday)s"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.ck
+msgid "Cook Islands"
+msgstr ""
+
+#. module: base
+#: field:ir.model.data,noupdate:0
+msgid "Non Updatable"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Klingon"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sg
+msgid "Singapore"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window,target:0
+msgid "Current Window"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "Action Source"
+msgstr ""
+
+#. module: base
+#: view:res.config.view:0
+msgid ""
+"If you use OpenERP for the first time we strongly advise you to select the "
+"simplified interface, which has less features but is easier. You can always "
+"switch later from the user preferences."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_country
+#: field:res.bank,country:0
+#: field:res.company,country_id:0
+#: view:res.country:0
+#: field:res.country.state,country_id:0
+#: field:res.partner,country:0
+#: view:res.partner.address:0
+#: field:res.partner.address,country_id:0
+#: field:res.partner.bank,country_id:0
+msgid "Country"
+msgstr ""
+
+#. module: base
+#: field:ir.model.fields,complete_name:0
+#: field:ir.ui.menu,complete_name:0
+msgid "Complete Name"
+msgstr ""
+
+#. module: base
+#: field:ir.values,object:0
+msgid "Is Object"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid ""
+"1. Global rules are combined together with a logical AND operator, and with "
+"the result of the following steps"
+msgstr ""
+
+#. module: base
+#: field:res.partner.category,name:0
+msgid "Category Name"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_15
+msgid "IT sector"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Select Groups"
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%X - Appropriate time representation."
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Spanish (SV) / Español (SV)"
+msgstr ""
+
+#. module: base
+#: help:res.lang,grouping:0
+msgid ""
+"The Separator Format should be like [,n] where 0 < n :starting from Unit "
+"digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be "
+"1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as "
+"106,500. Provided ',' as the thousand separator in each case."
+msgstr ""
+
+#. module: base
+#: view:res.company:0
+msgid "Portrait"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:357
+#, python-format
+msgid "Can only rename one column at a time!"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Button"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Report/Template"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.act_window.view,view_mode:0
+#: selection:ir.ui.view,type:0
+#: selection:wizard.ir.model.menu.create.line,view_type:0
+msgid "Graph"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_server
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.server"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.configuration.wizard,progress:0
+#: field:res.config,progress:0
+#: field:res.config.installer,progress:0
+#: field:res.config.users,progress:0
+#: field:res.config.view,progress:0
+msgid "Configuration Progress"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
+#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
+#: model:ir.ui.menu,name:base.next_id_11
+msgid "Configuration Wizards"
+msgstr ""
+
+#. module: base
+#: field:res.lang,code:0
+msgid "Locale Code"
+msgstr ""
+
+#. module: base
+#: field:workflow.activity,split_mode:0
+msgid "Split Mode"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "Note that this operation might take a few minutes."
+msgstr ""
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_localisation
+msgid "Localisation"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Action to Launch"
+msgstr ""
+
+#. module: base
+#: view:ir.cron:0
+msgid "Execution"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,condition:0
+#: view:ir.values:0
+#: field:workflow.transition,condition:0
+msgid "Condition"
+msgstr ""
+
+#. module: base
+#: help:ir.values,model_id:0
+msgid "This field is not used, it only helps you to select a good model."
+msgstr ""
+
+#. module: base
+#: field:ir.ui.view,name:0
+msgid "View Name"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Italian / Italiano"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,attachment:0
+msgid "Save As Attachment Prefix"
+msgstr ""
+
+#. module: base
+#: view:ir.actions.server:0
+msgid ""
+"Only one client action will be executed, last client action will be "
+"considered in case of multiple client actions."
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%j - Day of the year [001,366]."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.server,mobile:0
+msgid "Mobile No"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_by_category
+#: model:ir.actions.act_window,name:base.action_partner_category_form
+#: model:ir.model,name:base.model_res_partner_category
+#: model:ir.ui.menu,name:base.menu_partner_category_form
+#: view:res.partner.category:0
+msgid "Partner Categories"
+msgstr ""
+
+#. module: base
+#: view:base.module.upgrade:0
+msgid "System Update"
+msgstr ""
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Field"
+msgstr ""
+
+#. module: base
+#: help:ir.sequence,prefix:0
+msgid "Prefix value of the record for the sequence"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sc
+msgid "Seychelles"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
+#: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
+#: view:res.partner.bank:0
+msgid "Bank Accounts"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.sl
+msgid "Sierra Leone"
+msgstr ""
+
+#. module: base
+#: view:res.company:0
+#: view:res.partner:0
+msgid "General Information"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.tc
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#. module: base
+#: field:res.partner.bank,partner_id:0
+msgid "Account Owner"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_users.py:270
+#, python-format
+msgid "Company Switch Warning"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_widget_wizard
+msgid "Homepage Widgets Management"
+msgstr ""
+
+#. module: base
+#: field:workflow,osv:0
+#: field:workflow.instance,res_type:0
+msgid "Resource Object"
+msgstr ""
+
+#. module: base
+#: help:ir.sequence,number_increment:0
+msgid "The next number of the sequence will be incremented by this number"
+msgstr ""
+
+#. module: base
+#: field:res.partner.address,function:0
+#: selection:workflow.activity,kind:0
+msgid "Function"
+msgstr ""
+
+#. module: base
+#: view:res.widget:0
+msgid "Search Widget"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,restart:0
+msgid "Never"
+msgstr ""
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Delivery"
+msgstr ""
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_pvt_ltd
+#: model:res.partner.title,shortcut:base.res_partner_title_pvt_ltd
+msgid "Corp."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.gw
+msgid "Guinea Bissau"
+msgstr ""
+
+#. module: base
+#: view:workflow.instance:0
+msgid "Workflow Instances"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/res_partner.py:284
+#, python-format
+msgid "Partners: "
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.kp
+msgid "North Korea"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Create Object"
+msgstr ""
+
+#. module: base
+#: view:ir.filters:0
+#: field:res.log,context:0
+msgid "Context"
+msgstr ""
+
+#. module: base
+#: field:res.bank,bic:0
+msgid "BIC/Swift code"
+msgstr ""
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_1
+msgid "Prospect"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Polish / Język polski"
+msgstr ""
+
+#. module: base
+#: field:ir.exports,name:0
+msgid "Export Name"
+msgstr ""
+
+#. module: base
+#: help:res.partner.address,type:0
+msgid ""
+"Used to select automatically the right address according to the context in "
+"sales and purchases documents."
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.lk
+msgid "Sri Lanka"
+msgstr ""
+
+#. module: base
+#: selection:base.language.install,lang:0
+msgid "Russian / русский язык"
+msgstr ""

=== modified file 'bin/addons/base/i18n/af.po'
--- bin/addons/base/i18n/af.po	2011-01-20 06:12:47 +0000
+++ bin/addons/base/i18n/af.po	2012-05-09 12:37:21 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-01-20 06:06+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:41+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -42,7 +42,7 @@
 msgstr "DagTyd"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -138,13 +138,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -152,7 +152,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr ""
@@ -168,8 +168,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr ""
@@ -180,7 +179,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -241,6 +240,8 @@
 msgstr ""
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr ""
@@ -269,7 +270,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr ""
@@ -313,7 +314,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr ""
 
@@ -357,7 +357,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -424,7 +424,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr ""
@@ -470,7 +470,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr ""
@@ -492,6 +492,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr ""
 
@@ -529,6 +530,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr ""
 
@@ -584,7 +586,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr ""
 
@@ -751,7 +752,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr ""
@@ -772,6 +772,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -788,7 +789,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -806,7 +807,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr ""
@@ -840,7 +841,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -914,6 +915,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr ""
@@ -939,7 +941,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr ""
@@ -956,7 +958,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -972,7 +974,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr ""
@@ -1032,6 +1034,7 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1124,7 +1127,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1133,7 +1136,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr ""
@@ -1255,8 +1257,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr ""
@@ -1313,6 +1315,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1334,7 +1337,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr ""
@@ -1345,8 +1348,9 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr ""
@@ -1476,7 +1480,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1536,9 +1540,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr ""
@@ -1579,7 +1581,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1626,8 +1628,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr ""
@@ -1658,7 +1658,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1835,7 +1835,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr ""
@@ -1846,12 +1847,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1883,7 +1886,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -1945,7 +1948,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr ""
@@ -2000,6 +2003,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr ""
@@ -2016,8 +2020,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr ""
 
@@ -2067,7 +2069,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2086,8 +2088,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr ""
@@ -2226,7 +2226,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr ""
@@ -2259,15 +2259,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr ""
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2317,8 +2317,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr ""
 
@@ -2328,7 +2328,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr ""
@@ -2378,13 +2378,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr ""
@@ -2502,7 +2502,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2510,7 +2510,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2523,7 +2523,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr ""
@@ -2567,7 +2567,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2600,7 +2599,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr ""
@@ -2827,13 +2826,14 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr ""
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr ""
 
@@ -2874,7 +2874,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr ""
 
@@ -2908,6 +2910,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -2930,7 +2933,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -2963,6 +2966,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -2976,7 +2981,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3048,7 +3053,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr ""
@@ -3079,7 +3084,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr ""
@@ -3115,7 +3120,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr ""
@@ -3146,7 +3152,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3312,7 +3318,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3475,10 +3481,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3489,7 +3497,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3513,7 +3522,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3526,7 +3535,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3612,7 +3620,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr ""
@@ -3686,14 +3693,13 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr ""
@@ -3715,7 +3721,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3765,9 +3771,9 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr ""
@@ -3856,6 +3862,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -3874,7 +3881,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -3932,7 +3939,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -3994,7 +4001,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4041,6 +4047,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4094,7 +4101,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr ""
@@ -4106,8 +4112,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr ""
 
@@ -4166,7 +4170,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4272,6 +4276,7 @@
 msgstr ""
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr ""
@@ -4282,7 +4287,10 @@
 msgstr ""
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr ""
 
@@ -4307,8 +4315,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr ""
@@ -4324,7 +4330,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr ""
@@ -4356,8 +4361,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr ""
@@ -4395,7 +4398,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr ""
@@ -4412,8 +4415,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr ""
@@ -4436,7 +4439,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4449,7 +4452,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr ""
@@ -4478,7 +4480,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4486,7 +4488,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr ""
@@ -4504,7 +4506,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr ""
@@ -4555,8 +4556,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr ""
 
@@ -4645,8 +4644,8 @@
 msgstr ""
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr ""
@@ -4719,6 +4718,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4750,7 +4750,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr ""
@@ -4813,7 +4813,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -4858,7 +4858,7 @@
 msgstr ""
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr ""
 
@@ -4878,7 +4878,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -4897,7 +4896,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -4920,7 +4919,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr ""
@@ -4933,7 +4931,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr ""
 
@@ -4970,7 +4967,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr ""
@@ -5004,7 +5001,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5177,14 +5174,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5204,7 +5201,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr ""
@@ -5293,7 +5290,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr ""
 
@@ -5340,8 +5336,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr ""
@@ -5362,7 +5358,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5386,12 +5382,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr ""
@@ -5450,7 +5446,6 @@
 msgstr ""
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr ""
@@ -5575,7 +5570,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5592,8 +5586,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr ""
@@ -5609,13 +5601,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5634,13 +5626,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr ""
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr ""
 
@@ -5651,9 +5643,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr ""
@@ -5758,7 +5752,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -5774,7 +5768,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -5818,13 +5811,12 @@
 msgstr ""
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -5863,7 +5855,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr ""
@@ -5898,9 +5890,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr ""
 
@@ -5908,7 +5898,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr ""
@@ -5934,7 +5923,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6016,7 +6004,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr ""
@@ -6038,13 +6027,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr ""
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr ""
@@ -6108,7 +6098,6 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6141,7 +6130,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr ""
@@ -6207,7 +6195,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr ""
 
@@ -6230,6 +6217,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6258,9 +6246,7 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr ""
 
@@ -6299,7 +6285,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6308,10 +6294,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr ""
 
@@ -6379,6 +6362,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr ""
 
@@ -6393,7 +6377,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6409,9 +6393,7 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr ""
 
@@ -6490,7 +6472,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6499,7 +6481,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6511,15 +6492,15 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr ""
@@ -6559,19 +6540,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr ""
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr ""
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6579,6 +6560,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6675,7 +6657,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr ""
@@ -6717,7 +6698,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6737,9 +6718,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr ""
 
@@ -6753,12 +6734,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr ""
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr ""
@@ -6777,10 +6760,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -6844,14 +6828,13 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -6862,7 +6845,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr ""
@@ -6901,7 +6884,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr ""
@@ -6917,7 +6900,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -6986,7 +6969,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7005,6 +6991,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr ""
@@ -7047,7 +7034,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7078,19 +7065,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7099,7 +7081,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7137,7 +7119,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7150,7 +7132,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr ""
@@ -7168,6 +7150,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr ""
 
@@ -7200,7 +7183,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7230,13 +7212,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7296,7 +7275,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr ""
@@ -7342,6 +7321,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7352,7 +7332,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7372,7 +7352,8 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr ""
@@ -7448,7 +7429,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr ""
@@ -7459,7 +7440,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr ""
@@ -7488,7 +7469,8 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr ""
 
@@ -7604,6 +7586,7 @@
 msgstr ""
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr ""
@@ -7651,12 +7634,11 @@
 msgstr ""
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr ""
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr ""
@@ -7723,6 +7705,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr ""
 
@@ -7761,7 +7745,7 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr ""
@@ -7796,7 +7780,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -7904,7 +7888,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr ""
@@ -7915,7 +7898,8 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr ""
 
@@ -7953,7 +7937,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr ""
@@ -7979,6 +7962,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr ""
@@ -8011,7 +7995,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr ""
@@ -8047,7 +8031,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8060,7 +8044,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8084,7 +8067,11 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr ""
 
@@ -8112,7 +8099,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8139,7 +8126,7 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr ""
@@ -8169,7 +8156,8 @@
 msgstr ""
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr ""
 
@@ -8179,33 +8167,34 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr ""
@@ -8227,6 +8216,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr ""
@@ -8296,7 +8286,6 @@
 msgstr ""
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr ""
@@ -8312,7 +8301,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr ""
@@ -8378,7 +8366,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8398,6 +8386,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr ""
@@ -8408,7 +8397,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr ""
@@ -8456,7 +8445,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr ""
@@ -8488,6 +8477,7 @@
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8497,12 +8487,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8598,6 +8586,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8625,13 +8614,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr ""
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -8666,7 +8656,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -8711,7 +8701,7 @@
 msgstr ""
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr ""
 
@@ -8733,10 +8723,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -8797,7 +8787,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr ""
@@ -8888,6 +8879,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -8955,7 +8947,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr ""
@@ -8994,6 +8986,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9031,6 +9025,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr ""
@@ -9102,7 +9097,11 @@
 msgstr ""
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr ""
@@ -9124,12 +9123,12 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr ""
@@ -9151,7 +9150,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9189,7 +9187,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr ""

=== modified file 'bin/addons/base/i18n/am.po'
--- bin/addons/base/i18n/am.po	2011-01-20 06:12:47 +0000
+++ bin/addons/base/i18n/am.po	2012-05-09 12:37:21 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-01-20 06:07+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:42+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -42,7 +42,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -138,13 +138,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -152,7 +152,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr ""
@@ -168,8 +168,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr ""
@@ -180,7 +179,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -241,6 +240,8 @@
 msgstr ""
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr ""
@@ -269,7 +270,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr ""
@@ -313,7 +314,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr ""
 
@@ -357,7 +357,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -424,7 +424,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr ""
@@ -470,7 +470,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr ""
@@ -492,6 +492,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr ""
 
@@ -529,6 +530,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr ""
 
@@ -584,7 +586,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr ""
 
@@ -751,7 +752,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr ""
@@ -772,6 +772,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -788,7 +789,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -806,7 +807,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr ""
@@ -840,7 +841,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -914,6 +915,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr ""
@@ -939,7 +941,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr ""
@@ -956,7 +958,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -972,7 +974,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr ""
@@ -1032,6 +1034,7 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1124,7 +1127,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1133,7 +1136,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr ""
@@ -1255,8 +1257,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr ""
@@ -1313,6 +1315,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1334,7 +1337,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr ""
@@ -1345,8 +1348,9 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr ""
@@ -1476,7 +1480,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1536,9 +1540,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr ""
@@ -1579,7 +1581,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1626,8 +1628,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr ""
@@ -1658,7 +1658,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1835,7 +1835,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr ""
@@ -1846,12 +1847,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1883,7 +1886,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -1945,7 +1948,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr ""
@@ -2000,6 +2003,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr ""
@@ -2016,8 +2020,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr ""
 
@@ -2067,7 +2069,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2086,8 +2088,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr ""
@@ -2226,7 +2226,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr ""
@@ -2259,15 +2259,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr ""
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2317,8 +2317,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr ""
 
@@ -2328,7 +2328,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr ""
@@ -2378,13 +2378,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr ""
@@ -2502,7 +2502,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2510,7 +2510,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2523,7 +2523,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr ""
@@ -2567,7 +2567,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2600,7 +2599,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr ""
@@ -2827,13 +2826,14 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr ""
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr ""
 
@@ -2874,7 +2874,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr ""
 
@@ -2908,6 +2910,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -2930,7 +2933,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -2963,6 +2966,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -2976,7 +2981,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3048,7 +3053,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr ""
@@ -3079,7 +3084,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr ""
@@ -3115,7 +3120,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr ""
@@ -3146,7 +3152,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3312,7 +3318,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3475,10 +3481,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3489,7 +3497,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3513,7 +3522,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3526,7 +3535,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3612,7 +3620,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr ""
@@ -3686,14 +3693,13 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr ""
@@ -3715,7 +3721,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3765,9 +3771,9 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr ""
@@ -3856,6 +3862,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -3874,7 +3881,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -3932,7 +3939,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -3994,7 +4001,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4041,6 +4047,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4094,7 +4101,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr ""
@@ -4106,8 +4112,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr ""
 
@@ -4166,7 +4170,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4272,6 +4276,7 @@
 msgstr ""
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr ""
@@ -4282,7 +4287,10 @@
 msgstr ""
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr ""
 
@@ -4307,8 +4315,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr ""
@@ -4324,7 +4330,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr ""
@@ -4356,8 +4361,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr ""
@@ -4395,7 +4398,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr ""
@@ -4412,8 +4415,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr ""
@@ -4436,7 +4439,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4449,7 +4452,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr ""
@@ -4478,7 +4480,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4486,7 +4488,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr ""
@@ -4504,7 +4506,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr ""
@@ -4555,8 +4556,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr ""
 
@@ -4645,8 +4644,8 @@
 msgstr ""
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr ""
@@ -4719,6 +4718,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4750,7 +4750,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr ""
@@ -4813,7 +4813,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -4858,7 +4858,7 @@
 msgstr ""
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr ""
 
@@ -4878,7 +4878,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -4897,7 +4896,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -4920,7 +4919,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr ""
@@ -4933,7 +4931,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr ""
 
@@ -4970,7 +4967,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr ""
@@ -5004,7 +5001,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5177,14 +5174,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5204,7 +5201,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr ""
@@ -5293,7 +5290,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr ""
 
@@ -5340,8 +5336,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr ""
@@ -5362,7 +5358,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5386,12 +5382,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr ""
@@ -5450,7 +5446,6 @@
 msgstr ""
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr ""
@@ -5575,7 +5570,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5592,8 +5586,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr ""
@@ -5609,13 +5601,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5634,13 +5626,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr ""
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr ""
 
@@ -5651,9 +5643,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr ""
@@ -5758,7 +5752,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -5774,7 +5768,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -5818,13 +5811,12 @@
 msgstr ""
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -5863,7 +5855,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr ""
@@ -5898,9 +5890,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr ""
 
@@ -5908,7 +5898,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr ""
@@ -5934,7 +5923,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6016,7 +6004,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr ""
@@ -6038,13 +6027,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr ""
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr ""
@@ -6108,7 +6098,6 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6141,7 +6130,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr ""
@@ -6207,7 +6195,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr ""
 
@@ -6230,6 +6217,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6258,9 +6246,7 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr ""
 
@@ -6299,7 +6285,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6308,10 +6294,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr ""
 
@@ -6379,6 +6362,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr ""
 
@@ -6393,7 +6377,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6409,9 +6393,7 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr ""
 
@@ -6490,7 +6472,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6499,7 +6481,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6511,15 +6492,15 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr ""
@@ -6559,19 +6540,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr ""
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr ""
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6579,6 +6560,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6675,7 +6657,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr ""
@@ -6717,7 +6698,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6737,9 +6718,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr ""
 
@@ -6753,12 +6734,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr ""
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr ""
@@ -6777,10 +6760,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -6844,14 +6828,13 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -6862,7 +6845,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr ""
@@ -6901,7 +6884,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr ""
@@ -6917,7 +6900,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -6986,7 +6969,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7005,6 +6991,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr ""
@@ -7047,7 +7034,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7078,19 +7065,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7099,7 +7081,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7137,7 +7119,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7150,7 +7132,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr ""
@@ -7168,6 +7150,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr ""
 
@@ -7200,7 +7183,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7230,13 +7212,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7296,7 +7275,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr ""
@@ -7342,6 +7321,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7352,7 +7332,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7372,7 +7352,8 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr ""
@@ -7448,7 +7429,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr ""
@@ -7459,7 +7440,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr ""
@@ -7488,7 +7469,8 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr ""
 
@@ -7604,6 +7586,7 @@
 msgstr ""
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr ""
@@ -7651,12 +7634,11 @@
 msgstr ""
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr ""
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr ""
@@ -7723,6 +7705,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr ""
 
@@ -7761,7 +7745,7 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr ""
@@ -7796,7 +7780,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -7904,7 +7888,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr ""
@@ -7915,7 +7898,8 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr ""
 
@@ -7953,7 +7937,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr ""
@@ -7979,6 +7962,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr ""
@@ -8011,7 +7995,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr ""
@@ -8047,7 +8031,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8060,7 +8044,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8084,7 +8067,11 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr ""
 
@@ -8112,7 +8099,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8139,7 +8126,7 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr ""
@@ -8169,7 +8156,8 @@
 msgstr ""
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr ""
 
@@ -8179,33 +8167,34 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr ""
@@ -8227,6 +8216,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr ""
@@ -8296,7 +8286,6 @@
 msgstr ""
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr ""
@@ -8312,7 +8301,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr ""
@@ -8378,7 +8366,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8398,6 +8386,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr ""
@@ -8408,7 +8397,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr ""
@@ -8456,7 +8445,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr ""
@@ -8488,6 +8477,7 @@
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8497,12 +8487,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8598,6 +8586,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8625,13 +8614,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr ""
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -8666,7 +8656,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -8711,7 +8701,7 @@
 msgstr ""
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr ""
 
@@ -8733,10 +8723,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -8797,7 +8787,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr ""
@@ -8888,6 +8879,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -8955,7 +8947,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr ""
@@ -8994,6 +8986,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9031,6 +9025,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr ""
@@ -9102,7 +9097,11 @@
 msgstr ""
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr ""
@@ -9124,12 +9123,12 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr ""
@@ -9151,7 +9150,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9189,7 +9187,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr ""

=== modified file 'bin/addons/base/i18n/ar.po'
--- bin/addons/base/i18n/ar.po	2011-07-02 05:50:11 +0000
+++ bin/addons/base/i18n/ar.po	2012-05-09 12:37:21 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 5.0.4\n"
 "Report-Msgid-Bugs-To: support@openerp.com\n"
 "POT-Creation-Date: 2011-01-11 11:14+0000\n"
-"PO-Revision-Date: 2011-07-01 18:03+0000\n"
-"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
+"PO-Revision-Date: 2012-03-19 09:51+0000\n"
+"Last-Translator: Abdulwhhab A. Al-Shehri <Unknown>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-07-02 05:50+0000\n"
-"X-Generator: Launchpad (build 13168)\n"
+"X-Launchpad-Export-Date: 2012-03-20 05:18+0000\n"
+"X-Generator: Launchpad (build 14969)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -23,7 +23,7 @@
 #: field:ir.rule,domain_force:0
 #: field:res.partner.title,domain:0
 msgid "Domain"
-msgstr "النطاق"
+msgstr "نطاق"
 
 #. module: base
 #: model:res.country,name:base.sh
@@ -33,7 +33,7 @@
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "Other Configuration"
-msgstr "عدادت أخري"
+msgstr "إعدادات أخرى"
 
 #. module: base
 #: selection:ir.property,type:0
@@ -41,12 +41,14 @@
 msgstr "الوقت و التاريخ"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
 "%s, which is not a valid SQL table name."
 msgstr ""
+"يجب تسجيل اسم جدول في الحقل الثاني %s لبناء علاقة متعددة  many2many , الاسم  "
+"%s المسجل  غير صحيح"
 
 #. module: base
 #: view:ir.values:0
@@ -58,12 +60,12 @@
 #: field:ir.ui.view,arch:0
 #: field:ir.ui.view.custom,arch:0
 msgid "View Architecture"
-msgstr "العرض الهندسي"
+msgstr "عرض المنصة (الهيكلة)"
 
 #. module: base
 #: field:base.language.import,code:0
 msgid "Code (eg:en__US)"
-msgstr "الرمز (مثال: ar_EG)"
+msgstr "الترميز (مثل: ar_EG)"
 
 #. module: base
 #: view:workflow:0
@@ -103,20 +105,22 @@
 #. module: base
 #: field:ir.actions.act_window,display_menu_tip:0
 msgid "Display Menu Tips"
-msgstr ""
+msgstr "عرض إرشادات القائمة"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Created Views"
-msgstr ""
+msgstr "طرق العرض التي تمّ إنشاؤها"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
 "of these groups: %s."
 msgstr ""
+"لا يمكنك تعديل هذا المستند (%s)! تأكد من أنك تنتمي إلى إحدى المجموعات "
+"التالية: %s."
 
 #. module: base
 #: help:ir.model.fields,domain:0
@@ -125,93 +129,98 @@
 "specified as a Python expression defining a list of triplets. For example: "
 "[('color','=','red')]"
 msgstr ""
+"لنطاق الاختياري لتحديد قيم حقل الارتباط ,  يعرف في لغة البايثون بطريقة "
+"ثلاثية , مثال  [('color','=','red')]"
 
 #. module: base
 #: field:res.partner,ref:0
 msgid "Reference"
-msgstr ""
+msgstr "المرجع"
 
 #. module: base
 #: field:ir.actions.act_window,target:0
 msgid "Target Window"
-msgstr ""
+msgstr "النافذة الهدف"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
-msgstr ""
+msgstr "تحذير!"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
 "them through Python code, preferably through a custom addon!"
 msgstr ""
+"خصائص الحق الأساسي لا يمكن  تعديلها بهذه الطريقة , الرجاء التحرير من خلال "
+"كود البايثون , و يستحسن استخدام برنامج إضافي!"
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
-msgstr ""
+msgstr "خطأ تقييد"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_ui_view_custom
 msgid "ir.ui.view.custom"
-msgstr ""
+msgstr "ir.ui.view.custom"
 
 #. module: base
 #: model:res.country,name:base.sz
 msgid "Swaziland"
-msgstr ""
+msgstr "سوازيلاند"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
-msgstr ""
+msgstr "تمّ الإنشاء"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0
 msgid "Wood Suppliers"
-msgstr ""
+msgstr "مورّدو الخشب"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
 " %s"
 msgstr ""
+"ثمّة وحدات برمجية تعتمد على الوحدة التي تريد إزالتها:\n"
+" %s"
 
 #. module: base
 #: field:ir.sequence,number_increment:0
 msgid "Increment Number"
-msgstr ""
+msgstr "مقدار الزيادة"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_company_tree
 #: model:ir.ui.menu,name:base.menu_action_res_company_tree
 msgid "Company's Structure"
-msgstr ""
+msgstr "هيكل الشركة"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Inuktitut / ᐃᓄᒃᑎᑐᑦ"
-msgstr ""
+msgstr "إنكتيتوتية / ᐃᓄᒃᑎᑐᑦ"
 
 #. module: base
 #: view:res.partner:0
 msgid "Search Partner"
-msgstr ""
+msgstr "بحث الشركاء"
 
 #. module: base
 #: code:addons/base/res/res_user.py:132
 #, python-format
 msgid "\"smtp_server\" needs to be set to send mails to users"
-msgstr ""
+msgstr "لا بدّ من تعيين خادم إرسال البريد الإلكتروني \"smtp_server\""
 
 #. module: base
 #: code:addons/base/module/wizard/base_export_language.py:60
@@ -222,27 +231,29 @@
 #. module: base
 #: field:ir.actions.report.xml,multi:0
 msgid "On multiple doc."
-msgstr ""
+msgstr "على عدة مستندات."
 
 #. module: base
 #: field:ir.module.category,module_nr:0
 msgid "Number of Modules"
-msgstr ""
+msgstr "عدد الوحدات البرمجية"
 
 #. module: base
 #: help:multi_company.default,company_dest_id:0
 msgid "Company to store the current record"
-msgstr ""
+msgstr "الشركة لحفظ السجل الحالي"
 
 #. module: base
 #: field:res.partner.bank.type.field,size:0
 msgid "Max. Size"
-msgstr ""
+msgstr "الحجم الأقصى"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
-msgstr ""
+msgstr "اسم جهة الاتصال"
 
 #. module: base
 #: code:addons/base/module/wizard/base_export_language.py:56
@@ -251,11 +262,13 @@
 "Save this document to a %s file and edit it with a specific software or a "
 "text editor. The file encoding is UTF-8."
 msgstr ""
+"احفظ هذا المستند كملف %s وحرره بإستخدام برنامج مناسب أو محرر نصِّي. ترميز "
+"الملف UTF-8."
 
 #. module: base
 #: sql_constraint:res.lang:0
 msgid "The name of the language must be unique !"
-msgstr ""
+msgstr "لا بدّ أن يكون اسم اللغة مختلفاً عن اللغات الأخرى"
 
 #. module: base
 #: selection:res.request,state:0
@@ -265,56 +278,55 @@
 #. module: base
 #: field:ir.actions.wizard,wiz_name:0
 msgid "Wizard Name"
-msgstr ""
+msgstr "اسم المعالج"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
-msgstr ""
+msgstr "تجميع غير ممكن"
 
 #. module: base
 #: field:res.partner,credit_limit:0
 msgid "Credit Limit"
-msgstr ""
+msgstr "حد الائتمان"
 
 #. module: base
 #: field:ir.model.data,date_update:0
 msgid "Update Date"
-msgstr ""
+msgstr "تاريخ التحديث"
 
 #. module: base
 #: view:ir.attachment:0
 msgid "Owner"
-msgstr ""
+msgstr "المالِك"
 
 #. module: base
 #: field:ir.actions.act_window,src_model:0
 msgid "Source Object"
-msgstr ""
+msgstr "الكائن المصدر"
 
 #. module: base
 #: view:ir.actions.todo:0
 msgid "Config Wizard Steps"
-msgstr ""
+msgstr "خطوات إعداد المعالج"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_ui_view_sc
 msgid "ir.ui.view_sc"
-msgstr ""
+msgstr "ir.ui.view_sc"
 
 #. module: base
 #: field:res.widget.user,widget_id:0
 #: field:res.widget.wizard,widgets_list:0
 msgid "Widget"
-msgstr ""
+msgstr "عنصر واجهة مستخدم"
 
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
-msgstr ""
+msgstr "المجموعة"
 
 #. module: base
 #: field:ir.exports.line,name:0
@@ -327,17 +339,17 @@
 #: wizard_view:server.action.create,init:0
 #: wizard_field:server.action.create,init,type:0
 msgid "Select Action Type"
-msgstr ""
+msgstr "اختر نوع الإجراء"
 
 #. module: base
 #: model:res.country,name:base.tv
 msgid "Tuvalu"
-msgstr ""
+msgstr "توفالو"
 
 #. module: base
 #: selection:ir.model,state:0
 msgid "Custom Object"
-msgstr ""
+msgstr "كائن مخصص"
 
 #. module: base
 #: field:res.lang,date_format:0
@@ -348,7 +360,7 @@
 #: field:res.bank,email:0
 #: field:res.partner.address,email:0
 msgid "E-Mail"
-msgstr ""
+msgstr "البريد الإلكتروني"
 
 #. module: base
 #: model:res.country,name:base.an
@@ -356,22 +368,24 @@
 msgstr "جزر الأنتيل الهولندية"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
 "created by OpenERP (updates, module installation, ...)"
 msgstr ""
+"لا يمكنك حذف المستخدم (المشرف العام - admin) لأنه يسنخدم داخلياً بواسطة "
+"OpenERP في عمليات التحديث و إضافة الوحدات البرمجية"
 
 #. module: base
 #: model:res.country,name:base.gf
 msgid "French Guyana"
-msgstr ""
+msgstr "غينيا (غينيا الفرنسية)"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Greek / Ελληνικά"
-msgstr ""
+msgstr "اليونان / Ελληνικά"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -384,33 +398,35 @@
 "If you check this, then the second time the user prints with same attachment "
 "name, it returns the previous report."
 msgstr ""
+"اذا وافقت على هذا الاختيار , فانه في المرة القادمة سيظهر نفس التقرير السابق "
+"اذا  طبع المستخدم نفس الملف المرفق"
 
 #. module: base
 #: code:addons/orm.py:904
 #, python-format
 msgid "The read method is not implemented on this object !"
-msgstr ""
+msgstr "وظيفة القراءة لم تنفذ في هذا الكائن !"
 
 #. module: base
 #: help:res.lang,iso_code:0
 msgid "This ISO code is the name of po files to use for translations"
-msgstr ""
+msgstr "كود ISO  هو اسم ملف ال po  لاستخدامه في الترجمة"
 
 #. module: base
 #: view:base.module.upgrade:0
 msgid "Your system will be updated."
-msgstr ""
+msgstr "سوف يتمّ تحديث نظامك"
 
 #. module: base
 #: field:ir.actions.todo,note:0
 #: selection:ir.property,type:0
 msgid "Text"
-msgstr ""
+msgstr "النّص"
 
 #. module: base
 #: field:res.country,name:0
 msgid "Country Name"
-msgstr ""
+msgstr "اسم الدولة"
 
 #. module: base
 #: model:res.country,name:base.co
@@ -420,13 +436,13 @@
 #. module: base
 #: view:ir.module.module:0
 msgid "Schedule Upgrade"
-msgstr ""
+msgstr "اختر للترقية"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
-msgstr ""
+msgstr "قيمة/ مفتاح  '%s'  غير موجود في الحقول المختارة '%s'"
 
 #. module: base
 #: help:res.country,code:0
@@ -434,76 +450,79 @@
 "The ISO country code in two chars.\n"
 "You can use this field for quick search."
 msgstr ""
+"رمز ISO للدولة والمكون من حرفين.\n"
+"يمكنك استخدام هذا الحقل للبحث السريع."
 
 #. module: base
 #: model:res.country,name:base.pw
 msgid "Palau"
-msgstr ""
+msgstr "بالاو"
 
 #. module: base
 #: view:res.partner:0
 msgid "Sales & Purchases"
-msgstr ""
+msgstr "المبيعات و المشتريات"
 
 #. module: base
 #: view:ir.translation:0
 msgid "Untranslated"
-msgstr ""
+msgstr "غير مترجم"
 
 #. module: base
 #: help:ir.actions.act_window,context:0
 msgid ""
 "Context dictionary as Python expression, empty by default (Default: {})"
-msgstr ""
+msgstr "القيمة الافتراضية فارغة (Default: {})"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_action_wizard
 #: view:ir.actions.wizard:0
 #: model:ir.ui.menu,name:base.menu_ir_action_wizard
 msgid "Wizards"
-msgstr ""
+msgstr "المعالجات"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_miscellaneoussuppliers0
 msgid "Miscellaneous Suppliers"
-msgstr ""
+msgstr "مورّدون متنوعون"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
-msgstr ""
+msgstr "الحقول الخاصة يجب أن تيدأ باسم يبدأ بـ 'x_' !"
 
 #. module: base
 #: help:ir.actions.server,action_id:0
 msgid "Select the Action Window, Report, Wizard to be executed."
-msgstr ""
+msgstr "اختر نافذة الإجراء والتقرير والمعالج الذين تودّ تنفيذهم."
 
 #. module: base
 #: view:res.config.users:0
 msgid "New User"
-msgstr ""
+msgstr "مستخدم جديد"
 
 #. module: base
 #: view:base.language.export:0
 msgid "Export done"
-msgstr ""
+msgstr "تمّت عملية التصدير"
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
-msgstr ""
+msgstr "وصف النموذج"
 
 #. module: base
 #: help:ir.actions.act_window,src_model:0
 msgid ""
 "Optional model name of the objects on which this action should be visible"
-msgstr ""
+msgstr "اسم نموذج اختياري للكائنات التي ينطبق عليها هذا الإجراء"
 
 #. module: base
 #: field:workflow.transition,trigger_expr_id:0
 msgid "Trigger Expression"
-msgstr ""
+msgstr "صيغة المشغل"
 
 #. module: base
 #: model:res.country,name:base.jo
@@ -513,7 +532,7 @@
 #. module: base
 #: view:ir.module.module:0
 msgid "Certified"
-msgstr ""
+msgstr "مصدّق"
 
 #. module: base
 #: model:res.country,name:base.er
@@ -524,17 +543,18 @@
 #: view:res.config:0
 #: view:res.config.installer:0
 msgid "description"
-msgstr ""
+msgstr "الوصف"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
-msgstr ""
+msgstr "الإجراءات التلقائية"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_actions
 msgid "ir.actions.actions"
-msgstr ""
+msgstr "ir.actions.actions"
 
 #. module: base
 #: view:partner.wizard.ean.check:0
@@ -544,7 +564,7 @@
 #. module: base
 #: field:ir.values,key2:0
 msgid "Event Type"
-msgstr ""
+msgstr "نوع الحدث"
 
 #. module: base
 #: view:base.language.export:0
@@ -553,104 +573,107 @@
 "Launchpad.net, our open source project management facility. We use their "
 "online interface to synchronize all translations efforts."
 msgstr ""
+"تتمّ إدارة ترجمة OpenERP عن طريق الموقع الإلكتروني Launchpad.net، والذي يمثل "
+"وسيلتنا لإدارة البرمجة مفتوحة المصدر. كذلك نستخدم الواجهة الإلكتروني للموقع "
+"لجمع وعرض جميع مجهودات الترجمة."
 
 #. module: base
 #: field:res.partner,title:0
 msgid "Partner Form"
-msgstr ""
+msgstr "نموذج الشريك"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Swedish / svenska"
-msgstr ""
+msgstr "السويدية / svenska"
 
 #. module: base
 #: model:res.country,name:base.rs
 msgid "Serbia"
-msgstr ""
+msgstr "صربيا"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Wizard View"
-msgstr ""
+msgstr "عرض باستخدام المعالج"
 
 #. module: base
 #: model:res.country,name:base.kh
 msgid "Cambodia, Kingdom of"
-msgstr ""
+msgstr "مملكة كامبوديا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
-msgstr ""
+msgstr "المتواليات"
 
 #. module: base
 #: model:ir.model,name:base.model_base_language_import
 msgid "Language Import"
-msgstr ""
+msgstr "استيراد لغة"
 
 #. module: base
 #: model:ir.model,name:base.model_res_config_users
 msgid "res.config.users"
-msgstr ""
+msgstr "res.config.users"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Albanian / Shqip"
-msgstr ""
+msgstr "الألبانية / Shqip"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_crm_config_opportunity
 msgid "Opportunities"
-msgstr ""
+msgstr "الفرص"
 
 #. module: base
 #: model:ir.model,name:base.model_base_language_export
 msgid "base.language.export"
-msgstr ""
+msgstr "base.language.export"
 
 #. module: base
 #: model:res.country,name:base.pg
 msgid "Papua New Guinea"
-msgstr ""
+msgstr "بابوا غينيا الجديدة"
 
 #. module: base
 #: help:ir.actions.report.xml,report_type:0
 msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..."
 msgstr ""
+"نوع التقرير. أمثلة: pdf, html, raw, sxw, odt, html2html, mako2htm, ..."
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_4
 msgid "Basic Partner"
-msgstr ""
+msgstr "شريك أساسي"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid ","
-msgstr ""
+msgstr "،"
 
 #. module: base
 #: view:res.partner:0
 msgid "My Partners"
-msgstr ""
+msgstr "شركائي"
 
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "XML Report"
-msgstr ""
+msgstr "تقرير XML"
 
 #. module: base
 #: model:res.country,name:base.es
 msgid "Spain"
-msgstr ""
+msgstr "أسبانيا"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_translation_export
 msgid "Import / Export"
-msgstr ""
+msgstr "استيراد / تصدير"
 
 #. module: base
 #: help:ir.actions.act_window,domain:0
@@ -662,51 +685,51 @@
 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade
 #: model:ir.model,name:base.model_base_module_upgrade
 msgid "Module Upgrade"
-msgstr ""
+msgstr "ترقية وحدة برمجية"
 
 #. module: base
 #: view:res.config.users:0
 msgid ""
 "Groups are used to define access rights on objects and the visibility of "
 "screens and menus"
-msgstr ""
+msgstr "تستخدم المجموعات لتعريف صلاحيات الدخول والتعديل للشاشات والقوائم"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (UY) / Español (UY)"
-msgstr ""
+msgstr "الأسبانية / Español (UY)"
 
 #. module: base
 #: field:res.partner,mobile:0
 #: field:res.partner.address,mobile:0
 msgid "Mobile"
-msgstr ""
+msgstr "الجوال"
 
 #. module: base
 #: model:res.country,name:base.om
 msgid "Oman"
-msgstr ""
+msgstr "سلطنة عمان"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_payterm_form
 #: model:ir.model,name:base.model_res_payterm
 msgid "Payment term"
-msgstr ""
+msgstr "أجل الدفع"
 
 #. module: base
 #: model:res.country,name:base.nu
 msgid "Niue"
-msgstr ""
+msgstr "نييوي"
 
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Work Days"
-msgstr ""
+msgstr "أيام العمل"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "Other OSI Approved Licence"
-msgstr ""
+msgstr "رخص أخرى تعترف بها الـ (OSI)"
 
 #. module: base
 #: help:res.config.users,context_lang:0
@@ -714,7 +737,7 @@
 msgid ""
 "Sets the language for the user's user interface, when UI translations are "
 "available"
-msgstr ""
+msgstr "تعيين لغة واجهة الاستخدام، في حالة توفر الترجمة"
 
 #. module: base
 #: code:addons/orm.py:1043
@@ -726,23 +749,23 @@
 #: model:ir.actions.act_window,name:base.act_menu_create
 #: view:wizard.ir.model.menu.create:0
 msgid "Create Menu"
-msgstr ""
+msgstr "إنشاء القائمة"
 
 #. module: base
 #: model:res.country,name:base.in
 msgid "India"
-msgstr ""
+msgstr "الهند"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_request_link-act
 #: model:ir.ui.menu,name:base.menu_res_request_link_act
 msgid "Request Reference Types"
-msgstr ""
+msgstr "أنواع مراجع الطلبات"
 
 #. module: base
 #: view:ir.values:0
 msgid "client_action_multi, client_action_relate"
-msgstr ""
+msgstr "client_action_multi, client_action_relate"
 
 #. module: base
 #: model:res.country,name:base.ad
@@ -750,27 +773,27 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
-msgstr ""
+msgstr "فئات فرعية"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_config_parameter
 msgid "ir.config_parameter"
-msgstr ""
+msgstr "ir.config_parameter"
 
 #. module: base
 #: selection:base.language.export,format:0
 msgid "TGZ Archive"
-msgstr ""
+msgstr "ملف TGZ"
 
 #. module: base
 #: view:res.lang:0
 msgid "%B - Full month name."
-msgstr ""
+msgstr "%B - اسم الشهر كاملاً"
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -784,62 +807,64 @@
 #: view:res.partner:0
 #: view:res.partner.address:0
 msgid "Type"
-msgstr ""
+msgstr "النوع"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
 "Define it through the Administration menu."
 msgstr ""
+"اللغة ذات الرمز \"%s\" غير معرفة في نظامك!\n"
+"عرفها من خلال قائمة \"التحكم\"."
 
 #. module: base
 #: model:res.country,name:base.gu
 msgid "Guam (USA)"
-msgstr ""
+msgstr "غوام (الولايات المتحدة)"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_hr_project
 msgid "Human Resources Dashboard"
-msgstr ""
+msgstr "لوحة معلومات الموارد البشرية"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
-msgstr ""
+msgstr "لا يمكن استخدام كلمات مرور فارغة لأسباب أمنية!"
 
 #. module: base
 #: selection:ir.actions.server,state:0
 #: selection:workflow.activity,kind:0
 msgid "Dummy"
-msgstr ""
+msgstr "وهمي"
 
 #. module: base
 #: constraint:ir.ui.view:0
 msgid "Invalid XML for View Architecture!"
-msgstr ""
+msgstr "هناك خطأ في بيانات الـ XML للعرض!"
 
 #. module: base
 #: model:res.country,name:base.ky
 msgid "Cayman Islands"
-msgstr ""
+msgstr "جزر الكايمان"
 
 #. module: base
 #: model:res.country,name:base.kr
 msgid "South Korea"
-msgstr ""
+msgstr "كوريا الجنوبية"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_workflow_transition_form
 #: model:ir.ui.menu,name:base.menu_workflow_transition
 #: view:workflow.activity:0
 msgid "Transitions"
-msgstr ""
+msgstr "الانتقالات"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -847,48 +872,48 @@
 #. module: base
 #: field:ir.module.module,contributors:0
 msgid "Contributors"
-msgstr ""
+msgstr "المشاركون"
 
 #. module: base
 #: selection:ir.property,type:0
 msgid "Char"
-msgstr ""
+msgstr "حرف"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form
 #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract
 msgid "Contracts"
-msgstr ""
+msgstr "عقود"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (AR) / Español (AR)"
-msgstr ""
+msgstr "الأسبانية / Español (AR)"
 
 #. module: base
 #: model:res.country,name:base.ug
 msgid "Uganda"
-msgstr ""
+msgstr "أوغندا"
 
 #. module: base
 #: field:ir.model.access,perm_unlink:0
 msgid "Delete Access"
-msgstr ""
+msgstr "صلاحيات الحذف"
 
 #. module: base
 #: model:res.country,name:base.ne
 msgid "Niger"
-msgstr ""
+msgstr "النّيجر"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Chinese (HK)"
-msgstr ""
+msgstr "الصينية"
 
 #. module: base
 #: model:res.country,name:base.ba
 msgid "Bosnia-Herzegovina"
-msgstr ""
+msgstr "البوسنة و الهرسك"
 
 #. module: base
 #: view:base.language.export:0
@@ -897,11 +922,14 @@
 "Lauchpad's web interface (Rosetta). If you need to perform mass translation, "
 "Launchpad also allows uploading full .po files at once"
 msgstr ""
+"لتحسين الترجمة الرسمية أو إضافة نصوص جديدة إليها، يفضل استخدام الواجهة "
+"الإلكترونية (Rosetta) لموقع Launchpad. إذا كنت تريد القيام بترجمة نصوص "
+"عديدة، يمكنك رفع ملفات .po إلى Launchpad كذلك."
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (GT) / Español (GT)"
-msgstr ""
+msgstr "الأسبانية / Español (GT)"
 
 #. module: base
 #: view:res.lang:0
@@ -910,12 +938,16 @@
 "decimal number [00,53]. All days in a new year preceding the first Monday "
 "are considered to be in week 0."
 msgstr ""
+"%W - رقم الأسبوع في السنة (باعتبار يوم الإثنين أول يوم في الأسبوع) كرقم عشري "
+"ما بين 00 و 53. جميع الأيام التي تسبق أول يوم إثنين في سنة جديدة تعد من "
+"الأسبوع 0."
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
-msgstr ""
+msgstr "الموقع الإلكتروني"
 
 #. module: base
 #: model:res.country,name:base.gs
@@ -925,37 +957,37 @@
 #. module: base
 #: field:ir.actions.url,url:0
 msgid "Action URL"
-msgstr ""
+msgstr "العنوان الإلكتروني (URL) للإجراء"
 
 #. module: base
 #: field:base.module.import,module_name:0
 msgid "Module Name"
-msgstr ""
+msgstr "اسم الوحدة البرمجية"
 
 #. module: base
 #: model:res.country,name:base.mh
 msgid "Marshall Islands"
-msgstr ""
+msgstr "جزر المارشال"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
-msgstr ""
+msgstr "لا يمكن تغيير نموذج أي حقل!"
 
 #. module: base
 #: model:res.country,name:base.ht
 msgid "Haiti"
-msgstr ""
+msgstr "هاييتي"
 
 #. module: base
 #: view:ir.ui.view:0
 #: selection:ir.ui.view,type:0
 msgid "Search"
-msgstr ""
+msgstr "بحث"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -963,6 +995,9 @@
 "reference it\n"
 "- creation/update: a mandatory field is not correctly set"
 msgstr ""
+"لا يمكن إكمال العملية، ربما بسبب أحد الاسباب التالية:\n"
+"-الحذف: ربما تكون تحاول حذف سجل بينما هناك سجلات اخرى تشير اليه.\n"
+"الانشاء/التحديث: حقل أساسي لم يتم ادخاله بشكل صحيح."
 
 #. module: base
 #: view:ir.rule:0
@@ -971,30 +1006,30 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
-msgstr ""
+msgstr "تمّ إلغاء العملية"
 
 #. module: base
 #: help:base.language.export,lang:0
 msgid "To export a new language, do not select a language."
-msgstr ""
+msgstr "لتصدير لغة جديدة، لا تختر أي لغة."
 
 #. module: base
 #: view:res.request:0
 msgid "Request Date"
-msgstr ""
+msgstr "تاريخ الطلب"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_hr_dasboard
 msgid "Dashboard"
-msgstr ""
+msgstr "لوحة المعلومات"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_purchase_root
 msgid "Purchases"
-msgstr ""
+msgstr "المشتريات"
 
 #. module: base
 #: model:res.country,name:base.md
@@ -1004,37 +1039,38 @@
 #. module: base
 #: view:ir.module.module:0
 msgid "Features"
-msgstr ""
+msgstr "المميزات"
 
 #. module: base
 #: view:ir.module.module:0
 #: report:ir.module.reference.graph:0
 msgid "Version"
-msgstr ""
+msgstr "الإصدار"
 
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,perm_read:0
 #: view:ir.rule:0
 msgid "Read Access"
-msgstr ""
+msgstr "صلاحيات القراءة"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_exports
 msgid "ir.exports"
-msgstr ""
+msgstr "ir.exports"
 
 #. module: base
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "No language with code \"%s\" exists"
-msgstr ""
+msgstr "لا توجد لغة برمز \"%s\""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
-msgstr ""
+msgstr "خطأ أثناء الاتصال بخادم ضمان الناشر."
 
 #. module: base
 #: help:ir.actions.server,email:0
@@ -1047,12 +1083,12 @@
 #. module: base
 #: view:res.lang:0
 msgid "%Y - Year with century."
-msgstr ""
+msgstr "%Y - السنة مع القرن"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "-"
-msgstr ""
+msgstr "-"
 
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
@@ -1061,6 +1097,8 @@
 "system. After the contract has been registered, you will be able to send "
 "issues directly to OpenERP."
 msgstr ""
+"هذا المعالج يساعدك على تسجيل عقد ضمان الناشر في نسختك من نظام OpenERP. بعد "
+"إتمام  تسجيل العقد سيمكنك إرسال مساءلاتك إلى OpenERP مباشرة."
 
 #. module: base
 #: code:addons/orm.py:1744
@@ -1071,24 +1109,24 @@
 #. module: base
 #: view:wizard.ir.model.menu.create:0
 msgid "Create _Menu"
-msgstr ""
+msgstr "إنشاء القائمة"
 
 #. module: base
 #: field:res.payterm,name:0
 msgid "Payment Term (short name)"
-msgstr ""
+msgstr "أجل الدفع (اسم قصير)"
 
 #. module: base
 #: model:ir.model,name:base.model_res_bank
 #: view:res.bank:0
 #: field:res.partner.bank,bank:0
 msgid "Bank"
-msgstr ""
+msgstr "المصرف"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_exports_line
 msgid "ir.exports.line"
-msgstr ""
+msgstr "ir.exports.line"
 
 #. module: base
 #: help:base.language.install,overwrite:0
@@ -1096,18 +1134,19 @@
 "If you check this box, your customized translations will be overwritten and "
 "replaced by the official ones."
 msgstr ""
+"عند اختيار هذا الخيار، سيتمّ استبدال ترجمتك المخصصة بالترجمة الرسمية."
 
 #. module: base
 #: field:ir.actions.report.xml,report_rml:0
 msgid "Main report file path"
-msgstr ""
+msgstr "مسار ملف التقرير الرئيسي"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_action_report_xml
 #: field:ir.module.module,reports_by_module:0
 #: model:ir.ui.menu,name:base.menu_ir_action_report_xml
 msgid "Reports"
-msgstr ""
+msgstr "التقارير"
 
 #. module: base
 #: help:ir.actions.act_window.view,multi:0
@@ -1116,14 +1155,16 @@
 "If set to true, the action will not be displayed on the right toolbar of a "
 "form view."
 msgstr ""
+"عند اختيار هذا الخيار، لن يظهر الإجراء في شريط الأدوات على يمين الشاشة أثناء "
+"اختيار طريقة عرض النموذج."
 
 #. module: base
 #: field:workflow,on_create:0
 msgid "On Create"
-msgstr ""
+msgstr "عند الإنشاء"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1132,10 +1173,9 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
-msgstr ""
+msgstr "تسجيل الدخول"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -1147,29 +1187,29 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country_state
 msgid "Country state"
-msgstr ""
+msgstr "الولاية أو المنطقة في الدولة"
 
 #. module: base
 #: selection:ir.property,type:0
 msgid "Float"
-msgstr ""
+msgstr "عشري"
 
 #. module: base
 #: model:ir.model,name:base.model_res_request_link
 msgid "res.request.link"
-msgstr ""
+msgstr "res.request.link"
 
 #. module: base
 #: field:ir.actions.wizard,name:0
 msgid "Wizard Info"
-msgstr ""
+msgstr "معلومات المعالج"
 
 #. module: base
 #: view:base.language.export:0
 #: model:ir.actions.act_window,name:base.action_wizard_lang_export
 #: model:ir.ui.menu,name:base.menu_wizard_lang_export
 msgid "Export Translation"
-msgstr ""
+msgstr "تصدير ترجمة"
 
 #. module: base
 #: help:res.log,secondary:0
@@ -1181,7 +1221,7 @@
 #. module: base
 #: model:res.country,name:base.tp
 msgid "East Timor"
-msgstr ""
+msgstr "تيمور الشرقية"
 
 #. module: base
 #: model:res.company,follow_up_msg:base.main_company
@@ -1200,11 +1240,24 @@
 "%(user_signature)s\n"
 "%(company_name)s"
 msgstr ""
+"التاريخ: %(date)s\n"
+"\n"
+"عزيزي %(partner_name)s،\n"
+"\n"
+"مرفق بهذه الرسالة تذكير بكافة فواتيرك غير المسددة، والتي يبلغ مجموعها:\n"
+"\n"
+"\n"
+"%(followup_amount).2f %(company_currency)s\n"
+"\n"
+"وشكراً.\n"
+"--\n"
+"%(user_signature)s\n"
+"%(company_name)s"
 
 #. module: base
 #: field:res.currency,accuracy:0
 msgid "Computational Accuracy"
-msgstr ""
+msgstr "دقة الحسابات"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -1214,37 +1267,37 @@
 #. module: base
 #: model:ir.model,name:base.model_wizard_ir_model_menu_create_line
 msgid "wizard.ir.model.menu.create.line"
-msgstr ""
+msgstr "wizard.ir.model.menu.create.line"
 
 #. module: base
 #: field:ir.attachment,res_id:0
 msgid "Attached ID"
-msgstr ""
+msgstr "معرف ملحقات"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Day: %(day)s"
-msgstr ""
+msgstr "اليوم: %(day)s"
 
 #. module: base
 #: model:res.country,name:base.mv
 msgid "Maldives"
-msgstr ""
+msgstr "جزر المالديف"
 
 #. module: base
 #: help:ir.values,res_id:0
 msgid "Keep 0 if the action must appear on all resources."
-msgstr ""
+msgstr "أبق 0 لكي يظهر الإجراء دائماً"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_rule
 msgid "ir.rule"
-msgstr ""
+msgstr "ir.rule"
 
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Days"
-msgstr ""
+msgstr "الأيام"
 
 #. module: base
 #: help:ir.actions.server,condition:0
@@ -1252,36 +1305,38 @@
 "Condition that is to be tested before action is executed, e.g. "
 "object.list_price > object.cost_price"
 msgstr ""
+"الشرط الذي يجب أن يتحقق لكي يتمّ تنفيذ الإجراء. مثال: object.list_price > "
+"object.cost_price"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
-msgstr ""
+msgstr " (نسخ)"
 
 #. module: base
 #: view:res.lang:0
 msgid "7.  %H:%M:%S      ==> 18:25:20"
-msgstr ""
+msgstr "7.  %H:%M:%S      ==> 18:25:20"
 
 #. module: base
 #: view:res.partner:0
 #: view:res.partner.category:0
 #: field:res.partner.category,partner_ids:0
 msgid "Partners"
-msgstr ""
+msgstr "الشركاء"
 
 #. module: base
 #: field:res.partner.category,parent_left:0
 msgid "Left parent"
-msgstr ""
+msgstr "الأصل الأيسر"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_widget_act_window
 #: model:ir.ui.menu,name:base.menu_res_widget_act_window
 msgid "Homepage Widgets"
-msgstr ""
+msgstr "عناصر واجهة المستخدم للصفحة الرئيسية"
 
 #. module: base
 #: help:ir.actions.server,message:0
@@ -1289,38 +1344,41 @@
 "Specify the message. You can use the fields from the object. e.g. `Dear [[ "
 "object.partner_id.name ]]`"
 msgstr ""
+"حدّد الرسالة. يمكنك استخدام حقول الكائن. مثال: 'عزيزي [[ "
+"object.partner_id.name ]]'"
 
 #. module: base
 #: field:ir.attachment,res_model:0
 msgid "Attached Model"
-msgstr ""
+msgstr "نموذج ملحق"
 
 #. module: base
 #: view:ir.rule:0
 msgid "Domain Setup"
-msgstr ""
+msgstr "إعداد النطاق"
 
 #. module: base
 #: field:ir.actions.server,trigger_name:0
 msgid "Trigger Name"
-msgstr ""
+msgstr "اسم المشغل"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_model_access
 msgid "ir.model.access"
-msgstr ""
+msgstr "ir.model.access"
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
-msgstr ""
+msgstr "الأولوية"
 
 #. module: base
 #: field:workflow.transition,act_from:0
 msgid "Source Activity"
-msgstr ""
+msgstr "النشاط المصدر"
 
 #. module: base
 #: view:ir.sequence:0
@@ -1330,40 +1388,41 @@
 #. module: base
 #: selection:ir.server.object.lines,type:0
 msgid "Formula"
-msgstr ""
+msgstr "الصيغة"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
-msgstr ""
+msgstr "لا يمكن حذف المستخدم root!"
 
 #. module: base
 #: model:res.country,name:base.mw
 msgid "Malawi"
-msgstr ""
+msgstr "مالاوي"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
-msgstr ""
+msgstr "%s (نسخة)"
 
 #. module: base
 #: field:res.partner.address,type:0
 msgid "Address Type"
-msgstr ""
+msgstr "نوع العنوان"
 
 #. module: base
 #: view:ir.ui.menu:0
 msgid "Full Path"
-msgstr ""
+msgstr "المسار كاملاً"
 
 #. module: base
 #: view:res.request:0
 msgid "References"
-msgstr ""
+msgstr "المراجع"
 
 #. module: base
 #: view:res.lang:0
@@ -1376,12 +1435,12 @@
 #. module: base
 #: view:ir.ui.view:0
 msgid "Advanced"
-msgstr ""
+msgstr "متقدم"
 
 #. module: base
 #: model:res.country,name:base.fi
 msgid "Finland"
-msgstr ""
+msgstr "فنلندا"
 
 #. module: base
 #: selection:ir.actions.act_window,view_type:0
@@ -1390,28 +1449,30 @@
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Tree"
-msgstr ""
+msgstr "الشجرة"
 
 #. module: base
 #: help:res.config.users,password:0
 msgid ""
 "Keep empty if you don't want the user to be able to connect on the system."
-msgstr ""
+msgstr "أبقِ خالياً لمنع المستخدم من استخدام النظام."
 
 #. module: base
 #: view:ir.actions.server:0
 msgid "Create / Write / Copy"
-msgstr ""
+msgstr "إنشاء / كتابة / نسخ"
 
 #. module: base
 #: view:base.language.export:0
 msgid "https://help.launchpad.net/Translations"
 msgstr ""
+"https://www.facebook.com/#!/pages/OpenERP-Arabic-Team/270243976333404 أو  "
+"https://help.launchpad.net/Translations"
 
 #. module: base
 #: field:ir.actions.act_window,view_mode:0
 msgid "View Mode"
-msgstr ""
+msgstr "وضع العرض"
 
 #. module: base
 #: view:base.language.import:0
@@ -1419,6 +1480,8 @@
 "When using CSV format, please also check that the first line of your file is "
 "one of the following:"
 msgstr ""
+"عند استخدام صيغة CSV، تأكد من أن السطر الأول من الملف هو أحد الخيارات "
+"التالية:"
 
 #. module: base
 #: code:addons/fields.py:114
@@ -1429,17 +1492,17 @@
 #. module: base
 #: view:res.log:0
 msgid "Logs"
-msgstr ""
+msgstr "السجلات"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish / Español"
-msgstr ""
+msgstr "الأسبانية / Español"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Korean (KP) / 한국어 (KP)"
-msgstr ""
+msgstr "الكورية / 한국어 (KP)"
 
 #. module: base
 #: view:base.module.update:0
@@ -1447,35 +1510,37 @@
 "This wizard will scan all module repositories on the server side to detect "
 "newly added modules as well as any change to existing modules."
 msgstr ""
+"يقوم هذا المعالج بالبحث عن أي وحدات برمجية جديدة أو تحديثات وحدات موجودة في "
+"الخادم."
 
 #. module: base
 #: field:res.company,logo:0
 msgid "Logo"
-msgstr ""
+msgstr "الشعار"
 
 #. module: base
 #: view:res.partner.address:0
 msgid "Search Contact"
-msgstr ""
+msgstr "بحث جهة الإتصال"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Uninstall (beta)"
-msgstr ""
+msgstr "إزالة (تجريبي)"
 
 #. module: base
 #: selection:ir.actions.act_window,target:0
 #: selection:ir.actions.url,target:0
 msgid "New Window"
-msgstr ""
+msgstr "نافذة جديدة"
 
 #. module: base
 #: model:res.country,name:base.bs
 msgid "Bahamas"
-msgstr ""
+msgstr "جزر الباهاما"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1484,17 +1549,17 @@
 #. module: base
 #: view:ir.attachment:0
 msgid "Attachment"
-msgstr ""
+msgstr "مرفق"
 
 #. module: base
 #: model:res.country,name:base.ie
 msgid "Ireland"
-msgstr ""
+msgstr "إيرلندا"
 
 #. module: base
 #: field:base.module.update,update:0
 msgid "Number of modules updated"
-msgstr ""
+msgstr "عدد الوحدات البرمجية التي تمّ نحديثها"
 
 #. module: base
 #: code:addons/fields.py:100
@@ -1505,7 +1570,7 @@
 #. module: base
 #: view:workflow.activity:0
 msgid "Workflow Activity"
-msgstr ""
+msgstr "نشاط سير العمل"
 
 #. module: base
 #: view:ir.rule:0
@@ -1520,6 +1585,8 @@
 "Views allows you to personalize each view of OpenERP. You can add new "
 "fields, move fields, rename them or delete the ones that you do not need."
 msgstr ""
+"طرق العرض تمكنك من تخصيص أي من شاشات OpenERP. يمكنك إضافة حقول جديدة، نقل "
+"الحقول، تغيير أسمائها أو حذف أي منها."
 
 #. module: base
 #: field:ir.actions.act_window,groups_id:0
@@ -1535,17 +1602,15 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
-msgstr ""
+msgstr "المجموعات"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (CL) / Español (CL)"
-msgstr ""
+msgstr "الأسبانية / Español (CL)"
 
 #. module: base
 #: view:res.config.users:0
@@ -1554,21 +1619,24 @@
 "access to selected functionalities within the system. Click on 'Done' if you "
 "do not wish to add more users at this stage, you can always do this later."
 msgstr ""
+"أنشئ متخدمين إضافيين وعين لهم مجموعات تعرف صلاحياتهم في النظام. عند انتهائك، "
+"أو في حالة عدم رغبتك في إضافة مستخدمين، انقر 'تمّ'. يمكنك إضافة مستخدين "
+"لاحقاً وقتما تشاء."
 
 #. module: base
 #: model:res.country,name:base.bz
 msgid "Belize"
-msgstr ""
+msgstr "بليز"
 
 #. module: base
 #: model:res.country,name:base.ge
 msgid "Georgia"
-msgstr ""
+msgstr "جورجيا"
 
 #. module: base
 #: model:res.country,name:base.pl
 msgid "Poland"
-msgstr ""
+msgstr "بولندا"
 
 #. module: base
 #: help:ir.actions.act_window,view_mode:0
@@ -1576,28 +1644,30 @@
 "Comma-separated list of allowed view modes, such as 'form', 'tree', "
 "'calendar', etc. (Default: tree,form)"
 msgstr ""
+"قائمة (تفصل عناصرها فواصل) بطرق العرض المسموح بها. مثال: 'نموذج'، 'شجرة'، "
+"'تقويم'، إلخ. (القيمة الافتراضية: شجرة، نموذج)"
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
-msgstr ""
+msgstr "ثمّة مستند تمّ تعديله بعد آخر مرة عاينته فيها (%s:%d)"
 
 #. module: base
 #: view:workflow:0
 msgid "Workflow Editor"
-msgstr ""
+msgstr "محرّر سير العمل"
 
 #. module: base
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be removed"
-msgstr ""
+msgstr "للإزالة"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_sequence
 msgid "ir.sequence"
-msgstr ""
+msgstr "ir.sequence"
 
 #. module: base
 #: help:ir.actions.server,expression:0
@@ -1612,24 +1682,22 @@
 #: selection:ir.translation,type:0
 #: field:multi_company.default,field_id:0
 msgid "Field"
-msgstr ""
+msgstr "حقل"
 
 #. module: base
 #: view:ir.rule:0
 msgid "Groups (no group = global)"
-msgstr ""
+msgstr "المجموعة (خالي = الجميع)"
 
 #. module: base
 #: model:res.country,name:base.fo
 msgid "Faroe Islands"
-msgstr ""
+msgstr "جزر فارو"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
-msgstr ""
+msgstr "مبسطة"
 
 #. module: base
 #: model:res.country,name:base.st
@@ -1639,7 +1707,7 @@
 #. module: base
 #: selection:res.partner.address,type:0
 msgid "Invoice"
-msgstr ""
+msgstr "الفاتورة"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -1649,41 +1717,41 @@
 #. module: base
 #: model:res.country,name:base.bb
 msgid "Barbados"
-msgstr ""
+msgstr "باربادوس"
 
 #. module: base
 #: model:res.country,name:base.mg
 msgid "Madagascar"
-msgstr ""
+msgstr "مدغشقر"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
-msgstr ""
+msgstr "اسم الكائن يجب أن يبدأ بـ \"_x\" ولا يحتوي على رموز خاصة !"
 
 #. module: base
 #: field:ir.actions.configuration.wizard,note:0
 msgid "Next Wizard"
-msgstr ""
+msgstr "المعالج التالي"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_menu_admin
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,name:0
 msgid "Menu"
-msgstr ""
+msgstr "القائمة"
 
 #. module: base
 #: field:res.currency,rate:0
 msgid "Current Rate"
-msgstr ""
+msgstr "السعر الحالي"
 
 #. module: base
 #: field:ir.ui.view.custom,ref_id:0
 msgid "Original View"
-msgstr ""
+msgstr "طريقة العرض الأصلية"
 
 #. module: base
 #: view:ir.values:0
@@ -1698,17 +1766,17 @@
 #. module: base
 #: model:res.country,name:base.ai
 msgid "Anguilla"
-msgstr ""
+msgstr "أنجويلا"
 
 #. module: base
 #: field:ir.ui.view_sc,name:0
 msgid "Shortcut Name"
-msgstr ""
+msgstr "اسم الاختصار"
 
 #. module: base
 #: help:ir.actions.act_window,limit:0
 msgid "Default limit for the list view"
-msgstr ""
+msgstr "الحد الافتراضي لطريقة عرض القائمة"
 
 #. module: base
 #: help:ir.actions.server,write_id:0
@@ -1720,83 +1788,84 @@
 #. module: base
 #: model:res.country,name:base.zw
 msgid "Zimbabwe"
-msgstr ""
+msgstr "زيمبابوي"
 
 #. module: base
 #: view:base.module.update:0
 msgid "Please be patient, as this operation may take a few seconds..."
-msgstr ""
+msgstr "فضلاً انتظر. هذه العملية يمكن أن تستغرق عدة ثوانٍ..."
 
 #. module: base
 #: help:ir.values,action_id:0
 msgid "This field is not used, it only helps you to select the right action."
 msgstr ""
+"هذا الحقل غير مستخدم، ولكنه موجود ليساعدك على اختيار الإجراء المناسب."
 
 #. module: base
 #: field:ir.actions.server,email:0
 msgid "Email Address"
-msgstr ""
+msgstr "عنوان البريد الإلكتروني"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "French (BE) / Français (BE)"
-msgstr ""
+msgstr "الفرنسية / Français (BE)"
 
 #. module: base
 #: view:ir.actions.server:0
 #: field:workflow.activity,action_id:0
 msgid "Server Action"
-msgstr ""
+msgstr "إجراء الخادم"
 
 #. module: base
 #: model:res.country,name:base.tt
 msgid "Trinidad and Tobago"
-msgstr ""
+msgstr "ترينيداد وتوباغو"
 
 #. module: base
 #: model:res.country,name:base.lv
 msgid "Latvia"
-msgstr ""
+msgstr "لاتفيا"
 
 #. module: base
 #: view:ir.values:0
 msgid "Values"
-msgstr ""
+msgstr "القيم"
 
 #. module: base
 #: view:ir.actions.server:0
 msgid "Field Mappings"
-msgstr ""
+msgstr "ارتباطات الحقول"
 
 #. module: base
 #: view:base.language.export:0
 msgid "Export Translations"
-msgstr ""
+msgstr "تصدير ترجمة"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_custom
 msgid "Customization"
-msgstr ""
+msgstr "تخصيص"
 
 #. module: base
 #: model:res.country,name:base.py
 msgid "Paraguay"
-msgstr ""
+msgstr "باراجواي"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_act_window_close
 msgid "ir.actions.act_window_close"
-msgstr ""
+msgstr "ir.actions.act_window_close"
 
 #. module: base
 #: field:ir.server.object.lines,col1:0
 msgid "Destination"
-msgstr ""
+msgstr "الوجهة"
 
 #. module: base
 #: model:res.country,name:base.lt
 msgid "Lithuania"
-msgstr ""
+msgstr "ليثوانيا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_partner_clear_ids
@@ -1821,45 +1890,48 @@
 #. module: base
 #: view:res.lang:0
 msgid "%y - Year without century [00,99]."
-msgstr ""
+msgstr "%y - السنة دون القرن [00،99]"
 
 #. module: base
 #: model:res.country,name:base.si
 msgid "Slovenia"
-msgstr ""
+msgstr "سلوفينيا"
 
 #. module: base
 #: model:res.country,name:base.pk
 msgid "Pakistan"
-msgstr ""
+msgstr "باكستان"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
-msgstr ""
+msgstr "هيكل الكائن غير صحيح!"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_email_gateway_form
 msgid "Messages"
-msgstr ""
+msgstr "الرسائل"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
-msgstr ""
+msgstr "خطأ!"
 
 #. module: base
 #: view:res.lang:0
 msgid "%p - Equivalent of either AM or PM."
-msgstr ""
+msgstr "%p - صباحاً أم مساءً"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -1869,25 +1941,25 @@
 #. module: base
 #: help:multi_company.default,company_id:0
 msgid "Company where the user is connected"
-msgstr ""
+msgstr "الشركة ذات العلاقة بالمستخدم"
 
 #. module: base
 #: field:publisher_warranty.contract,date_stop:0
 msgid "Ending Date"
-msgstr ""
+msgstr "تاريخ الانتهاء"
 
 #. module: base
 #: model:res.country,name:base.nz
 msgid "New Zealand"
-msgstr ""
+msgstr "نيوزيلندا"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
 "(Document type: %s)."
-msgstr ""
+msgstr "أحد السجلات التي تحاول تعديلها قد تمّ حذفه سابقاً (نوع المستند: %s)"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_country
@@ -1896,6 +1968,8 @@
 "partner records. You can create or delete countries to make sure the ones "
 "you are working on will be maintained."
 msgstr ""
+"عرض وتعديل قائمة الدول التي يمكن استخدامها في سجلات شركائك. يمكنك إضافة و "
+"إزالة دول كما تشاء."
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_7
@@ -1905,38 +1979,38 @@
 #. module: base
 #: model:res.country,name:base.nf
 msgid "Norfolk Island"
-msgstr ""
+msgstr "جزيرة نورفولك"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Korean (KR) / 한국어 (KR)"
-msgstr ""
+msgstr "الكورية / 한국어 (KR)"
 
 #. module: base
 #: help:ir.model.fields,model:0
 msgid "The technical name of the model this field belongs to"
-msgstr ""
+msgstr "الاسم التقني للنموذج الذي يحتوي هذا الحقل"
 
 #. module: base
 #: field:ir.actions.server,action_id:0
 #: selection:ir.actions.server,state:0
 msgid "Client Action"
-msgstr ""
+msgstr "إجراء العميل"
 
 #. module: base
 #: model:res.country,name:base.bd
 msgid "Bangladesh"
-msgstr ""
+msgstr "بنغلاديش"
 
 #. module: base
 #: constraint:res.company:0
 msgid "Error! You can not create recursive companies."
-msgstr ""
+msgstr "خطأ! لا يمكنك إنشاء شركات متداخلة (شركات تستخدم نفسها)."
 
 #. module: base
 #: selection:publisher_warranty.contract,state:0
 msgid "Valid"
-msgstr ""
+msgstr "صحيح"
 
 #. module: base
 #: selection:ir.translation,type:0
@@ -1944,64 +2018,65 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
-msgstr ""
+msgstr "لا يمكنك ترقية الوحدة البرمجية '%s' لأنها غير مثبّتة."
 
 #. module: base
 #: model:res.country,name:base.cu
 msgid "Cuba"
-msgstr ""
+msgstr "كوبا"
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_event
 msgid "res.partner.event"
-msgstr ""
+msgstr "res.partner.event"
 
 #. module: base
 #: model:res.widget,title:base.facebook_widget
 msgid "Facebook"
-msgstr ""
+msgstr "فيسبوك"
 
 #. module: base
 #: model:res.country,name:base.am
 msgid "Armenia"
-msgstr ""
+msgstr "أرمينيا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_property_form
 #: model:ir.ui.menu,name:base.menu_ir_property_form_all
 msgid "Configuration Parameters"
-msgstr ""
+msgstr "متغيرات الإعدادات"
 
 #. module: base
 #: constraint:ir.cron:0
 msgid "Invalid arguments"
-msgstr ""
+msgstr "معطيات غير سليمة"
 
 #. module: base
 #: model:res.country,name:base.se
 msgid "Sweden"
-msgstr ""
+msgstr "السويد"
 
 #. module: base
 #: selection:ir.actions.act_window.view,view_mode:0
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Gantt"
-msgstr ""
+msgstr "جانت"
 
 #. module: base
 #: view:ir.property:0
 msgid "Property"
-msgstr ""
+msgstr "الخاصية"
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
-msgstr ""
+msgstr "نوع الحساب المصرفي"
 
 #. module: base
 #: field:base.language.export,config_logo:0
@@ -2015,10 +2090,8 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
-msgstr ""
+msgstr "الصورة"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -2028,19 +2101,19 @@
 #. module: base
 #: selection:publisher_warranty.contract,state:0
 msgid "Canceled"
-msgstr ""
+msgstr "ملغي"
 
 #. module: base
 #: model:res.country,name:base.at
 msgid "Austria"
-msgstr ""
+msgstr "النمسا"
 
 #. module: base
 #: selection:base.language.install,state:0
 #: selection:base.module.import,state:0
 #: selection:base.module.update,state:0
 msgid "done"
-msgstr ""
+msgstr "تمّ"
 
 #. module: base
 #: selection:ir.actions.act_window.view,view_mode:0
@@ -2048,12 +2121,12 @@
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Calendar"
-msgstr ""
+msgstr "التقويم"
 
 #. module: base
 #: field:res.partner.address,partner_id:0
 msgid "Partner Name"
-msgstr ""
+msgstr "اسم الشريك"
 
 #. module: base
 #: field:workflow.activity,signal_send:0
@@ -2063,10 +2136,10 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_17
 msgid "HR sector"
-msgstr ""
+msgstr "قطاع الموارد البشرية"
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2077,19 +2150,17 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_module_module_dependency
 msgid "Module dependency"
-msgstr ""
+msgstr "متطلّب للوحدة البرمجية"
 
 #. module: base
 #: selection:publisher_warranty.contract.wizard,state:0
 msgid "Draft"
-msgstr ""
+msgstr "مسودّة"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
-msgstr ""
+msgstr "مفصلة"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_title_contact
@@ -2102,30 +2173,30 @@
 #. module: base
 #: field:res.company,rml_footer1:0
 msgid "Report Footer 1"
-msgstr ""
+msgstr "تذييل تقرير 1"
 
 #. module: base
 #: field:res.company,rml_footer2:0
 msgid "Report Footer 2"
-msgstr ""
+msgstr "تذييل تقرير 2"
 
 #. module: base
 #: view:ir.model.access:0
 #: view:res.groups:0
 #: field:res.groups,model_access:0
 msgid "Access Controls"
-msgstr ""
+msgstr "التحكم في الصلاحيات"
 
 #. module: base
 #: view:ir.module.module:0
 #: field:ir.module.module,dependencies_id:0
 msgid "Dependencies"
-msgstr ""
+msgstr "المتطلبات"
 
 #. module: base
 #: field:multi_company.default,company_id:0
 msgid "Main Company"
-msgstr ""
+msgstr "الشركة الرئيسية"
 
 #. module: base
 #: field:ir.ui.menu,web_icon_hover:0
@@ -2142,13 +2213,13 @@
 #. module: base
 #: field:res.partner.address,birthdate:0
 msgid "Birthdate"
-msgstr ""
+msgstr "تاريخ الميلاد"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_title_contact
 #: model:ir.ui.menu,name:base.menu_partner_title_contact
 msgid "Contact Titles"
-msgstr ""
+msgstr "ألقاب جهات الاتصال"
 
 #. module: base
 #: view:base.language.import:0
@@ -2156,6 +2227,7 @@
 "Please double-check that the file encoding is set to UTF-8 (sometimes called "
 "Unicode) when the translator exports it."
 msgstr ""
+"فضلاً تأكد أن الملف يستخدم ترميز UTF-8 (Unicode) عند تصديره من المترجم."
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -2177,32 +2249,32 @@
 #. module: base
 #: field:ir.model.fields,select_level:0
 msgid "Searchable"
-msgstr ""
+msgstr "قابل للبحث"
 
 #. module: base
 #: model:res.country,name:base.uy
 msgid "Uruguay"
-msgstr ""
+msgstr "اوروغواي"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Finnish / Suomi"
-msgstr ""
+msgstr "الفنلندية / Suomi"
 
 #. module: base
 #: field:ir.rule,perm_write:0
 msgid "Apply For Write"
-msgstr ""
+msgstr "اطلب صلاحية الكتابة"
 
 #. module: base
 #: field:ir.sequence,prefix:0
 msgid "Prefix"
-msgstr ""
+msgstr "اللقب"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "German / Deutsch"
-msgstr ""
+msgstr "الألمانية / Deutsch"
 
 #. module: base
 #: help:ir.actions.server,trigger_name:0
@@ -2212,23 +2284,23 @@
 #. module: base
 #: view:ir.actions.server:0
 msgid "Fields Mapping"
-msgstr ""
+msgstr "ارتباط الحقول"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Portugese / Português"
-msgstr ""
+msgstr "البرتغالية / Português"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_sir
 msgid "Sir"
-msgstr ""
+msgstr "السيّد"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
-msgstr ""
+msgstr "طريقة العرض '%s' غير معرفة لهذا الهيكل!"
 
 #. module: base
 #: field:ir.default,ref_id:0
@@ -2239,17 +2311,17 @@
 #: model:ir.actions.server,name:base.action_start_configurator
 #: model:ir.ui.menu,name:base.menu_view_base_module_configuration
 msgid "Start Configuration"
-msgstr ""
+msgstr "بدء الإعداد"
 
 #. module: base
 #: model:res.country,name:base.mt
 msgid "Malta"
-msgstr ""
+msgstr "مالطة"
 
 #. module: base
 #: field:ir.actions.server,fields_lines:0
 msgid "Field Mappings."
-msgstr ""
+msgstr "ارتباطات الحقول."
 
 #. module: base
 #: model:ir.model,name:base.model_ir_module_module
@@ -2258,31 +2330,31 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
-msgstr ""
+msgstr "الوحدة البرمجية"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
 msgid "Description"
-msgstr ""
+msgstr "الوصف"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_workflow_instance_form
 #: model:ir.ui.menu,name:base.menu_workflow_instance
 msgid "Instances"
-msgstr ""
+msgstr "الأمثلة"
 
 #. module: base
 #: model:res.country,name:base.aq
 msgid "Antarctica"
-msgstr ""
+msgstr "انتاركتيكا"
 
 #. module: base
 #: field:ir.actions.report.xml,auto:0
@@ -2292,55 +2364,55 @@
 #. module: base
 #: view:base.language.import:0
 msgid "_Import"
-msgstr ""
+msgstr "ا_ستيراد"
 
 #. module: base
 #: view:res.partner.canal:0
 msgid "Channel"
-msgstr ""
+msgstr "القناة"
 
 #. module: base
 #: field:res.lang,grouping:0
 msgid "Separator Format"
-msgstr ""
+msgstr "تنسيق الفاصل"
 
 #. module: base
 #: selection:publisher_warranty.contract,state:0
 msgid "Unvalidated"
-msgstr ""
+msgstr "غير محقق"
 
 #. module: base
 #: model:ir.ui.menu,name:base.next_id_9
 msgid "Database Structure"
-msgstr ""
+msgstr "هيكل قاعدة البيانات"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
-msgstr ""
+msgstr "إرسال رسائل شاملة (عامة)"
 
 #. module: base
 #: model:res.country,name:base.yt
 msgid "Mayotte"
-msgstr ""
+msgstr "مايوت"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
-msgstr ""
+msgstr "فضلاً حدد إجراءً للبدء بتنفيذه!"
 
 #. module: base
 #: view:res.payterm:0
 msgid "Payment Term"
-msgstr ""
+msgstr "أجل السداد"
 
 #. module: base
 #: selection:res.lang,direction:0
 msgid "Right-to-Left"
-msgstr ""
+msgstr "من اليمين إلى اليسار"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -2349,27 +2421,27 @@
 #: model:ir.model,name:base.model_ir_filters
 #: model:ir.ui.menu,name:base.menu_ir_filters
 msgid "Filters"
-msgstr ""
+msgstr "مرشحات الفرز"
 
 #. module: base
 #: code:addons/orm.py:758
 #, python-format
 msgid "Please check that all your lines have %d columns."
-msgstr ""
+msgstr "فضلاً تأكد من أن كل سطر يحتوي %d عموداً."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_cron_act
 #: view:ir.cron:0
 #: model:ir.ui.menu,name:base.menu_ir_cron_act
 msgid "Scheduled Actions"
-msgstr ""
+msgstr "الإجراءات المعدّة للتنفيذ"
 
 #. module: base
 #: field:res.partner.address,title:0
 #: field:res.partner.title,name:0
 #: field:res.widget,title:0
 msgid "Title"
-msgstr ""
+msgstr "اللقب"
 
 #. module: base
 #: help:ir.property,res_id:0
@@ -2377,16 +2449,16 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
-msgstr ""
+msgstr "ثمّة تداخل."
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
-msgstr ""
+msgstr "خطأ تداخل في متطلبات الوحدات البرمجية!"
 
 #. module: base
 #: view:base.language.install:0
@@ -2395,11 +2467,14 @@
 "loading a new language it becomes available as default interface language "
 "for users and partners."
 msgstr ""
+"يساعدك هذا المعالج على إضافة لغة جديدة لنسختك من نظام OpenERP. بعد تحميل "
+"اللغة الجديدة، يمكن للمستخدمين والشركاء استخدامها كلغة افتراضية لواجهة "
+"الاستخدام."
 
 #. module: base
 #: view:ir.model:0
 msgid "Create a Menu"
-msgstr ""
+msgstr "إنشاء قائمة"
 
 #. module: base
 #: help:res.partner,vat:0
@@ -2407,32 +2482,34 @@
 "Value Added Tax number. Check the box if the partner is subjected to the "
 "VAT. Used by the VAT legal statement."
 msgstr ""
+"رقم ضريبة القيمة المضافة. ضع علامة في هذا المربع اذا كان الشريك خاضع لضريبة "
+"القيمة المضافة. تستخدم بواسطة كشف ضريبة القيمة المضافة القانونية."
 
 #. module: base
 #: model:ir.model,name:base.model_maintenance_contract
 msgid "maintenance.contract"
-msgstr ""
+msgstr "maintenance.contract"
 
 #. module: base
 #: model:res.country,name:base.ru
 msgid "Russian Federation"
-msgstr ""
+msgstr "الإتّحاد الروسي"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Urdu / اردو"
-msgstr ""
+msgstr "Urdu / اردو"
 
 #. module: base
 #: field:res.company,name:0
 msgid "Company Name"
-msgstr ""
+msgstr "اسم الشركة"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_country
 #: model:ir.ui.menu,name:base.menu_country_partner
 msgid "Countries"
-msgstr ""
+msgstr "الدول"
 
 #. module: base
 #: selection:ir.translation,type:0
@@ -2442,12 +2519,12 @@
 #. module: base
 #: view:ir.rule:0
 msgid "Record rules"
-msgstr ""
+msgstr "قواعد السجلات"
 
 #. module: base
 #: view:ir.property:0
 msgid "Field Information"
-msgstr ""
+msgstr "معلومات الحقل"
 
 #. module: base
 #: view:ir.actions.todo:0
@@ -2463,7 +2540,7 @@
 #. module: base
 #: field:res.partner,vat:0
 msgid "VAT"
-msgstr ""
+msgstr "ضريبة القيمة المضافة"
 
 #. module: base
 #: view:res.lang:0
@@ -2473,27 +2550,27 @@
 #. module: base
 #: constraint:res.partner.category:0
 msgid "Error ! You can not create recursive categories."
-msgstr ""
+msgstr "خطأ! لا يمكنك إنشاء فئات متداخلة."
 
 #. module: base
 #: view:res.lang:0
 msgid "%x - Appropriate date representation."
-msgstr ""
+msgstr "%x - صيغة التاريخ المناسب"
 
 #. module: base
 #: view:res.lang:0
 msgid "%d - Day of the month [01,31]."
-msgstr ""
+msgstr "%d - اليوم من الشهر [01،31]"
 
 #. module: base
 #: model:res.country,name:base.tj
 msgid "Tajikistan"
-msgstr ""
+msgstr "طاجكستان"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL-2 or later version"
-msgstr ""
+msgstr "GPL-2 أو إصدار أحدث"
 
 #. module: base
 #: model:res.partner.title,shortcut:base.res_partner_title_sir
@@ -2501,28 +2578,32 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
 " %s"
 msgstr ""
+"لا يمكن إنشاء ملف الوحدة البرمجية:\n"
+" %s"
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
 "document (Operation: read, Document type: %s)."
 msgstr ""
+"العملية ممنوعة حسب قواعد الصلاحيات، أو أنه تمّ تنفيذ العملية على مستندات "
+"محذوفة (العملية: قراءة. نوع المستند: %s)."
 
 #. module: base
 #: model:res.country,name:base.nr
 msgid "Nauru"
-msgstr ""
+msgstr "ناورو"
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr ""
@@ -2530,7 +2611,7 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_property
 msgid "ir.property"
-msgstr ""
+msgstr "ir.property"
 
 #. module: base
 #: selection:ir.actions.act_window,view_type:0
@@ -2539,23 +2620,23 @@
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Form"
-msgstr ""
+msgstr "النموذج"
 
 #. module: base
 #: model:res.country,name:base.me
 msgid "Montenegro"
-msgstr ""
+msgstr "الجبل الأسود"
 
 #. module: base
 #: view:ir.cron:0
 msgid "Technical Data"
-msgstr ""
+msgstr "بيانات تقنية"
 
 #. module: base
 #: view:res.partner:0
 #: field:res.partner,category_id:0
 msgid "Categories"
-msgstr ""
+msgstr "الفئات"
 
 #. module: base
 #: view:base.language.import:0
@@ -2564,34 +2645,35 @@
 "import a language pack from here. Other OpenERP languages than the official "
 "ones can be found on launchpad."
 msgstr ""
+"إذا كنت تريد استخدام لغة ليست ضمن اللغات المدعومة رسمياً، يمكنك استيراد حزمة "
+"لغة من هنا. يوجد المزيد من اللغات غير المدعومة رسمياً على موقع Launchpad."
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
-msgstr ""
+msgstr "للترقية"
 
 #. module: base
 #: model:res.country,name:base.ly
 msgid "Libya"
-msgstr ""
+msgstr "ليبيا"
 
 #. module: base
 #: model:res.country,name:base.cf
 msgid "Central African Republic"
-msgstr ""
+msgstr "جمهورية أفريقيا الوسطى"
 
 #. module: base
 #: model:res.country,name:base.li
 msgid "Liechtenstein"
-msgstr ""
+msgstr "ليشتنشتاين"
 
 #. module: base
 #: model:ir.model,name:base.model_partner_sms_send
 #: view:partner.sms.send:0
 msgid "Send SMS"
-msgstr ""
+msgstr "إرسال رسالة قصيرة (SMS)"
 
 #. module: base
 #: field:res.partner,ean13:0
@@ -2599,26 +2681,26 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
-msgstr ""
+msgstr "هيكل غير صحيح!"
 
 #. module: base
 #: model:res.country,name:base.pt
 msgid "Portugal"
-msgstr ""
+msgstr "البرتغال"
 
 #. module: base
 #: sql_constraint:ir.model.data:0
 msgid ""
 "You cannot have multiple records with the same id for the same module !"
-msgstr ""
+msgstr "لا يمكن استخدام المعرّف نفسه لأكثر من سجل في وحدة برمجية واحدة!"
 
 #. module: base
 #: field:ir.module.module,certificate:0
 msgid "Quality Certificate"
-msgstr ""
+msgstr "شهادة الجودة"
 
 #. module: base
 #: view:res.lang:0
@@ -2629,17 +2711,17 @@
 #: field:res.config.users,date:0
 #: field:res.users,date:0
 msgid "Last Connection"
-msgstr ""
+msgstr "الاتصال الأخير"
 
 #. module: base
 #: field:ir.actions.act_window,help:0
 msgid "Action description"
-msgstr ""
+msgstr "وصف الإجراء"
 
 #. module: base
 #: help:res.partner,customer:0
 msgid "Check this box if the partner is a customer."
-msgstr ""
+msgstr "اختر إذا كان الشريك عميلاً."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_lang_act_window
@@ -2647,18 +2729,18 @@
 #: model:ir.ui.menu,name:base.menu_res_lang_act_window
 #: view:res.lang:0
 msgid "Languages"
-msgstr ""
+msgstr "اللغات"
 
 #. module: base
 #: selection:workflow.activity,join_mode:0
 #: selection:workflow.activity,split_mode:0
 msgid "Xor"
-msgstr ""
+msgstr "Xor"
 
 #. module: base
 #: model:res.country,name:base.ec
 msgid "Ecuador"
-msgstr ""
+msgstr "الإكوادور"
 
 #. module: base
 #: code:addons/base/module/wizard/base_export_language.py:52
@@ -2668,6 +2750,9 @@
 "spreadsheet software. The file encoding is UTF-8. You have to translate the "
 "latest column before reimporting it."
 msgstr ""
+"احفظ هذا المستند بصيغة CSV وافتحه باستخدام برنامجك المفضل للجداول "
+"الإلكترونية. سيتمّ حفظ الملف باستخدام ترميز UTF-8. يجب عليك ترجمة العمود "
+"الأخير قبل أن تستورد الملف مرة أخرى."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_customer_form
@@ -2675,12 +2760,12 @@
 #: model:ir.ui.menu,name:base.menu_partner_form
 #: view:res.partner:0
 msgid "Customers"
-msgstr ""
+msgstr "العملاء"
 
 #. module: base
 #: model:res.country,name:base.au
 msgid "Australia"
-msgstr ""
+msgstr "استراليا"
 
 #. module: base
 #: help:res.partner,lang:0
@@ -2688,26 +2773,28 @@
 "If the selected language is loaded in the system, all documents related to "
 "this partner will be printed in this language. If not, it will be english."
 msgstr ""
+"إذا كانت اللغة المختارة محملة في النظام، سيتم طباعة جميع المستندات المتعلقة "
+"بهذا الشريك باستخدام هذه اللغة، وإلّا فسوف يتمّ استخدام اللغة الإنجليزية."
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Menu :"
-msgstr ""
+msgstr "القائمة:"
 
 #. module: base
 #: selection:ir.model.fields,state:0
 msgid "Base Field"
-msgstr ""
+msgstr "الحقل الأساسي"
 
 #. module: base
 #: view:publisher_warranty.contract:0
 msgid "Validate"
-msgstr ""
+msgstr "تحقق"
 
 #. module: base
 #: field:ir.actions.todo,restart:0
 msgid "Restart"
-msgstr ""
+msgstr "إعادة التشغيل"
 
 #. module: base
 #: field:ir.actions.report.xml,report_sxw_content:0
@@ -2719,7 +2806,7 @@
 #: view:ir.actions.wizard:0
 #: field:wizard.ir.model.menu.create.line,wizard_id:0
 msgid "Wizard"
-msgstr ""
+msgstr "المعالج"
 
 #. module: base
 #: view:ir.cron:0
@@ -2731,39 +2818,41 @@
 #, python-format
 msgid "\"email_from\" needs to be set to send welcome mails to users"
 msgstr ""
+"لا بدّ من تحديد قيمة لـ \"email_from\" حتى يمكنك إرسال خطابات الترحيب إلى "
+"المستخدمين"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Constraint"
-msgstr ""
+msgstr "تقييد"
 
 #. module: base
 #: selection:ir.values,key:0
 #: selection:res.partner.address,type:0
 msgid "Default"
-msgstr ""
+msgstr "القيمة الافتراضية"
 
 #. module: base
 #: view:ir.model.fields:0
 #: field:ir.model.fields,required:0
 #: field:res.partner.bank.type.field,required:0
 msgid "Required"
-msgstr ""
+msgstr "مطلوب"
 
 #. module: base
 #: view:res.users:0
 msgid "Default Filters"
-msgstr ""
+msgstr "مرشحات الفرز الافتراضية"
 
 #. module: base
 #: field:res.request.history,name:0
 msgid "Summary"
-msgstr ""
+msgstr "الملخّص"
 
 #. module: base
 #: field:multi_company.default,expression:0
 msgid "Expression"
-msgstr ""
+msgstr "صيغة"
 
 #. module: base
 #: help:ir.actions.server,subject:0
@@ -2771,11 +2860,13 @@
 "Specify the subject. You can use fields from the object, e.g. `Hello [[ "
 "object.partner_id.name ]]`"
 msgstr ""
+"حدد الموضوع. يمكنك استخدام حقول الكائن، مثل: 'مرحباً [[ "
+"object.partner_id.name ]]'"
 
 #. module: base
 #: view:res.company:0
 msgid "Header/Footer"
-msgstr ""
+msgstr "رأس/تذييل"
 
 #. module: base
 #: help:ir.actions.act_window,help:0
@@ -2783,16 +2874,18 @@
 "Optional help text for the users with a description of the target view, such "
 "as its usage and purpose."
 msgstr ""
+"نصّ مساعد اختياري للمستخدمين يشمل وصفاً للعرض المرجو. مثلاً: طريقة "
+"الاستخدام، والهدف من الإنشاء."
 
 #. module: base
 #: model:res.country,name:base.va
 msgid "Holy See (Vatican City State)"
-msgstr ""
+msgstr "المقعد المقدّس (ولاية مدينة الفاتيكان)"
 
 #. module: base
 #: field:base.module.import,module_file:0
 msgid "Module .ZIP file"
-msgstr ""
+msgstr "موديول لملف ZIP"
 
 #. module: base
 #: field:ir.ui.view,xml_id:0
@@ -2802,7 +2895,7 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_16
 msgid "Telecom sector"
-msgstr ""
+msgstr "قطاع الاتصالات"
 
 #. module: base
 #: field:workflow.transition,trigger_model:0
@@ -2812,7 +2905,7 @@
 #. module: base
 #: view:res.users:0
 msgid "Current Activity"
-msgstr ""
+msgstr "النشاط الحالي"
 
 #. module: base
 #: view:workflow.activity:0
@@ -2823,59 +2916,62 @@
 #. module: base
 #: model:res.country,name:base.sr
 msgid "Suriname"
-msgstr ""
+msgstr "سورينام"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
-msgstr ""
+msgstr "التسويق"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
-msgstr ""
+msgstr "الحساب المصرفي"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (HN) / Español (HN)"
-msgstr ""
+msgstr "الأسبانية / Español (HN)"
 
 #. module: base
 #: view:ir.sequence.type:0
 msgid "Sequence Type"
-msgstr ""
+msgstr "نوع المسلسل"
 
 #. module: base
 #: view:ir.ui.view.custom:0
 msgid "Customized Architecture"
-msgstr ""
+msgstr "هيكل مخصص"
 
 #. module: base
 #: field:ir.module.module,license:0
 msgid "License"
-msgstr ""
+msgstr "الرخصة"
 
 #. module: base
 #: field:ir.attachment,url:0
 msgid "Url"
-msgstr ""
+msgstr "العنوان الإلكتروني (URL)"
 
 #. module: base
 #: selection:ir.actions.todo,restart:0
 msgid "Always"
-msgstr ""
+msgstr "دائماً"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "SQL Constraint"
-msgstr ""
+msgstr "قيود الـ SQL"
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
-msgstr ""
+msgstr "النموذج"
 
 #. module: base
 #: view:base.language.install:0
@@ -2883,40 +2979,43 @@
 "The selected language has been successfully installed. You must change the "
 "preferences of the user and open a new menu to view the changes."
 msgstr ""
+"تمّ تثبيت اللغة المختارة بنجاح.  لاستخدام اللغة الجديدة، اخترها من تفضيلات "
+"المستخدم ثم استخدم القائمة لعرض أي صفحة باللغة الجديدة."
 
 #. module: base
 #: sql_constraint:ir.config_parameter:0
 msgid "Key must be unique."
-msgstr ""
+msgstr "يجب أن يكون المفتاح فريداً (مختلفاً عن بقية المفاتيح)."
 
 #. module: base
 #: view:ir.actions.act_window:0
 msgid "Open a Window"
-msgstr ""
+msgstr "افتح نافذةً"
 
 #. module: base
 #: model:res.country,name:base.gq
 msgid "Equatorial Guinea"
-msgstr ""
+msgstr "غينيا الاستوائية"
 
 #. module: base
 #: view:base.module.import:0
 #: model:ir.actions.act_window,name:base.action_view_base_module_import
 msgid "Module Import"
-msgstr ""
+msgstr "استيراد وحدة برمجية"
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
-msgstr ""
+msgstr "‏Zip"
 
 #. module: base
 #: view:ir.module.module:0
 #: field:ir.module.module,author:0
 msgid "Author"
-msgstr ""
+msgstr "المؤلف"
 
 #. module: base
 #: model:res.country,name:base.mk
@@ -2929,53 +3028,58 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
 "\n"
 "Click 'Continue' and enjoy your OpenERP experience..."
 msgstr ""
+"تمّ إعداد قاعدة بياناتك.\n"
+"\n"
+"انقر 'استمرار' وتمتع باستخدام OpenERP..."
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Hebrew / עִבְרִי"
-msgstr ""
+msgstr "العبرية / עִבְרִי"
 
 #. module: base
 #: model:res.country,name:base.bo
 msgid "Bolivia"
-msgstr ""
+msgstr "بوليفيا"
 
 #. module: base
 #: model:res.country,name:base.gh
 msgid "Ghana"
-msgstr ""
+msgstr "غانا"
 
 #. module: base
 #: field:res.lang,direction:0
 msgid "Direction"
-msgstr ""
+msgstr "الاتجاه"
 
 #. module: base
 #: view:ir.actions.act_window:0
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
 msgid "Views"
-msgstr ""
+msgstr "طرق العرض"
 
 #. module: base
 #: view:res.groups:0
 #: field:res.groups,rule_groups:0
 msgid "Rules"
-msgstr ""
+msgstr "القواعد"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -2983,17 +3087,17 @@
 #. module: base
 #: view:base.module.upgrade:0
 msgid "The selected modules have been updated / installed !"
-msgstr ""
+msgstr "تمّ تثبيت / تحديث الوحدات البرمجية المختارة!"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (PR) / Español (PR)"
-msgstr ""
+msgstr "الأسبانية / Español (PR)"
 
 #. module: base
 #: model:res.country,name:base.gt
 msgid "Guatemala"
-msgstr ""
+msgstr "جواتيمالا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_workflow_form
@@ -3001,32 +3105,32 @@
 #: model:ir.ui.menu,name:base.menu_workflow
 #: model:ir.ui.menu,name:base.menu_workflow_root
 msgid "Workflows"
-msgstr ""
+msgstr "سير العمل"
 
 #. module: base
 #: field:ir.translation,xml_id:0
 msgid "XML Id"
-msgstr ""
+msgstr "معرف XML"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_config_user_form
 msgid "Create Users"
-msgstr ""
+msgstr "إنشاء مستخدمين"
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_title
 msgid "res.partner.title"
-msgstr ""
+msgstr "res.partner.title"
 
 #. module: base
 #: view:ir.values:0
 msgid "tree_but_action, client_print_multi"
-msgstr ""
+msgstr "tree_but_action, client_print_multi"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_retailers0
 msgid "Retailers"
-msgstr ""
+msgstr "تجار التجزئة"
 
 #. module: base
 #: help:ir.cron,priority:0
@@ -3039,33 +3143,33 @@
 #: view:res.config:0
 #: view:res.config.installer:0
 msgid "Skip"
-msgstr ""
+msgstr "تجاوز"
 
 #. module: base
 #: model:res.country,name:base.ls
 msgid "Lesotho"
-msgstr ""
+msgstr "ليسوتو"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
-msgstr ""
+msgstr "لا يمكنك حذف النموذج '%s'!"
 
 #. module: base
 #: model:res.country,name:base.ke
 msgid "Kenya"
-msgstr ""
+msgstr "كينيا"
 
 #. module: base
 #: view:res.partner.event:0
 msgid "Event"
-msgstr ""
+msgstr "الحدث"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_custom_reports
 msgid "Custom Reports"
-msgstr ""
+msgstr "التقارير المخصصة"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -3075,33 +3179,33 @@
 #. module: base
 #: view:base.module.configuration:0
 msgid "System Configuration Done"
-msgstr ""
+msgstr "تمّ إعداد النظام"
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
-msgstr ""
+msgstr "حصل خطأ أثناء التحقق من صحة الحقل / الحقول %s: %s"
 
 #. module: base
 #: view:ir.property:0
 msgid "Generic"
-msgstr ""
+msgstr "عام"
 
 #. module: base
 #: model:res.country,name:base.sm
 msgid "San Marino"
-msgstr ""
+msgstr "سان مارينو"
 
 #. module: base
 #: model:res.country,name:base.bm
 msgid "Bermuda"
-msgstr ""
+msgstr "جزر البرمودا"
 
 #. module: base
 #: model:res.country,name:base.pe
 msgid "Peru"
-msgstr ""
+msgstr "البيرو"
 
 #. module: base
 #: selection:ir.model.fields,on_delete:0
@@ -3111,28 +3215,29 @@
 #. module: base
 #: model:res.country,name:base.bj
 msgid "Benin"
-msgstr ""
+msgstr "بنين"
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
-msgstr ""
+msgstr "ذلك العقد قد تمّ تسجيله في النظام سابقاً."
 
 #. module: base
 #: help:ir.sequence,suffix:0
 msgid "Suffix value of the record for the sequence"
-msgstr ""
+msgstr "قيمة لاحقة من السجل للمسلسل"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (PY) / Español (PY)"
-msgstr ""
+msgstr "الأسبانية / Español (PY)"
 
 #. module: base
 #: field:ir.config_parameter,key:0
 msgid "Key"
-msgstr ""
+msgstr "المفتاح"
 
 #. module: base
 #: field:res.company,rml_header:0
@@ -3142,26 +3247,27 @@
 #. module: base
 #: field:partner.sms.send,app_id:0
 msgid "API ID"
-msgstr ""
+msgstr "هوية API"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
 "these groups: %s."
 msgstr ""
+"لا يمكنك إنشاء هذا المستند (%s)! تأكد أنك تنتمي لإحدى هذه المجموعات: %s."
 
 #. module: base
 #: model:res.country,name:base.mu
 msgid "Mauritius"
-msgstr ""
+msgstr "موريشيوس"
 
 #. module: base
 #: view:ir.model.access:0
 #: view:ir.rule:0
 msgid "Full Access"
-msgstr ""
+msgstr "صلاحيات كاملة"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -3170,70 +3276,70 @@
 #: view:ir.model.fields:0
 #: model:ir.ui.menu,name:base.menu_security
 msgid "Security"
-msgstr ""
+msgstr "الأمن"
 
 #. module: base
 #: model:res.widget,title:base.openerp_favorites_twitter_widget
 msgid "OpenERP Favorites"
-msgstr ""
+msgstr "مفضلات OpenERP"
 
 #. module: base
 #: model:res.country,name:base.za
 msgid "South Africa"
-msgstr ""
+msgstr "جنوب إفريقيا"
 
 #. module: base
 #: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "Installed"
-msgstr ""
+msgstr "مثبَّت"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Ukrainian / українська"
-msgstr ""
+msgstr "الأوكرانية / українська"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_translation
 #: model:ir.ui.menu,name:base.menu_action_translation
 msgid "Translation Terms"
-msgstr ""
+msgstr "مصطلحات الترجمة"
 
 #. module: base
 #: model:res.country,name:base.sn
 msgid "Senegal"
-msgstr ""
+msgstr "السنغال"
 
 #. module: base
 #: model:res.country,name:base.hu
 msgid "Hungary"
-msgstr ""
+msgstr "المجر"
 
 #. module: base
 #: model:ir.model,name:base.model_res_groups
 msgid "res.groups"
-msgstr ""
+msgstr "res.groups"
 
 #. module: base
 #: model:res.country,name:base.br
 msgid "Brazil"
-msgstr ""
+msgstr "البرازيل"
 
 #. module: base
 #: view:res.lang:0
 msgid "%M - Minute [00,59]."
-msgstr ""
+msgstr "%M - الدقيقة [00،59]"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "Affero GPL-3"
-msgstr ""
+msgstr "رخصة Affero GPL-3"
 
 #. module: base
 #: field:ir.sequence,number_next:0
 msgid "Next Number"
-msgstr ""
+msgstr "العدد التالي"
 
 #. module: base
 #: help:workflow.transition,condition:0
@@ -3243,23 +3349,23 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (PA) / Español (PA)"
-msgstr ""
+msgstr "الأسبانية / Español (PA)"
 
 #. module: base
 #: view:res.currency:0
 #: field:res.currency,rate_ids:0
 msgid "Rates"
-msgstr ""
+msgstr "الأسعار"
 
 #. module: base
 #: model:res.country,name:base.sy
 msgid "Syria"
-msgstr ""
+msgstr "سوريا"
 
 #. module: base
 #: view:res.lang:0
 msgid "======================================================"
-msgstr ""
+msgstr "======================================================"
 
 #. module: base
 #: help:ir.actions.server,mobile:0
@@ -3272,12 +3378,12 @@
 #. module: base
 #: view:base.module.upgrade:0
 msgid "System update completed"
-msgstr ""
+msgstr "تمّ تحديث النظام"
 
 #. module: base
 #: selection:res.request,state:0
 msgid "draft"
-msgstr ""
+msgstr "مسودة"
 
 #. module: base
 #: selection:ir.property,type:0
@@ -3287,7 +3393,7 @@
 #: field:res.partner.event,date:0
 #: field:res.request,date_sent:0
 msgid "Date"
-msgstr ""
+msgstr "التاريخ"
 
 #. module: base
 #: field:ir.actions.report.xml,report_sxw:0
@@ -3297,34 +3403,34 @@
 #. module: base
 #: view:ir.attachment:0
 msgid "Data"
-msgstr ""
+msgstr "البيانات"
 
 #. module: base
 #: field:ir.ui.menu,parent_id:0
 #: field:wizard.ir.model.menu.create,menu_id:0
 msgid "Parent Menu"
-msgstr ""
+msgstr "القائمة الرئيسية"
 
 #. module: base
 #: field:ir.rule,perm_unlink:0
 msgid "Apply For Delete"
-msgstr ""
+msgstr "اطلب صلاحية الحذف"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
-msgstr ""
+msgstr "لا يمكن إعادة تسمية العمود بـ %s لأن ذلك الاسم مستخدم حالياً!"
 
 #. module: base
 #: view:ir.attachment:0
 msgid "Attached To"
-msgstr ""
+msgstr "مرفق لـ"
 
 #. module: base
 #: field:res.lang,decimal_point:0
 msgid "Decimal Separator"
-msgstr ""
+msgstr "فاصل الخانات العشرية"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_res_groups
@@ -3342,12 +3448,12 @@
 #: view:res.request:0
 #: field:res.request,history:0
 msgid "History"
-msgstr ""
+msgstr "المحفوظات"
 
 #. module: base
 #: field:ir.attachment,create_uid:0
 msgid "Creator"
-msgstr ""
+msgstr "المُنشِئ"
 
 #. module: base
 #: model:res.company,overdue_msg:base.main_company
@@ -3363,27 +3469,27 @@
 #. module: base
 #: model:res.country,name:base.mx
 msgid "Mexico"
-msgstr ""
+msgstr "المكسيك"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_config_plugins
 msgid "Plugins"
-msgstr ""
+msgstr "الإضافات البرمجية"
 
 #. module: base
 #: field:res.company,child_ids:0
 msgid "Child Companies"
-msgstr ""
+msgstr "الشركات الفرعية"
 
 #. module: base
 #: model:ir.model,name:base.model_res_users
 msgid "res.users"
-msgstr ""
+msgstr "res.users"
 
 #. module: base
 #: model:res.country,name:base.ni
 msgid "Nicaragua"
-msgstr ""
+msgstr "نيكاراجوا"
 
 #. module: base
 #: code:addons/orm.py:1046
@@ -3394,13 +3500,13 @@
 #. module: base
 #: view:res.partner.event:0
 msgid "General Description"
-msgstr ""
+msgstr "الوصف العام"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_config_simple_view_form
 #: view:res.config.view:0
 msgid "Configure Your Interface"
-msgstr ""
+msgstr "إعدادات الواجهة"
 
 #. module: base
 #: field:ir.values,meta:0
@@ -3410,12 +3516,12 @@
 #. module: base
 #: sql_constraint:ir.ui.view_sc:0
 msgid "Shortcut for this menu already exists!"
-msgstr ""
+msgstr "يوجد اختصار لهذه القائمة حالياً!"
 
 #. module: base
 #: model:res.country,name:base.ve
 msgid "Venezuela"
-msgstr ""
+msgstr "فينزويلا"
 
 #. module: base
 #: view:res.lang:0
@@ -3425,39 +3531,39 @@
 #. module: base
 #: model:res.country,name:base.zm
 msgid "Zambia"
-msgstr ""
+msgstr "زامبيا"
 
 #. module: base
 #: help:res.partner,user_id:0
 msgid ""
 "The internal user that is in charge of communicating with this partner if "
 "any."
-msgstr ""
+msgstr "المستخد الداخلي المكلَّف بالتواصل مع هذا الشريك، إن وُجِد."
 
 #. module: base
 #: field:res.partner,parent_id:0
 msgid "Parent Partner"
-msgstr ""
+msgstr "الشريك الأم"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Cancel Upgrade"
-msgstr ""
+msgstr "إلغاء الترقية"
 
 #. module: base
 #: model:res.country,name:base.ci
 msgid "Ivory Coast (Cote D'Ivoire)"
-msgstr ""
+msgstr "ساحل العاج"
 
 #. module: base
 #: model:res.country,name:base.kz
 msgid "Kazakhstan"
-msgstr ""
+msgstr "كازاخستان"
 
 #. module: base
 #: view:res.lang:0
 msgid "%w - Weekday number [0(Sunday),6]."
-msgstr ""
+msgstr "%w - رقم اليوم في الأسبوع [0 (الأحد)،6]"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_form
@@ -3474,10 +3580,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3488,7 +3596,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3497,7 +3606,7 @@
 #: field:workflow,name:0
 #: field:workflow.activity,name:0
 msgid "Name"
-msgstr ""
+msgstr "الاسم"
 
 #. module: base
 #: help:ir.actions.act_window,multi:0
@@ -3505,14 +3614,15 @@
 "If set to true, the action will not be displayed on the right toolbar of a "
 "form view"
 msgstr ""
+"في حالة الاختيار، لن يظهر الإجراء في شريط الأدوات على يمين طريقة عرض 'نموذج'"
 
 #. module: base
 #: model:res.country,name:base.ms
 msgid "Montserrat"
-msgstr ""
+msgstr "مونتسيرات"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3522,30 +3632,31 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_translation_app
 msgid "Application Terms"
-msgstr ""
+msgstr "مصطلحات التطبيق"
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
 "and the client."
 msgstr ""
+"المنطقة الزمنية للمستخدم. تستخدم لتحويل الوقت ما بين منطقة المستخدم ومنطقة "
+"الخادم."
 
 #. module: base
 #: field:ir.module.module,demo:0
 msgid "Demo data"
-msgstr ""
+msgstr "بيانات تجريبية"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "English (UK)"
-msgstr ""
+msgstr "الإنجليزية (المملكة المتحدة)"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Japanese / 日本語"
-msgstr ""
+msgstr "اليابانية / 日本語"
 
 #. module: base
 #: help:workflow.transition,act_from:0
@@ -3557,7 +3668,7 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_3
 msgid "Starter Partner"
-msgstr ""
+msgstr "شريك مبتدِئ"
 
 #. module: base
 #: help:ir.model.fields,relation_field:0
@@ -3569,12 +3680,12 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_act_window_view
 msgid "ir.actions.act_window.view"
-msgstr ""
+msgstr "ir.actions.act_window.view"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Web"
-msgstr ""
+msgstr "الإنترنت"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -3589,53 +3700,52 @@
 #. module: base
 #: model:res.country,name:base.et
 msgid "Ethiopia"
-msgstr ""
+msgstr "إثيوبيا"
 
 #. module: base
 #: help:res.country.state,code:0
 msgid "The state code in three chars.\n"
-msgstr ""
+msgstr "رمز الولاية (ثلاثة حروف).\n"
 
 #. module: base
 #: model:res.country,name:base.sj
 msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
+msgstr "جزر سفالبارد وجان ماين"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_wizard
 #: selection:ir.ui.menu,action:0
 msgid "ir.actions.wizard"
-msgstr ""
+msgstr "ir.actions.wizard"
 
 #. module: base
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
-msgstr ""
+msgstr "تجميع حسب"
 
 #. module: base
 #: view:res.config:0
 #: view:res.config.installer:0
 msgid "title"
-msgstr ""
+msgstr "الاسم"
 
 #. module: base
 #: model:ir.model,name:base.model_base_language_install
 msgid "Install Language"
-msgstr ""
+msgstr "تثبيت اللغة"
 
 #. module: base
 #: view:ir.translation:0
 msgid "Translation"
-msgstr ""
+msgstr "الترجمة"
 
 #. module: base
 #: selection:res.request,state:0
 msgid "closed"
-msgstr ""
+msgstr "مغلق"
 
 #. module: base
 #: selection:base.language.export,state:0
@@ -3655,7 +3765,7 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_product
 msgid "Products"
-msgstr ""
+msgstr "المنتجات"
 
 #. module: base
 #: field:ir.actions.act_window,domain:0
@@ -3666,7 +3776,7 @@
 #. module: base
 #: view:ir.actions.server:0
 msgid "SMS Configuration"
-msgstr ""
+msgstr "إعدادات الرسائل القصيرة (SMS)"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -3677,7 +3787,7 @@
 #: model:ir.actions.act_window,name:base.ir_access_act
 #: model:ir.ui.menu,name:base.menu_ir_access_act
 msgid "Access Controls List"
-msgstr ""
+msgstr "قوائم التحكم في الصلاحيات"
 
 #. module: base
 #: model:res.country,name:base.um
@@ -3685,23 +3795,22 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
-msgstr ""
+msgstr "نوع المصرف"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
-msgstr ""
+msgstr "لا يمكن أن يبدأ اسم المجموعة بـ '-'"
 
 #. module: base
 #: view:ir.ui.view_sc:0
 #: field:res.partner.title,shortcut:0
 msgid "Shortcut"
-msgstr ""
+msgstr "اختصار"
 
 #. module: base
 #: field:ir.model.data,date_init:0
@@ -3714,16 +3823,17 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
 msgstr ""
+"لا يمكن معالجة الوحدة البرمجية \"%s\" بسبب عدم توفر المتطلب الخارجي: %s"
 
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
 msgid "Please enter the serial key provided in your contract document:"
-msgstr ""
+msgstr "فضلاً أدخل المفتاح التسلسلي الموجود في مستند العقد:"
 
 #. module: base
 #: view:workflow.activity:0
@@ -3736,11 +3846,13 @@
 #, python-format
 msgid "module base cannot be loaded! (hint: verify addons-path)"
 msgstr ""
+"لا يمكن تحميل الوحدة البرمجية الأساسية (base)! تأكد من ضبط مسار الإضافات "
+"(addons-path)"
 
 #. module: base
 #: view:res.partner.bank:0
 msgid "Bank Account Owner"
-msgstr ""
+msgstr "مالِك الحساب المصرفي"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_values_form
@@ -3751,12 +3863,12 @@
 #: field:ir.attachment,res_name:0
 #: field:ir.ui.view_sc,resource:0
 msgid "Resource Name"
-msgstr ""
+msgstr "إسم المصدر"
 
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Hours"
-msgstr ""
+msgstr "الساعات"
 
 #. module: base
 #: model:res.country,name:base.gp
@@ -3764,12 +3876,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
-msgstr ""
+msgstr "خطأ مستخدم"
 
 #. module: base
 #: help:workflow.transition,signal:0
@@ -3782,43 +3894,43 @@
 #. module: base
 #: help:multi_company.default,object_id:0
 msgid "Object affected by this rule"
-msgstr ""
+msgstr "الكائن المتأثر بهذه القاعدة"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Directory"
-msgstr ""
+msgstr "مسار"
 
 #. module: base
 #: field:wizard.ir.model.menu.create,name:0
 msgid "Menu Name"
-msgstr ""
+msgstr "اسم القائمة"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Author Website"
-msgstr ""
+msgstr "الموقع الإلكتروني للمؤلف"
 
 #. module: base
 #: view:ir.attachment:0
 msgid "Month"
-msgstr ""
+msgstr "الشهر"
 
 #. module: base
 #: model:res.country,name:base.my
 msgid "Malaysia"
-msgstr ""
+msgstr "ماليزيا"
 
 #. module: base
 #: view:base.language.install:0
 #: model:ir.actions.act_window,name:base.action_view_base_language_install
 msgid "Load Official Translation"
-msgstr ""
+msgstr "تحميل ترجمة رسمية"
 
 #. module: base
 #: model:ir.model,name:base.model_res_request_history
 msgid "res.request.history"
-msgstr ""
+msgstr "res.request.history"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -3829,24 +3941,24 @@
 #: model:ir.model,name:base.model_res_partner_address
 #: view:res.partner.address:0
 msgid "Partner Addresses"
-msgstr ""
+msgstr "عناوين الشريك"
 
 #. module: base
 #: help:ir.model.fields,translate:0
 msgid ""
 "Whether values for this field can be translated (enables the translation "
 "mechanism for that field)"
-msgstr ""
+msgstr "إمكانية ترجمة قيم هذا الحقل (تمكين آلية الترجمة لهذا الحقل)"
 
 #. module: base
 #: view:res.lang:0
 msgid "%S - Seconds [00,61]."
-msgstr ""
+msgstr "%S - الثواني [00،61]."
 
 #. module: base
 #: model:res.country,name:base.cv
 msgid "Cape Verde"
-msgstr ""
+msgstr "الرأس الأخضر"
 
 #. module: base
 #: view:base.module.import:0
@@ -3855,25 +3967,26 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
 msgid "Events"
-msgstr ""
+msgstr "الأحداث"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_url
 #: selection:ir.ui.menu,action:0
 msgid "ir.actions.url"
-msgstr ""
+msgstr "ir.actions.url"
 
 #. module: base
 #: model:res.widget,title:base.currency_converter_widget
 msgid "Currency Converter"
-msgstr ""
+msgstr "محوّل العملات"
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -3882,17 +3995,17 @@
 #: model:ir.actions.act_window,name:base.action_partner_addess_tree
 #: view:res.partner:0
 msgid "Partner Contacts"
-msgstr ""
+msgstr "جهات اتصال الشريك"
 
 #. module: base
 #: field:base.module.update,add:0
 msgid "Number of modules added"
-msgstr ""
+msgstr "عدد الوحدات البرمجية التي تمّت إضافتها"
 
 #. module: base
 #: view:res.currency:0
 msgid "Price Accuracy"
-msgstr ""
+msgstr "دِقة السعر"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -3908,7 +4021,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "French / Français"
-msgstr ""
+msgstr "الفرنسية / Français"
 
 #. module: base
 #: code:addons/orm.py:1049
@@ -3924,28 +4037,28 @@
 #. module: base
 #: view:ir.actions.todo:0
 msgid "Set as Todo"
-msgstr ""
+msgstr "اجعل في انتظار التنفيذ"
 
 #. module: base
 #: field:ir.actions.act_window.view,act_window_id:0
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
-msgstr ""
+msgstr "إجراء"
 
 #. module: base
 #: view:ir.actions.server:0
 msgid "Email Configuration"
-msgstr ""
+msgstr "إعدادات البريد الإلكتروني"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_cron
 msgid "ir.cron"
-msgstr ""
+msgstr "ir.cron"
 
 #. module: base
 #: view:ir.rule:0
@@ -3955,7 +4068,7 @@
 #. module: base
 #: view:ir.sequence:0
 msgid "Current Year without Century: %(y)s"
-msgstr ""
+msgstr "السنة الحالية دون القرن: %(y)s"
 
 #. module: base
 #: field:ir.actions.server,trigger_obj_id:0
@@ -3965,86 +4078,86 @@
 #. module: base
 #: sql_constraint:ir.rule:0
 msgid "Rule must have at least one checked access right !"
-msgstr ""
+msgstr "يجب أن تختار صلاحية واحدة على الأقل للقاعدة!"
 
 #. module: base
 #: model:res.country,name:base.fj
 msgid "Fiji"
-msgstr ""
+msgstr "فيجي"
 
 #. module: base
 #: field:ir.model.fields,size:0
 msgid "Size"
-msgstr ""
+msgstr "الحجم"
 
 #. module: base
 #: model:res.country,name:base.sd
 msgid "Sudan"
-msgstr ""
+msgstr "السّودان"
 
 #. module: base
 #: model:res.country,name:base.fm
 msgid "Micronesia"
-msgstr ""
+msgstr "مكرونيسيا"
 
 #. module: base
 #: view:res.request.history:0
 msgid "Request History"
-msgstr ""
+msgstr "الطلبات السابقة"
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
-msgstr ""
+msgstr "القوائم"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Serbian (Latin) / srpski"
-msgstr ""
+msgstr "الصربية / srpski"
 
 #. module: base
 #: model:res.country,name:base.il
 msgid "Israel"
-msgstr ""
+msgstr "إسرائيل"
 
 #. module: base
 #: model:ir.actions.wizard,name:base.wizard_server_action_create
 msgid "Create Action"
-msgstr ""
+msgstr "أنشأ إجراء"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_model_model
 #: model:ir.model,name:base.model_ir_model
 #: model:ir.ui.menu,name:base.ir_model_model_menu
 msgid "Objects"
-msgstr ""
+msgstr "الكائنات"
 
 #. module: base
 #: field:res.lang,time_format:0
 msgid "Time Format"
-msgstr ""
+msgstr "تنسيق الوقت"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Defined Reports"
-msgstr ""
+msgstr "التقارير المعرّفة"
 
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "Report xml"
-msgstr ""
+msgstr "تقرير XML"
 
 #. module: base
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
 msgid "Modules"
-msgstr ""
+msgstr "الوحدات البرمجية"
 
 #. module: base
 #: view:workflow.activity:0
@@ -4057,7 +4170,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_config
 msgid "res.config"
-msgstr ""
+msgstr "res.config"
 
 #. module: base
 #: field:workflow.transition,signal:0
@@ -4070,12 +4183,12 @@
 #: view:res.bank:0
 #: field:res.partner,bank_ids:0
 msgid "Banks"
-msgstr ""
+msgstr "المصارف"
 
 #. module: base
 #: view:res.log:0
 msgid "Unread"
-msgstr ""
+msgstr "غير المقروءة"
 
 #. module: base
 #: field:ir.cron,doall:0
@@ -4085,52 +4198,49 @@
 #. module: base
 #: help:ir.actions.server,state:0
 msgid "Type of the Action that is to be executed"
-msgstr ""
+msgstr "نوع الإجراء المعدّ للتنفيذ"
 
 #. module: base
 #: field:ir.server.object.lines,server_id:0
 msgid "Object Mapping"
-msgstr ""
+msgstr "ارتباط الكائنات"
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
-msgstr ""
+msgstr "سعر العملة باستخدام العملة ذات السعر 1"
 
 #. module: base
 #: model:res.country,name:base.uk
 msgid "United Kingdom"
-msgstr ""
+msgstr "المملكة المتّحدة"
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
-msgstr ""
+msgstr "res_config_contents"
 
 #. module: base
 #: help:res.partner.category,active:0
 msgid "The active field allows you to hide the category without removing it."
-msgstr ""
+msgstr "الحقل النشط يمكّنك من إخفاء الفئة دون حذفها."
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Object:"
-msgstr ""
+msgstr "الكائن:"
 
 #. module: base
 #: model:res.country,name:base.bw
 msgid "Botswana"
-msgstr ""
+msgstr "بتسوانا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_title_partner
 #: model:ir.ui.menu,name:base.menu_partner_title_partner
 #: view:res.partner.title:0
 msgid "Partner Titles"
-msgstr ""
+msgstr "ألقاب الشريك"
 
 #. module: base
 #: help:ir.actions.act_window,auto_refresh:0
@@ -4140,7 +4250,7 @@
 #. module: base
 #: help:res.partner,employee:0
 msgid "Check this box if the partner is an Employee."
-msgstr ""
+msgstr "اختر إذا كان الشريك موظفاً"
 
 #. module: base
 #: field:ir.actions.report.xml,report_rml_content:0
@@ -4157,25 +4267,27 @@
 #. module: base
 #: field:base.language.export,advice:0
 msgid "Advice"
-msgstr ""
+msgstr "نصيحة"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_attachment
 msgid "ir.attachment"
-msgstr ""
+msgstr "ir.attachment"
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
 "this object as this object is for reporting purpose."
 msgstr ""
+"لا يمكنك تنفيذ هذه العملية. لا يمكن إنشاء سجل جديد لهذا الكائن لأن الهدف منه "
+"هو إصدار تقارير."
 
 #. module: base
 #: view:base.language.import:0
 msgid "- module,type,name,res_id,src,value"
-msgstr ""
+msgstr "- module,type,name,res_id,src,value"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4202,17 +4314,17 @@
 #. module: base
 #: field:ir.ui.view,inherit_id:0
 msgid "Inherited View"
-msgstr ""
+msgstr "عرض موروث"
 
 #. module: base
 #: view:ir.translation:0
 msgid "Source Term"
-msgstr ""
+msgstr "المصطلح الأصلي"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_main_pm
 msgid "Project"
-msgstr ""
+msgstr "المشاريع"
 
 #. module: base
 #: field:ir.ui.menu,web_icon_hover_data:0
@@ -4222,17 +4334,17 @@
 #. module: base
 #: view:base.module.import:0
 msgid "Module file successfully imported!"
-msgstr ""
+msgstr "تمّ استيراد ملف الوحدة البرمجية بنجاح!"
 
 #. module: base
 #: selection:ir.actions.todo,state:0
 msgid "Cancelled"
-msgstr ""
+msgstr "ملغي"
 
 #. module: base
 #: view:res.config.users:0
 msgid "Create User"
-msgstr ""
+msgstr "إنشاء مستخدم"
 
 #. module: base
 #: view:partner.clear.ids:0
@@ -4248,22 +4360,22 @@
 #. module: base
 #: selection:res.request,priority:0
 msgid "Low"
-msgstr ""
+msgstr "منخفض"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_audit
 msgid "Audit"
-msgstr ""
+msgstr "المراقبة"
 
 #. module: base
 #: model:res.country,name:base.lc
 msgid "Saint Lucia"
-msgstr ""
+msgstr "سانت لوسيا"
 
 #. module: base
 #: view:publisher_warranty.contract:0
 msgid "Maintenance Contract"
-msgstr ""
+msgstr "عقد صيانة"
 
 #. module: base
 #: help:ir.actions.server,trigger_obj_id:0
@@ -4271,24 +4383,28 @@
 msgstr ""
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
-msgstr ""
+msgstr "الموظف"
 
 #. module: base
 #: field:ir.model.access,perm_create:0
 msgid "Create Access"
-msgstr ""
+msgstr "صلاحيات الإنشاء"
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
-msgstr ""
+msgstr "المحافظة / الولاية"
 
 #. module: base
 #: field:ir.actions.server,copy_object:0
 msgid "Copy Of"
-msgstr ""
+msgstr "نسخة من"
 
 #. module: base
 #: field:ir.model,osv_memory:0
@@ -4303,19 +4419,17 @@
 #. module: base
 #: model:res.country,name:base.io
 msgid "British Indian Ocean Territory"
-msgstr ""
+msgstr "مقاطعة المحيط الهندي البريطانيّة"
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
-msgstr ""
+msgstr "الواجهة"
 
 #. module: base
 #: view:ir.actions.server:0
 msgid "Field Mapping"
-msgstr ""
+msgstr "ارتباط الحقول"
 
 #. module: base
 #: view:publisher_warranty.contract:0
@@ -4323,10 +4437,9 @@
 msgstr ""
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
-msgstr ""
+msgstr "نوع الحقل"
 
 #. module: base
 #: field:res.country.state,code:0
@@ -4336,30 +4449,28 @@
 #. module: base
 #: field:ir.model.fields,on_delete:0
 msgid "On delete"
-msgstr ""
+msgstr "أثناء المسح"
 
 #. module: base
 #: selection:res.lang,direction:0
 msgid "Left-to-Right"
-msgstr ""
+msgstr "من اليسار إلى اليمين"
 
 #. module: base
 #: view:res.lang:0
 #: field:res.lang,translatable:0
 msgid "Translatable"
-msgstr ""
+msgstr "قابل للترجمة"
 
 #. module: base
 #: model:res.country,name:base.vn
 msgid "Vietnam"
-msgstr ""
+msgstr "فيتنام"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
-msgstr ""
+msgstr "التوقيع"
 
 #. module: base
 #: code:addons/fields.py:456
@@ -4371,22 +4482,22 @@
 #: code:addons/fields.py:664
 #, python-format
 msgid "Not Implemented"
-msgstr ""
+msgstr "غير جاهز للاستخدام"
 
 #. module: base
 #: model:ir.model,name:base.model_res_widget_user
 msgid "res.widget.user"
-msgstr ""
+msgstr "res.widget.user"
 
 #. module: base
 #: field:res.partner.category,complete_name:0
 msgid "Full Name"
-msgstr ""
+msgstr "الاسم الكامل"
 
 #. module: base
 #: view:base.module.configuration:0
 msgid "_Ok"
-msgstr ""
+msgstr "_موافق"
 
 #. module: base
 #: help:ir.filters,user_id:0
@@ -4394,28 +4505,28 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
-msgstr ""
+msgstr "يجب أن يكون اسم الوحدة البرمجية فريداً!"
 
 #. module: base
 #: model:res.country,name:base.mz
 msgid "Mozambique"
-msgstr ""
+msgstr "موزامبيق"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_project_long_term
 msgid "Long Term Planning"
-msgstr ""
+msgstr "التخطيط طويل الأجل"
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
-msgstr ""
+msgstr "الرسالة"
 
 #. module: base
 #: field:ir.actions.act_window.view,multi:0
@@ -4426,47 +4537,46 @@
 #: view:res.partner:0
 #: field:res.partner,user_id:0
 msgid "Salesman"
-msgstr ""
+msgstr "مندوب المبيعات"
 
 #. module: base
 #: field:res.partner,address:0
 #: view:res.partner.address:0
 msgid "Contacts"
-msgstr ""
+msgstr "جهات الاتصال"
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
-msgstr ""
+msgstr "لا يمكن حذف هذا المستند لأنه مستخدم كخاصية افتراضية"
 
 #. module: base
 #: view:res.widget.wizard:0
 msgid "Add"
-msgstr ""
+msgstr "إضافة"
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
-msgstr ""
+msgstr "نفّذ الترقيات المُعدّة"
 
 #. module: base
 #: view:res.widget:0
 msgid "Widgets"
-msgstr ""
+msgstr "عناصر واجهة مستخدم"
 
 #. module: base
 #: model:res.country,name:base.cz
 msgid "Czech Republic"
-msgstr ""
+msgstr "جمهورية التشيك"
 
 #. module: base
 #: view:res.widget.wizard:0
 msgid "Widget Wizard"
-msgstr ""
+msgstr "معالج عناصر واجهات المستخدم"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.act_ir_actions_todo_form
@@ -4475,25 +4585,30 @@
 "OpenERP. They are launched during the installation of new modules, but you "
 "can choose to restart some wizards manually from this menu."
 msgstr ""
+"استخدم معالجات الإعدادات لمساعدتك على إعداد نستختك الجديدة من OpenERP. يتمّ "
+"تنفيذ هذه المعالجات أثناء تثبيت وحدات برمجية جديدة، ولكن بإمكانك أيضاً إعادة "
+"تشغيل أي منهم يدوياً من هذه القائمة."
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
 "change your own password."
 msgstr ""
+"فضلاً استخدم معالج تغيير كلمة المرور (في تفضيلات المستخدم أو قائمة المستخدم) "
+"لتغيير كلمة مرورك."
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
-msgstr ""
+msgstr "لا يوجد حقول كافية لاستخدام طريقة عرض التقويم!"
 
 #. module: base
 #: selection:ir.property,type:0
 msgid "Integer"
-msgstr ""
+msgstr "عدد صحيح"
 
 #. module: base
 #: help:ir.actions.report.xml,report_rml:0
@@ -4503,10 +4618,9 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
-msgstr ""
+msgstr "الشركة التي يعمل هذا المستخدم لصالحها حالياً."
 
 #. module: base
 #: model:ir.model,name:base.model_wizard_ir_model_menu_create
@@ -4516,27 +4630,27 @@
 #. module: base
 #: view:workflow.transition:0
 msgid "Transition"
-msgstr ""
+msgstr "انتقال"
 
 #. module: base
 #: field:res.groups,menu_access:0
 msgid "Access Menu"
-msgstr ""
+msgstr "قائمة الوصول"
 
 #. module: base
 #: model:res.country,name:base.na
 msgid "Namibia"
-msgstr ""
+msgstr "ناميبيا"
 
 #. module: base
 #: model:res.country,name:base.mn
 msgid "Mongolia"
-msgstr ""
+msgstr "منغوليا"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Created Menus"
-msgstr ""
+msgstr "أنشاء القوائم"
 
 #. module: base
 #: selection:ir.ui.view,type:0
@@ -4546,7 +4660,7 @@
 #. module: base
 #: model:res.country,name:base.bi
 msgid "Burundi"
-msgstr ""
+msgstr "بوروندي"
 
 #. module: base
 #: view:base.language.install:0
@@ -4554,10 +4668,8 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
-msgstr ""
+msgstr "إغلاق"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4567,12 +4679,12 @@
 #. module: base
 #: view:res.log:0
 msgid "My Logs"
-msgstr ""
+msgstr "سجلاتي"
 
 #. module: base
 #: model:res.country,name:base.bt
 msgid "Bhutan"
-msgstr ""
+msgstr "مملكة بوتان"
 
 #. module: base
 #: help:ir.sequence,number_next:0
@@ -4582,17 +4694,17 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_11
 msgid "Textile Suppliers"
-msgstr ""
+msgstr "مورّدو النسيج"
 
 #. module: base
 #: selection:ir.actions.url,target:0
 msgid "This Window"
-msgstr ""
+msgstr "هذه النافذة"
 
 #. module: base
 #: view:publisher_warranty.contract:0
 msgid "Publisher Warranty Contracts"
-msgstr ""
+msgstr "عقود ضمان الناشر"
 
 #. module: base
 #: help:res.log,name:0
@@ -4602,7 +4714,7 @@
 #. module: base
 #: field:base.language.export,format:0
 msgid "File Format"
-msgstr ""
+msgstr "صيغة الملف"
 
 #. module: base
 #: field:res.lang,iso_code:0
@@ -4612,18 +4724,18 @@
 #. module: base
 #: model:ir.model,name:base.model_res_config_view
 msgid "res.config.view"
-msgstr ""
+msgstr "res.config.view"
 
 #. module: base
 #: view:res.log:0
 #: field:res.log,read:0
 msgid "Read"
-msgstr ""
+msgstr "قراءة"
 
 #. module: base
 #: sql_constraint:res.country:0
 msgid "The name of the country must be unique !"
-msgstr ""
+msgstr "يجب أن يكون اسم الدولة فريداً"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_country_state
@@ -4632,6 +4744,8 @@
 "federal states you are working on from here. Each state is attached to one "
 "country."
 msgstr ""
+"إذا كنت تعمل في السوق الأمريكي، يمكنك تحديد الولايات الأمريكية التي تعمل "
+"فيها من هنا. كل ولاية ترتبط بدولة واحدة فقط."
 
 #. module: base
 #: view:workflow.workitem:0
@@ -4644,11 +4758,11 @@
 msgstr ""
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
-msgstr ""
+msgstr "كلمة المرور"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_model_fields
@@ -4658,12 +4772,12 @@
 #: view:ir.model.fields:0
 #: model:ir.ui.menu,name:base.ir_model_model_fields
 msgid "Fields"
-msgstr ""
+msgstr "الحقول"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_employee_form
 msgid "Employees"
-msgstr ""
+msgstr "الموظفون"
 
 #. module: base
 #: help:res.log,read:0
@@ -4685,7 +4799,7 @@
 #. module: base
 #: field:ir.module.module,installed_version:0
 msgid "Latest version"
-msgstr ""
+msgstr "الإصدارة الأخيرة"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.res_partner_canal-act
@@ -4704,29 +4818,30 @@
 #: model:ir.actions.act_window,name:base.action_partner_address_form
 #: model:ir.ui.menu,name:base.menu_partner_address_form
 msgid "Addresses"
-msgstr ""
+msgstr "العناوين"
 
 #. module: base
 #: model:res.country,name:base.mm
 msgid "Myanmar"
-msgstr ""
+msgstr "ميانمار"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Chinese (CN) / 简体中文"
-msgstr ""
+msgstr "الصينية / 简体中文"
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
-msgstr ""
+msgstr "الشارع"
 
 #. module: base
 #: model:res.country,name:base.yu
 msgid "Yugoslavia"
-msgstr ""
+msgstr "يوغوسلافيا"
 
 #. module: base
 #: field:ir.model.data,name:0
@@ -4736,7 +4851,7 @@
 #. module: base
 #: model:res.country,name:base.ca
 msgid "Canada"
-msgstr ""
+msgstr "كندا"
 
 #. module: base
 #: selection:ir.module.module.dependency,state:0
@@ -4746,38 +4861,38 @@
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_users_my
 msgid "Change My Preferences"
-msgstr ""
+msgstr "تغيير تفضيلاتي"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
-msgstr ""
+msgstr "اسم نموذج خاطئ في تعريف الإجراء."
 
 #. module: base
 #: field:partner.sms.send,text:0
 msgid "SMS Message"
-msgstr ""
+msgstr "رسالة قصيرة (SMS)"
 
 #. module: base
 #: model:res.country,name:base.cm
 msgid "Cameroon"
-msgstr ""
+msgstr "الكاميرون"
 
 #. module: base
 #: model:res.country,name:base.bf
 msgid "Burkina Faso"
-msgstr ""
+msgstr "بوركينا فاسو"
 
 #. module: base
 #: selection:ir.actions.todo,state:0
 msgid "Skipped"
-msgstr ""
+msgstr "تمّ تجاوزه"
 
 #. module: base
 #: selection:ir.model.fields,state:0
 msgid "Custom Field"
-msgstr ""
+msgstr "حقل مخصص"
 
 #. module: base
 #: field:ir.module.module,web:0
@@ -4787,7 +4902,7 @@
 #. module: base
 #: model:res.country,name:base.cc
 msgid "Cocos (Keeling) Islands"
-msgstr ""
+msgstr "جزر الكوكوس"
 
 #. module: base
 #: selection:base.language.install,state:0
@@ -4804,7 +4919,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type_field
 msgid "Bank type fields"
-msgstr ""
+msgstr "حقول نوع المصرف"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4812,24 +4927,27 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
 "\n"
 "This addon is already installed on your system"
 msgstr ""
+"\n"
+"\n"
+"قد تمّ تثبيت هذه الإضافة البرمجية سابقاً على نظامك"
 
 #. module: base
 #: help:ir.cron,interval_number:0
 msgid "Repeat every x."
-msgstr ""
+msgstr "تكرار كل س."
 
 #. module: base
 #: wizard_view:server.action.create,step_1:0
 #: wizard_field:server.action.create,step_1,report:0
 msgid "Select Report"
-msgstr ""
+msgstr "اختر التقرير"
 
 #. module: base
 #: report:ir.module.reference.graph:0
@@ -4839,32 +4957,32 @@
 #. module: base
 #: field:ir.module.module,maintainer:0
 msgid "Maintainer"
-msgstr ""
+msgstr "المشرف"
 
 #. module: base
 #: field:ir.sequence,suffix:0
 msgid "Suffix"
-msgstr ""
+msgstr "اللاحقة"
 
 #. module: base
 #: model:res.country,name:base.mo
 msgid "Macau"
-msgstr ""
+msgstr "ماكاو"
 
 #. module: base
 #: model:ir.actions.report.xml,name:base.res_partner_address_report
 msgid "Labels"
-msgstr ""
+msgstr "التسميات"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
-msgstr ""
+msgstr "البريد الإلكتروني للمرسِل"
 
 #. module: base
 #: field:ir.default,field_name:0
 msgid "Object Field"
-msgstr ""
+msgstr "حقل الكائن"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4877,12 +4995,13 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
 "to the standard menu."
 msgstr ""
+"إذا تمّ تحديد هذا الإجراء فسيتم تنفيذه عند تسجيل دخول المستخدم، بالإضافة إلى "
+"القائمة الافتراضية."
 
 #. module: base
 #: view:ir.values:0
@@ -4896,12 +5015,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
 "But this module is not available in your system."
 msgstr ""
+"أنت تحاول ترقية وحدة برمجية تتطلب وحدة برمجية أخرى: %s\n"
+"غير متوفرة على نظامك."
 
 #. module: base
 #: field:workflow.transition,act_to:0
@@ -4911,7 +5032,7 @@
 #. module: base
 #: view:ir.values:0
 msgid "Connect Events to Actions"
-msgstr ""
+msgstr "اربط الأحداث بالإجراءات"
 
 #. module: base
 #: model:ir.model,name:base.model_base_update_translations
@@ -4919,10 +5040,9 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
-msgstr ""
+msgstr "الفئة الأم"
 
 #. module: base
 #: selection:ir.property,type:0
@@ -4932,9 +5052,8 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
-msgstr ""
+msgstr "جهة الاتصال"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_ui_menu
@@ -4944,19 +5063,19 @@
 #. module: base
 #: model:res.country,name:base.us
 msgid "United States"
-msgstr ""
+msgstr "الولايات المتّحدة"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Cancel Uninstall"
-msgstr ""
+msgstr "ألغاء أمر الإزالة"
 
 #. module: base
 #: view:res.bank:0
 #: view:res.partner:0
 #: view:res.partner.address:0
 msgid "Communication"
-msgstr ""
+msgstr "التواصل"
 
 #. module: base
 #: view:ir.actions.report.xml:0
@@ -4966,18 +5085,18 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_server_object_lines
 msgid "ir.server.object.lines"
-msgstr ""
+msgstr "ir.server.object.lines"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
-msgstr ""
+msgstr "الوحدة البرمجية %s: شهادة الجودة غير صحيحية"
 
 #. module: base
 #: model:res.country,name:base.kw
 msgid "Kuwait"
-msgstr ""
+msgstr "الكويت"
 
 #. module: base
 #: field:workflow.workitem,inst_id:0
@@ -5000,23 +5119,23 @@
 #. module: base
 #: model:res.country,name:base.ng
 msgid "Nigeria"
-msgstr ""
+msgstr "نيجيريا"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
-msgstr ""
+msgstr "يجب سرد الاختيارات الممكنة لحقل الاختيار!"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_sms_send
 msgid "SMS Send"
-msgstr ""
+msgstr "إرسال رسالة قصيرة (SMS)"
 
 #. module: base
 #: field:res.company,user_ids:0
 msgid "Accepted Users"
-msgstr ""
+msgstr "المستخدمون المقبولون"
 
 #. module: base
 #: field:ir.ui.menu,web_icon_data:0
@@ -5026,17 +5145,17 @@
 #. module: base
 #: view:ir.values:0
 msgid "Values for Event Type"
-msgstr ""
+msgstr "القيم الممكنة لنوع الحدث"
 
 #. module: base
 #: selection:ir.model.fields,select_level:0
 msgid "Always Searchable"
-msgstr ""
+msgstr "قابل للبحث دائماً"
 
 #. module: base
 #: model:res.country,name:base.hk
 msgid "Hong Kong"
-msgstr ""
+msgstr "هونج كونج"
 
 #. module: base
 #: help:ir.actions.server,name:0
@@ -5058,12 +5177,12 @@
 #. module: base
 #: model:res.country,name:base.ph
 msgid "Philippines"
-msgstr ""
+msgstr "الفلبّين"
 
 #. module: base
 #: model:res.country,name:base.ma
 msgid "Morocco"
-msgstr ""
+msgstr "المغرب"
 
 #. module: base
 #: view:res.lang:0
@@ -5073,27 +5192,27 @@
 #. module: base
 #: field:res.widget,content:0
 msgid "Content"
-msgstr ""
+msgstr "المحتوى"
 
 #. module: base
 #: help:ir.rule,global:0
 msgid "If no group is specified the rule is global and applied to everyone"
-msgstr ""
+msgstr "في حالة عدم تحديد مجموعة، ستطبّق القاعدة على الجميع"
 
 #. module: base
 #: model:res.country,name:base.td
 msgid "Chad"
-msgstr ""
+msgstr "تشاد"
 
 #. module: base
 #: model:ir.model,name:base.model_workflow_transition
 msgid "workflow.transition"
-msgstr ""
+msgstr "workflow.transition"
 
 #. module: base
 #: view:res.lang:0
 msgid "%a - Abbreviated weekday name."
-msgstr ""
+msgstr "%a - اسم اليوم المختصر"
 
 #. module: base
 #: report:ir.module.reference.graph:0
@@ -5108,29 +5227,29 @@
 #. module: base
 #: model:res.country,name:base.dm
 msgid "Dominica"
-msgstr ""
+msgstr "دومينيكا"
 
 #. module: base
 #: sql_constraint:publisher_warranty.contract:0
 msgid ""
 "Your publisher warranty contract is already subscribed in the system !"
-msgstr ""
+msgstr "قد تمّ إشراك هذا النظام في عقد ضمان الناشر سابقاً!"
 
 #. module: base
 #: help:ir.cron,nextcall:0
 msgid "Next planned execution date for this scheduler"
-msgstr ""
+msgstr "تاريخ التنفيذ القادم لهذا المُجدوِل"
 
 #. module: base
 #: help:res.config.users,view:0
 #: help:res.users,view:0
 msgid "Choose between the simplified interface and the extended one"
-msgstr ""
+msgstr "اختر من بين الواجهة المبسطة والواجهة المفصلة"
 
 #. module: base
 #: model:res.country,name:base.np
 msgid "Nepal"
-msgstr ""
+msgstr "نيبال"
 
 #. module: base
 #: code:addons/orm.py:2307
@@ -5158,12 +5277,12 @@
 #: model:ir.ui.menu,name:base.menu_action_ui_view_custom
 #: view:ir.ui.view.custom:0
 msgid "Customized Views"
-msgstr ""
+msgstr "طرق العرض المخصصة"
 
 #. module: base
 #: view:partner.sms.send:0
 msgid "Bulk SMS send"
-msgstr ""
+msgstr "إرسال رسائل قصيرة (SMS) بالجملة"
 
 #. module: base
 #: view:ir.sequence:0
@@ -5173,17 +5292,17 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_view_base_module_update
 msgid "Update Modules List"
-msgstr ""
+msgstr "تحديث قائمة الوحدات البرمجية"
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
-msgstr ""
+msgstr "لا يمكن ترقية الوحدة البرمجية \"%s\" بسبب عدم توفّر متطلب خارجي: %s"
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5195,7 +5314,7 @@
 #. module: base
 #: view:ir.actions.configuration.wizard:0
 msgid "Continue"
-msgstr ""
+msgstr "إستمرار"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5203,10 +5322,10 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
-msgstr ""
+msgstr "الكائن %s غير موجود"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5221,38 +5340,38 @@
 #. module: base
 #: model:res.country,name:base.bv
 msgid "Bouvet Island"
-msgstr ""
+msgstr "جزيرة بوفي"
 
 #. module: base
 #: field:ir.attachment,name:0
 msgid "Attachment Name"
-msgstr ""
+msgstr "اسم المرفق"
 
 #. module: base
 #: field:base.language.export,data:0
 #: field:base.language.import,data:0
 msgid "File"
-msgstr ""
+msgstr "الملف"
 
 #. module: base
 #: view:res.config.users:0
 msgid "Add User"
-msgstr ""
+msgstr "إضافة مستخدم"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install
 msgid "Module Upgrade Install"
-msgstr ""
+msgstr "تثبيت ترقية وحدة برمجية"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_configuration_wizard
 msgid "ir.actions.configuration.wizard"
-msgstr ""
+msgstr "ir.actions.configuration.wizard"
 
 #. module: base
 #: view:res.lang:0
 msgid "%b - Abbreviated month name."
-msgstr ""
+msgstr "%b - اسم الشهر المختصر"
 
 #. module: base
 #: field:res.partner,supplier:0
@@ -5260,7 +5379,7 @@
 #: field:res.partner.address,is_supplier_add:0
 #: model:res.partner.category,name:base.res_partner_category_8
 msgid "Supplier"
-msgstr ""
+msgstr "مورِّد"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -5273,12 +5392,12 @@
 #: view:base.language.import:0
 #: view:wizard.ir.model.menu.create:0
 msgid "_Close"
-msgstr ""
+msgstr "إ_غلاق"
 
 #. module: base
 #: field:multi_company.default,company_dest_id:0
 msgid "Default Company"
-msgstr ""
+msgstr "الشركة الافتراضية"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5292,19 +5411,18 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
-msgstr ""
+msgstr "استيراد وحدة برمجية"
 
 #. module: base
 #: model:res.country,name:base.as
 msgid "American Samoa"
-msgstr ""
+msgstr "ساموا الأمريكية"
 
 #. module: base
 #: help:ir.actions.act_window,res_model:0
 msgid "Model name of the object to open in the view window"
-msgstr ""
+msgstr "اسم نموذج الكائن الذي سيتمّ فتحه في نافذة العرض"
 
 #. module: base
 #: field:res.log,secondary:0
@@ -5314,24 +5432,24 @@
 #. module: base
 #: field:ir.model.fields,selectable:0
 msgid "Selectable"
-msgstr ""
+msgstr "قابل للاختيار"
 
 #. module: base
 #: view:res.request.link:0
 msgid "Request Link"
-msgstr ""
+msgstr "اطلب الرابط"
 
 #. module: base
 #: view:ir.attachment:0
 #: selection:ir.attachment,type:0
 #: field:ir.module.module,url:0
 msgid "URL"
-msgstr ""
+msgstr "العنوان الإلكتروني (URL)"
 
 #. module: base
 #: help:res.country,name:0
 msgid "The full name of the country."
-msgstr ""
+msgstr "اسم الدولة كاملاً"
 
 #. module: base
 #: selection:ir.actions.server,state:0
@@ -5339,21 +5457,21 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
-msgstr ""
+msgstr "خطأ مستخدم"
 
 #. module: base
 #: model:res.country,name:base.ae
 msgid "United Arab Emirates"
-msgstr ""
+msgstr "الإمارات العربية المتحدة"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_crm_case_job_req_main
 msgid "Recruitment"
-msgstr ""
+msgstr "التوظيف"
 
 #. module: base
 #: model:res.country,name:base.re
@@ -5361,36 +5479,36 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
-msgstr ""
+msgstr "الاسم الجديد للعمود يجب أن يبدأ بـ x_ أيضاً لأن الحقل مخصص!"
 
 #. module: base
 #: view:ir.model.access:0
 #: view:ir.rule:0
 #: field:ir.rule,global:0
 msgid "Global"
-msgstr ""
+msgstr "شامل"
 
 #. module: base
 #: model:res.country,name:base.mp
 msgid "Northern Mariana Islands"
-msgstr ""
+msgstr "جزر ماريانا الشمالية"
 
 #. module: base
 #: model:res.country,name:base.sb
 msgid "Solomon Islands"
-msgstr ""
+msgstr "جزر سليمان"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr ""
@@ -5398,13 +5516,13 @@
 #. module: base
 #: view:res.request:0
 msgid "Waiting"
-msgstr ""
+msgstr "جاري الانتظار"
 
 #. module: base
 #: code:addons/__init__.py:834
 #, python-format
 msgid "Could not load base module"
-msgstr ""
+msgstr "لم يمكن تحميل الوحدة البرمجية الأساسية (base)"
 
 #. module: base
 #: view:res.lang:0
@@ -5420,13 +5538,13 @@
 #. module: base
 #: field:res.log,create_date:0
 msgid "Creation Date"
-msgstr ""
+msgstr "تاريخ الإنشاء"
 
 #. module: base
 #: view:ir.translation:0
 #: model:ir.ui.menu,name:base.menu_translation
 msgid "Translations"
-msgstr ""
+msgstr "الترجمات"
 
 #. module: base
 #: field:ir.sequence,padding:0
@@ -5436,43 +5554,42 @@
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "Report"
-msgstr ""
+msgstr "التقرير"
 
 #. module: base
 #: model:res.country,name:base.ua
 msgid "Ukraine"
-msgstr ""
+msgstr "أوكرانيا"
 
 #. module: base
 #: model:res.country,name:base.to
 msgid "Tonga"
-msgstr ""
+msgstr "تونجا"
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
-msgstr ""
+msgstr "فئة الوحدة البرمجية"
 
 #. module: base
 #: view:partner.wizard.ean.check:0
 msgid "Ignore"
-msgstr ""
+msgstr "تجاهل"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Reference Guide"
-msgstr ""
+msgstr "الدليل المرجعي"
 
 #. module: base
 #: view:ir.ui.view:0
 msgid "Architecture"
-msgstr ""
+msgstr "الهيكل"
 
 #. module: base
 #: model:res.country,name:base.ml
 msgid "Mali"
-msgstr ""
+msgstr "مالي"
 
 #. module: base
 #: help:res.config.users,email:0
@@ -5483,6 +5600,10 @@
 "Warning: if \"email_from\" and \"smtp_server\" aren't configured, it won't "
 "be possible to email new users."
 msgstr ""
+"في حالة ذكر بريد إلكتروني، سيتمّ إرسالة رسالة ترحيبية للمستخدم.\n"
+"\n"
+"تحذير: إذا لم يكن قد تمّ إعداد كل من الإعدادات \"email_from\" و "
+"\"smtp_server\"، فلن يكون من الممكن إرسال بريد إلكتروني."
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5497,17 +5618,17 @@
 #. module: base
 #: model:res.country,name:base.tk
 msgid "Tokelau"
-msgstr ""
+msgstr "توكلو"
 
 #. module: base
 #: field:ir.actions.report.xml,report_xsl:0
 msgid "XSL path"
-msgstr ""
+msgstr "مسار XSL"
 
 #. module: base
 #: model:res.country,name:base.bn
 msgid "Brunei Darussalam"
-msgstr ""
+msgstr "بروناي دار السّلام"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -5516,22 +5637,22 @@
 #: field:ir.ui.view,type:0
 #: field:wizard.ir.model.menu.create.line,view_type:0
 msgid "View Type"
-msgstr ""
+msgstr "عرض النوع"
 
 #. module: base
 #: model:ir.ui.menu,name:base.next_id_2
 msgid "User Interface"
-msgstr ""
+msgstr "واجهة المستخدم"
 
 #. module: base
 #: field:ir.attachment,create_date:0
 msgid "Date Created"
-msgstr ""
+msgstr "تاريخ الإنشاء"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_todo
 msgid "ir.actions.todo"
-msgstr ""
+msgstr "ir.actions.todo"
 
 #. module: base
 #: code:addons/base/res/res_config.py:94
@@ -5542,12 +5663,12 @@
 #. module: base
 #: view:ir.actions.act_window:0
 msgid "General Settings"
-msgstr ""
+msgstr "الإعدادات العامة"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_administration_shortcut
 msgid "Custom Shortcuts"
-msgstr ""
+msgstr "اختصارات مخصصة"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5557,33 +5678,32 @@
 #. module: base
 #: model:res.country,name:base.dz
 msgid "Algeria"
-msgstr ""
+msgstr "الجزائر"
 
 #. module: base
 #: model:res.country,name:base.be
 msgid "Belgium"
-msgstr ""
+msgstr "بلجيكا"
 
 #. module: base
 #: model:ir.model,name:base.model_osv_memory_autovacuum
 msgid "osv_memory.autovacuum"
-msgstr ""
+msgstr "osv_memory.autovacuum"
 
 #. module: base
 #: field:base.language.export,lang:0
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
-msgstr ""
+msgstr "اللغة"
 
 #. module: base
 #: model:res.country,name:base.gm
 msgid "Gambia"
-msgstr ""
+msgstr "غامبيا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_company_form
@@ -5591,33 +5711,31 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
-msgstr ""
+msgstr "الشركات"
 
 #. module: base
 #: view:res.lang:0
 msgid "%H - Hour (24-hour clock) [00,23]."
-msgstr ""
+msgstr "%H - الساعة (24 ساعة) [00،23]"
 
 #. module: base
 #: model:ir.model,name:base.model_res_widget
 msgid "res.widget"
-msgstr ""
+msgstr "res.widget"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
-msgstr ""
+msgstr "النموذج %s غير موجود!"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
-msgstr ""
+msgstr "لا يمكنك حذف اللغة المفضلة لمستخدم!"
 
 #. module: base
 #: code:addons/fields.py:103
@@ -5630,18 +5748,18 @@
 #: field:ir.actions.server,code:0
 #: selection:ir.actions.server,state:0
 msgid "Python Code"
-msgstr ""
+msgstr "كود بايثون"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
-msgstr ""
+msgstr "لا يمكن إنشاء ملف الوحدة البرمجية: %s !"
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
-msgstr ""
+msgstr "نواة نظام OpenERP. لازم لكل نسخة من النظام."
 
 #. module: base
 #: view:base.language.install:0
@@ -5650,42 +5768,44 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
-msgstr ""
+msgstr "إلغاء"
 
 #. module: base
 #: selection:base.language.export,format:0
 msgid "PO File"
-msgstr ""
+msgstr "ملف ترجمة (PO)"
 
 #. module: base
 #: model:res.country,name:base.nt
 msgid "Neutral Zone"
-msgstr ""
+msgstr "منطقة محايدة"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Hindi / हिंदी"
-msgstr ""
+msgstr "الهندية / हिंदी"
 
 #. module: base
 #: view:ir.model:0
 msgid "Custom"
-msgstr ""
+msgstr "مُخصّص"
 
 #. module: base
 #: view:res.request:0
 msgid "Current"
-msgstr ""
+msgstr "الحالي"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_9
 msgid "Components Supplier"
-msgstr ""
+msgstr "مورّد المكوّنات"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_users
@@ -5696,58 +5816,58 @@
 #: field:res.groups,users:0
 #: view:res.users:0
 msgid "Users"
-msgstr ""
+msgstr "المستخدمون"
 
 #. module: base
 #: field:ir.module.module,published_version:0
 msgid "Published Version"
-msgstr ""
+msgstr "الإصدارة المنشورة"
 
 #. module: base
 #: model:res.country,name:base.is
 msgid "Iceland"
-msgstr ""
+msgstr "آيسلندا"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_action_window
 #: model:ir.ui.menu,name:base.menu_ir_action_window
 msgid "Window Actions"
-msgstr ""
+msgstr "إجراءات النافذة"
 
 #. module: base
 #: view:res.lang:0
 msgid "%I - Hour (12-hour clock) [01,12]."
-msgstr ""
+msgstr "%I - الساعة (12 ساعة) [01،12]."
 
 #. module: base
 #: selection:publisher_warranty.contract.wizard,state:0
 msgid "Finished"
-msgstr ""
+msgstr "انتهى"
 
 #. module: base
 #: model:res.country,name:base.de
 msgid "Germany"
-msgstr ""
+msgstr "ألمانيا"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Week of the year: %(woy)s"
-msgstr ""
+msgstr "الأسبوع من السنة: %(woy)s"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_14
 msgid "Bad customers"
-msgstr ""
+msgstr "عملاء سيئون"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Reports :"
-msgstr ""
+msgstr "التقارير:"
 
 #. module: base
 #: model:res.country,name:base.gy
 msgid "Guyana"
-msgstr ""
+msgstr "غيانا"
 
 #. module: base
 #: help:ir.actions.act_window,view_type:0
@@ -5755,89 +5875,89 @@
 "View type: set to 'tree' for a hierarchical tree view, or 'form' for other "
 "views"
 msgstr ""
+"نوع طريقة العرض: اختر 'شجرة' للحصول على طريقة عرض هرمية، أو 'نموذج' لطرق "
+"العرض الأخرى"
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
-msgstr ""
+msgstr "انقر 'استمرار' لإعداد الإضافة التالية..."
 
 #. module: base
 #: field:ir.actions.server,record_id:0
 msgid "Create Id"
-msgstr ""
+msgstr "إنشاء مُعرِّف"
 
 #. module: base
 #: model:res.country,name:base.hn
 msgid "Honduras"
-msgstr ""
+msgstr "هندوراس"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
-msgstr ""
+msgstr "اختر لكي تظهر لك إرشادات لكل إجراء في القائمة دائماً"
 
 #. module: base
 #: model:res.country,name:base.eg
 msgid "Egypt"
-msgstr ""
+msgstr "مصر"
 
 #. module: base
 #: field:ir.rule,perm_read:0
 msgid "Apply For Read"
-msgstr ""
+msgstr "اطلب صلاحية القراءة"
 
 #. module: base
 #: help:ir.actions.server,model_id:0
 msgid ""
 "Select the object on which the action will work (read, write, create)."
-msgstr ""
+msgstr "اختر الكائن الذي سيطبّق عليه الإجراء (قراءة، كتابة، إنشاء)."
 
 #. module: base
 #: code:addons/base/ir/ir_actions.py:629
 #, python-format
 msgid "Please specify server option --email-from !"
-msgstr ""
+msgstr "فضلاً استخدم خيار الخادم --email-from !"
 
 #. module: base
 #: field:base.language.import,name:0
 msgid "Language Name"
-msgstr ""
+msgstr "اسم اللغة"
 
 #. module: base
 #: selection:ir.property,type:0
 msgid "Boolean"
-msgstr ""
+msgstr "بولياني (قيمة منطقية)"
 
 #. module: base
 #: view:ir.model:0
 msgid "Fields Description"
-msgstr ""
+msgstr "وصف الحقول"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
 #: view:res.partner.address:0
 #: view:workflow.activity:0
 msgid "Group By..."
-msgstr ""
+msgstr "تجميع حسب ..."
 
 #. module: base
 #: view:ir.model.fields:0
 #: field:ir.model.fields,readonly:0
 #: field:res.partner.bank.type.field,readonly:0
 msgid "Readonly"
-msgstr ""
+msgstr "للقراءة فقط"
 
 #. module: base
 #: field:ir.actions.act_window.view,view_id:0
@@ -5845,13 +5965,13 @@
 #: selection:ir.translation,type:0
 #: field:wizard.ir.model.menu.create.line,view_id:0
 msgid "View"
-msgstr ""
+msgstr "طريقة العرض"
 
 #. module: base
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be installed"
-msgstr ""
+msgstr "في انتظار التثبيت"
 
 #. module: base
 #: help:ir.actions.act_window,display_menu_tip:0
@@ -5862,10 +5982,10 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
-msgstr ""
+msgstr "الأساس"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5875,7 +5995,7 @@
 #. module: base
 #: model:res.country,name:base.lr
 msgid "Liberia"
-msgstr ""
+msgstr "ليبيريا"
 
 #. module: base
 #: view:ir.attachment:0
@@ -5885,7 +6005,7 @@
 #: field:res.partner,comment:0
 #: model:res.widget,title:base.note_widget
 msgid "Notes"
-msgstr ""
+msgstr "ملاحظات"
 
 #. module: base
 #: field:ir.config_parameter,value:0
@@ -5897,57 +6017,53 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
-msgstr ""
+msgstr "القيمة"
 
 #. module: base
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
-msgstr ""
+msgstr "الرمز"
 
 #. module: base
 #: model:ir.model,name:base.model_res_config_installer
 msgid "res.config.installer"
-msgstr ""
+msgstr "res.config.installer"
 
 #. module: base
 #: model:res.country,name:base.mc
 msgid "Monaco"
-msgstr ""
+msgstr "موناكو"
 
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Minutes"
-msgstr ""
+msgstr "الدقائق"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Help"
-msgstr ""
+msgstr "مساعدة"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
-msgstr ""
+msgstr "في حالة التحديد، سيحلّ الإجراء محل القائمة القياسية لهذا المستخدم."
 
 #. module: base
 #: selection:ir.actions.server,state:0
 msgid "Write Object"
-msgstr ""
+msgstr "كتابة الكائن"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_fundrising
 msgid "Fund Raising"
-msgstr ""
+msgstr "حملة تبرعات"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_sequence_type
@@ -5966,31 +6082,33 @@
 "All pending configuration wizards have been executed. You may restart "
 "individual wizards via the list of configuration wizards."
 msgstr ""
+"تمّ تنفيذ جميع المعالجات. يمكنك إعادة تشغيل المعالجات منفردة من خلال قائمة "
+"معالجات الإعدادات."
 
 #. module: base
 #: wizard_button:server.action.create,step_1,create:0
 msgid "Create"
-msgstr ""
+msgstr "إنشاء"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Current Year with Century: %(year)s"
-msgstr ""
+msgstr "السنة الحالية مع القرن: %(year)s"
 
 #. module: base
 #: field:ir.exports,export_fields:0
 msgid "Export ID"
-msgstr ""
+msgstr "مُعرِّف التصدير"
 
 #. module: base
 #: model:res.country,name:base.fr
 msgid "France"
-msgstr ""
+msgstr "فرنسا"
 
 #. module: base
 #: model:ir.model,name:base.model_res_log
 msgid "res.log"
-msgstr ""
+msgstr "res.log"
 
 #. module: base
 #: help:ir.translation,module:0
@@ -6007,7 +6125,7 @@
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Weeks"
-msgstr ""
+msgstr "الأسابيع"
 
 #. module: base
 #: model:res.country,name:base.af
@@ -6015,10 +6133,11 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
-msgstr ""
+msgstr "خطأ !"
 
 #. module: base
 #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry
@@ -6028,35 +6147,36 @@
 #. module: base
 #: field:ir.cron,interval_type:0
 msgid "Interval Unit"
-msgstr ""
+msgstr "وحدة الفترة"
 
 #. module: base
 #: field:publisher_warranty.contract,kind:0
 #: field:workflow.activity,kind:0
 msgid "Kind"
-msgstr ""
+msgstr "النوع"
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr ""
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
-msgstr ""
+msgstr "فاكس"
 
 #. module: base
 #: field:res.lang,thousands_sep:0
 msgid "Thousands Separator"
-msgstr ""
+msgstr "فاصل الآلاف"
 
 #. module: base
 #: field:res.request,create_date:0
 msgid "Created Date"
-msgstr ""
+msgstr "تاريخ الإنشاء"
 
 #. module: base
 #: help:ir.actions.server,loop_action:0
@@ -6073,32 +6193,32 @@
 #. module: base
 #: model:ir.model,name:base.model_res_request
 msgid "res.request"
-msgstr ""
+msgstr "res.request"
 
 #. module: base
 #: view:ir.model:0
 msgid "In Memory"
-msgstr ""
+msgstr "في الذاكرة"
 
 #. module: base
 #: view:ir.actions.todo:0
 msgid "Todo"
-msgstr ""
+msgstr "قيد التنفيذ"
 
 #. module: base
 #: field:ir.attachment,datas:0
 msgid "File Content"
-msgstr ""
+msgstr "محتوى الملف"
 
 #. module: base
 #: model:res.country,name:base.pa
 msgid "Panama"
-msgstr ""
+msgstr "بنما"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_ltd
 msgid "Ltd"
-msgstr ""
+msgstr "ذ.م.م"
 
 #. module: base
 #: help:workflow.transition,group_id:0
@@ -6107,20 +6227,20 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
+"الشركة المختارة غير مدرجة ضمن قائمة الشركات المسموح بها لهذا المستخدم"
 
 #. module: base
 #: model:res.country,name:base.gi
 msgid "Gibraltar"
-msgstr ""
+msgstr "جبل طارق"
 
 #. module: base
 #: field:ir.actions.report.xml,report_name:0
 msgid "Service Name"
-msgstr ""
+msgstr "اسم الخدمة"
 
 #. module: base
 #: model:res.country,name:base.pn
@@ -6132,30 +6252,30 @@
 msgid ""
 "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)."
 msgstr ""
+"نقترح إعادة تحميل القائمة لكي تظهر القوائم الجديدة (Ctrl+T ثم Ctrl+R)."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_rule
 #: model:ir.ui.menu,name:base.menu_action_rule
 msgid "Record Rules"
-msgstr ""
+msgstr "قواعد السجلات"
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
-msgstr ""
+msgstr "اسم المستخدم"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Day of the year: %(doy)s"
-msgstr ""
+msgstr "اليوم من السنة: %(doy)s"
 
 #. module: base
 #: view:ir.model:0
 #: view:ir.model.fields:0
 #: view:workflow.activity:0
 msgid "Properties"
-msgstr ""
+msgstr "الخصائص"
 
 #. module: base
 #: help:ir.sequence,padding:0
@@ -6167,22 +6287,22 @@
 #. module: base
 #: view:res.lang:0
 msgid "%A - Full weekday name."
-msgstr ""
+msgstr "%A - اسم اليوم كاملاً."
 
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Months"
-msgstr ""
+msgstr "شهور"
 
 #. module: base
 #: field:ir.actions.act_window,search_view:0
 msgid "Search View"
-msgstr ""
+msgstr "بحث العرض"
 
 #. module: base
 #: sql_constraint:res.lang:0
 msgid "The code of the language must be unique !"
-msgstr ""
+msgstr "يجب أن يكون رمز اللغة فريداً!"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_attachment
@@ -6190,66 +6310,66 @@
 #: view:ir.attachment:0
 #: model:ir.ui.menu,name:base.menu_action_attachment
 msgid "Attachments"
-msgstr ""
+msgstr "المُرفقات"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_partner
 #: model:ir.ui.menu,name:base.menu_sale_config_sales
 #: model:ir.ui.menu,name:base.menu_sales
 msgid "Sales"
-msgstr ""
+msgstr "المبيعات"
 
 #. module: base
 #: field:ir.actions.server,child_ids:0
 msgid "Other Actions"
-msgstr ""
+msgstr "إجراءات أخرى"
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
-msgstr ""
+msgstr "تمّ"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_miss
 msgid "Miss"
-msgstr ""
+msgstr "الآنسة"
 
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,perm_write:0
 #: view:ir.rule:0
 msgid "Write Access"
-msgstr ""
+msgstr "صلاحيات الكتابة"
 
 #. module: base
 #: view:res.lang:0
 msgid "%m - Month number [01,12]."
-msgstr ""
+msgstr "%m - رقم الشهر [01،12]."
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
 msgid "City"
-msgstr ""
+msgstr "المدينة"
 
 #. module: base
 #: model:res.country,name:base.qa
 msgid "Qatar"
-msgstr ""
+msgstr "قطر"
 
 #. module: base
 #: model:res.country,name:base.it
 msgid "Italy"
-msgstr ""
+msgstr "ايطاليا"
 
 #. module: base
 #: view:ir.actions.todo:0
 #: selection:ir.actions.todo,state:0
 msgid "To Do"
-msgstr ""
+msgstr "في انتظار التنفيذ"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -6257,33 +6377,31 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
-msgstr ""
+msgstr "البريد الإلكتروني"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL-3 or later version"
-msgstr ""
+msgstr "GPL-3 أو أحدث"
 
 #. module: base
 #: field:workflow.activity,action:0
 msgid "Python Action"
-msgstr ""
+msgstr "إجراء بايثون"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "English (US)"
-msgstr ""
+msgstr "الإنجليزية (الولايات المتحدة)"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_model_data
 #: view:ir.model.data:0
 #: model:ir.ui.menu,name:base.ir_model_data_menu
 msgid "Object Identifiers"
-msgstr ""
+msgstr "مُعرِّفات الكائنات"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_title_partner
@@ -6295,29 +6413,27 @@
 #. module: base
 #: view:base.language.export:0
 msgid "To browse official translations, you can start with these links:"
-msgstr ""
+msgstr "لتصفّح الترجمات الرسمية، ابدأ بهذه الروابط:"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
 "these groups: %s."
 msgstr ""
+"لا يمكنك قراءة هذا المستند (%s)! تأكد من أنك تنتمي لإحدى هذه المجموعات: %s."
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
-msgstr ""
+msgstr "العنوان"
 
 #. module: base
 #: field:ir.module.module,latest_version:0
 msgid "Installed version"
-msgstr ""
+msgstr "النسخة المثبتة"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -6327,34 +6443,34 @@
 #. module: base
 #: model:res.country,name:base.mr
 msgid "Mauritania"
-msgstr ""
+msgstr "موريتانيا"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_translation
 msgid "ir.translation"
-msgstr ""
+msgstr "ir.translation"
 
 #. module: base
 #: view:base.module.update:0
 msgid "Module update result"
-msgstr ""
+msgstr "نتيجة تحديث الوحدة البرمجية"
 
 #. module: base
 #: view:workflow.activity:0
 #: field:workflow.workitem,act_id:0
 msgid "Activity"
-msgstr ""
+msgstr "النشاط"
 
 #. module: base
 #: view:res.partner:0
 #: view:res.partner.address:0
 msgid "Postal Address"
-msgstr ""
+msgstr "العنوان البريدي"
 
 #. module: base
 #: field:res.company,parent_id:0
 msgid "Parent Company"
-msgstr ""
+msgstr "الشركة الأم"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -6364,27 +6480,28 @@
 #. module: base
 #: field:res.currency.rate,rate:0
 msgid "Rate"
-msgstr ""
+msgstr "السعر"
 
 #. module: base
 #: model:res.country,name:base.cg
 msgid "Congo"
-msgstr ""
+msgstr "الكونغو"
 
 #. module: base
 #: view:res.lang:0
 msgid "Examples"
-msgstr ""
+msgstr "أمثلة"
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
-msgstr ""
+msgstr "القيمة الافتراضية"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_tools
 msgid "Tools"
-msgstr ""
+msgstr "أدوات"
 
 #. module: base
 #: model:res.country,name:base.kn
@@ -6392,13 +6509,16 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
 "for the currency: %s \n"
 "at the date: %s"
 msgstr ""
+"لا يوجد سعر \n"
+"للعملة: %s \n"
+"في تاريخ: %s"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_ui_view_custom
@@ -6406,13 +6526,13 @@
 "Customized views are used when users reorganize the content of their "
 "dashboard views (via web client)"
 msgstr ""
+"تستخدم طرق العرض المخصصة عندما يقوم المستخدم بإعادة ترتيب محتويات لوحات "
+"المعلومات الخاصة به (أثناء استخدام واجهة الإنترنت)"
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
-msgstr ""
+msgstr "اسم الكائن"
 
 #. module: base
 #: help:ir.actions.server,srcmodel_id:0
@@ -6426,7 +6546,7 @@
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "Not Installed"
-msgstr ""
+msgstr "غير مثبّت"
 
 #. module: base
 #: view:workflow.activity:0
@@ -6437,12 +6557,12 @@
 #. module: base
 #: field:ir.ui.menu,icon:0
 msgid "Icon"
-msgstr ""
+msgstr "الأيقونة"
 
 #. module: base
 #: help:ir.model.fields,model_id:0
 msgid "The model this field belongs to"
-msgstr ""
+msgstr "النموذج الذي ينتمي إليه هذا الحقل"
 
 #. module: base
 #: model:res.country,name:base.mq
@@ -6460,17 +6580,17 @@
 #: model:ir.ui.menu,name:base.menu_resquest_ref
 #: view:res.request:0
 msgid "Requests"
-msgstr ""
+msgstr "الطلبات"
 
 #. module: base
 #: model:res.country,name:base.ye
 msgid "Yemen"
-msgstr ""
+msgstr "اليمن"
 
 #. module: base
 #: selection:workflow.activity,split_mode:0
 msgid "Or"
-msgstr ""
+msgstr "أو"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_log_act_window
@@ -6481,44 +6601,47 @@
 #. module: base
 #: model:res.country,name:base.al
 msgid "Albania"
-msgstr ""
+msgstr "ألبانيا"
 
 #. module: base
 #: model:res.country,name:base.ws
 msgid "Samoa"
-msgstr ""
+msgstr "ساموا"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
 "Please de-activate the language first."
 msgstr ""
+"لا يمكنك حذف لغة نشطة!\n"
+"فضلاً عطّل اللغة أولاً."
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
 msgstr ""
+"فضلاً انتظر. يمكن أن تستغرق هذه العملية عدة دقائق (اعتماداً على عدد الوحدات "
+"البرمجية المثبّتة حالياً)..."
 
 #. module: base
 #: field:ir.ui.menu,child_id:0
 msgid "Child IDs"
-msgstr ""
+msgstr "معرفات الفرعي"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr ""
@@ -6527,17 +6650,17 @@
 #: view:base.module.import:0
 #: view:base.module.update:0
 msgid "Open Modules"
-msgstr ""
+msgstr "فتح الوحدات البرمجية"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_res_bank_form
 msgid "Manage bank records you want to be used in the system."
-msgstr ""
+msgstr "التحكم في السجلات المصرفية التي تريد استخدامها في النظام."
 
 #. module: base
 #: view:base.module.import:0
 msgid "Import module"
-msgstr ""
+msgstr "استيراد وحدة برمجية"
 
 #. module: base
 #: field:ir.actions.server,loop_action:0
@@ -6554,23 +6677,23 @@
 #. module: base
 #: model:res.country,name:base.la
 msgid "Laos"
-msgstr ""
+msgstr "لاوس"
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
-msgstr ""
+msgstr "البريد الإلكتروني"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr ""
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6578,6 +6701,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6587,12 +6711,12 @@
 #: model:ir.ui.menu,name:base.next_id_73
 #: model:ir.ui.menu,name:base.reporting_menu
 msgid "Reporting"
-msgstr ""
+msgstr "التقارير"
 
 #. module: base
 #: model:res.country,name:base.tg
 msgid "Togo"
-msgstr ""
+msgstr "توغو"
 
 #. module: base
 #: selection:ir.module.module,license:0
@@ -6602,7 +6726,7 @@
 #. module: base
 #: selection:workflow.activity,kind:0
 msgid "Stop All"
-msgstr ""
+msgstr "إيقاف الكل"
 
 #. module: base
 #: code:addons/orm.py:412
@@ -6613,7 +6737,7 @@
 #. module: base
 #: view:ir.model.data:0
 msgid "Updatable"
-msgstr ""
+msgstr "قابل للتحديث"
 
 #. module: base
 #: view:res.lang:0
@@ -6628,22 +6752,22 @@
 #. module: base
 #: field:workflow.transition,group_id:0
 msgid "Group Required"
-msgstr ""
+msgstr "المجموعة مطلوبة"
 
 #. module: base
 #: view:ir.actions.configuration.wizard:0
 msgid "Next Configuration Step"
-msgstr ""
+msgstr "خطوة الإعدادات التالية"
 
 #. module: base
 #: field:res.groups,comment:0
 msgid "Comment"
-msgstr ""
+msgstr "تعليق"
 
 #. module: base
 #: model:res.country,name:base.ro
 msgid "Romania"
-msgstr ""
+msgstr "رومانيا"
 
 #. module: base
 #: help:ir.cron,doall:0
@@ -6655,18 +6779,18 @@
 #. module: base
 #: view:base.module.upgrade:0
 msgid "Start update"
-msgstr ""
+msgstr "ابدأ التحديث"
 
 #. module: base
 #: code:addons/base/publisher_warranty/publisher_warranty.py:144
 #, python-format
 msgid "Contract validation error"
-msgstr ""
+msgstr "خطأ أثناء التأكد من صحة العقد"
 
 #. module: base
 #: field:res.country.state,name:0
 msgid "State Name"
-msgstr ""
+msgstr "اسم المحافظة"
 
 #. module: base
 #: field:workflow.activity,join_mode:0
@@ -6674,16 +6798,15 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
-msgstr ""
+msgstr "المنطقة الزمنية"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_report_xml
 #: selection:ir.ui.menu,action:0
 msgid "ir.actions.report.xml"
-msgstr ""
+msgstr "ir.actions.report.xml"
 
 #. module: base
 #: model:res.partner.title,shortcut:base.res_partner_title_miss
@@ -6693,12 +6816,12 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_ui_view
 msgid "ir.ui.view"
-msgstr ""
+msgstr "ir.ui.view"
 
 #. module: base
 #: constraint:res.partner:0
 msgid "Error ! You can not create recursive associated members."
-msgstr ""
+msgstr "خطأ! لا يمكنك إنشاء أعضاء ذوي ارتباطات متداخلة."
 
 #. module: base
 #: help:res.lang,code:0
@@ -6708,39 +6831,39 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_2
 msgid "OpenERP Partners"
-msgstr ""
+msgstr "شركاء OpenERP"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_hr_manager
 msgid "HR Manager Dashboard"
-msgstr ""
+msgstr "لوحة معلومات مدير الموارد البشرية"
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
-msgstr ""
+msgstr "لم يمكن تثبيت الوحدة البرمجية \"%s\" بسبب عدم توفر متطلب خارجي: %s"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Search modules"
-msgstr ""
+msgstr "بحث في الوحدات البرمجية"
 
 #. module: base
 #: model:res.country,name:base.by
 msgid "Belarus"
-msgstr ""
+msgstr "روسيا البيضاء"
 
 #. module: base
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
-msgstr ""
+msgstr "اسم الإجراء"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_res_users
@@ -6750,77 +6873,83 @@
 "not connect to the system. You can assign them groups in order to give them "
 "specific access to the applications they need to use in the system."
 msgstr ""
+"إنشاء وإدارة مستخدمي النظام. يمكن تعطيل مستخدم في حالة عدم استخدامه للنظام، "
+"أو عدم رغبتك في استخدامه للنظام، لمدة محدودة. يمكن تعيين مجموعات للمستخدمين "
+"لمنحهم صلاحيات محددة للتطبيقات التي يحتاجونها."
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
-msgstr ""
+msgstr "طبيعي"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
-msgstr ""
+msgstr "الشارع ٢"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_base_module_update
 msgid "Module Update"
-msgstr ""
+msgstr "تحديث قائمة الوحدات البرمجية"
 
 #. module: base
 #: code:addons/base/module/wizard/base_module_upgrade.py:95
 #, python-format
 msgid "Following modules are not installed or unknown: %s"
-msgstr ""
+msgstr "الوحدات البرمجية التالية غير مثبّتة أو غير معروفة: %s"
 
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
 #: field:res.widget.user,user_id:0
 msgid "User"
-msgstr ""
+msgstr "المستخدم"
 
 #. module: base
 #: model:res.country,name:base.pr
 msgid "Puerto Rico"
-msgstr ""
+msgstr "بورتوريكو"
 
 #. module: base
 #: view:ir.actions.act_window:0
 msgid "Open Window"
-msgstr ""
+msgstr "فتح نافذة"
 
 #. module: base
 #: field:ir.actions.act_window,auto_search:0
 msgid "Auto Search"
-msgstr ""
+msgstr "بحث تلقائي"
 
 #. module: base
 #: field:ir.actions.act_window,filter:0
 msgid "Filter"
-msgstr ""
+msgstr "مرشح الفرز"
 
 #. module: base
 #: model:res.partner.title,shortcut:base.res_partner_title_madam
 msgid "Ms."
-msgstr ""
+msgstr "السيدة"
 
 #. module: base
 #: model:res.country,name:base.ch
 msgid "Switzerland"
-msgstr ""
+msgstr "سويسرا"
 
 #. module: base
 #: model:res.country,name:base.gd
 msgid "Grenada"
-msgstr ""
+msgstr "غرناطة"
 
 #. module: base
 #: model:res.country,name:base.wf
@@ -6830,27 +6959,26 @@
 #. module: base
 #: selection:server.action.create,init,type:0
 msgid "Open Report"
-msgstr ""
+msgstr "فتح التقرير"
 
 #. module: base
 #: field:res.currency,rounding:0
 msgid "Rounding factor"
-msgstr ""
+msgstr "معامل التقريب"
 
 #. module: base
 #: view:base.language.install:0
 msgid "Load"
-msgstr ""
+msgstr "تحميل"
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
-msgstr ""
+msgstr "الاسم الحقيقي للمستخدم الجديد. يستخدم في البحث والعرض."
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -6858,49 +6986,49 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_wizard_screen
 msgid "ir.wizard.screen"
-msgstr ""
+msgstr "ir.wizard.screen"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
-msgstr ""
+msgstr "لا يمكن أن يكون حجم الحقل أقل من 1 !"
 
 #. module: base
 #: model:res.country,name:base.so
 msgid "Somalia"
-msgstr ""
+msgstr "الصّومال"
 
 #. module: base
 #: selection:publisher_warranty.contract,state:0
 msgid "Terminated"
-msgstr ""
+msgstr "تمّ الإنهاء"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_13
 msgid "Important customers"
-msgstr ""
+msgstr "العملاء المهمّون"
 
 #. module: base
 #: view:res.lang:0
 msgid "Update Terms"
-msgstr ""
+msgstr "تحديث المصطلحات"
 
 #. module: base
 #: field:partner.sms.send,mobile_to:0
 #: field:res.request,act_to:0
 #: field:res.request.history,act_to:0
 msgid "To"
-msgstr ""
+msgstr "إلى"
 
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,args:0
 msgid "Arguments"
-msgstr ""
+msgstr "المحددات"
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr ""
@@ -6908,15 +7036,15 @@
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL Version 2"
-msgstr ""
+msgstr "GPL الإصدار الثاني"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL Version 3"
-msgstr ""
+msgstr "GPL الإصدار الثالث"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -6938,7 +7066,7 @@
 #: field:res.partner.address,is_customer_add:0
 #: model:res.partner.category,name:base.res_partner_category_0
 msgid "Customer"
-msgstr ""
+msgstr "العميل"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -6948,7 +7076,7 @@
 #. module: base
 #: field:ir.module.module,shortdesc:0
 msgid "Short Description"
-msgstr ""
+msgstr "وصف قصير"
 
 #. module: base
 #: field:ir.actions.act_window,context:0
@@ -6964,7 +7092,7 @@
 #. module: base
 #: field:ir.cron,nextcall:0
 msgid "Next Execution Date"
-msgstr ""
+msgstr "تاريخ التنفيذ القادم"
 
 #. module: base
 #: help:multi_company.default,field_id:0
@@ -6974,18 +7102,21 @@
 #. module: base
 #: field:res.request.history,date_sent:0
 msgid "Date sent"
-msgstr ""
+msgstr "تاريخ الإرسال"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Month: %(month)s"
-msgstr ""
+msgstr "الشهر: %(month)s"
 
 #. module: base
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -6996,39 +7127,40 @@
 #: field:res.widget.user,sequence:0
 #: field:wizard.ir.model.menu.create.line,sequence:0
 msgid "Sequence"
-msgstr ""
+msgstr "مسلسل"
 
 #. module: base
 #: model:res.country,name:base.tn
 msgid "Tunisia"
-msgstr ""
+msgstr "تونس"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
-msgstr ""
+msgstr "التصنيع"
 
 #. module: base
 #: model:res.country,name:base.km
 msgid "Comoros"
-msgstr ""
+msgstr "جزر القمر"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_server_action
 #: view:ir.actions.server:0
 #: model:ir.ui.menu,name:base.menu_server_action
 msgid "Server Actions"
-msgstr ""
+msgstr "إجراءات الخادم"
 
 #. module: base
 #: view:ir.module.module:0
 msgid "Cancel Install"
-msgstr ""
+msgstr "إلغاء التثبيت"
 
 #. module: base
 #: field:ir.model.fields,selection:0
 msgid "Selection Options"
-msgstr ""
+msgstr "خيارات الاختيار"
 
 #. module: base
 #: field:res.partner.category,parent_right:0
@@ -7038,19 +7170,19 @@
 #. module: base
 #: view:res.lang:0
 msgid "Legends for Date and Time Formats"
-msgstr ""
+msgstr "تفسير تنسيقات الوقت والتاريخ"
 
 #. module: base
 #: selection:ir.actions.server,state:0
 msgid "Copy Object"
-msgstr ""
+msgstr "نسخ الكائن"
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
-msgstr ""
+msgstr "لا يمكن حذف مجموعة ما زالت تحتوي على مستخدمين: %s !"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_country_state
@@ -7062,7 +7194,7 @@
 #: view:ir.model:0
 #: view:res.groups:0
 msgid "Access Rules"
-msgstr ""
+msgstr "قواعد الصلاحيات"
 
 #. module: base
 #: field:ir.default,ref_table:0
@@ -7077,28 +7209,23 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
 #: field:workflow.triggers,model:0
 msgid "Object"
-msgstr ""
+msgstr "كائن"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7109,24 +7236,24 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_default
 msgid "ir.default"
-msgstr ""
+msgstr "ir.default"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Minute: %(min)s"
-msgstr ""
+msgstr "الدقيقة: %(min)s"
 
 #. module: base
 #: view:base.update.translations:0
 #: model:ir.actions.act_window,name:base.action_wizard_update_translations
 #: model:ir.ui.menu,name:base.menu_wizard_update_translations
 msgid "Synchronize Translations"
-msgstr ""
+msgstr "تحديث الترجمات"
 
 #. module: base
 #: model:ir.ui.menu,name:base.next_id_10
 msgid "Scheduler"
-msgstr ""
+msgstr "المُجدوِل"
 
 #. module: base
 #: help:ir.cron,numbercall:0
@@ -7136,12 +7263,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
 "create it again!"
-msgstr ""
+msgstr "تغيير نوع العمود غير مدعوم بعد. فضلاً احذف العمود ثم أنشئه مرة أخرى!"
 
 #. module: base
 #: field:ir.ui.view_sc,user_id:0
@@ -7149,15 +7276,15 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
-msgstr ""
+msgstr "تحذير !"
 
 #. module: base
 #: model:res.widget,title:base.google_maps_widget
 msgid "Google Maps"
-msgstr ""
+msgstr "خرائط Google"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_config
@@ -7167,13 +7294,14 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
-msgstr ""
+msgstr "الإعدادات"
 
 #. module: base
 #: model:ir.model,name:base.model_publisher_warranty_contract_wizard
 msgid "publisher_warranty.contract.wizard"
-msgstr ""
+msgstr "publisher_warranty.contract.wizard"
 
 #. module: base
 #: field:ir.actions.server,expression:0
@@ -7183,65 +7311,61 @@
 #. module: base
 #: field:publisher_warranty.contract,date_start:0
 msgid "Starting Date"
-msgstr ""
+msgstr "تاريخ الابتداء"
 
 #. module: base
 #: help:res.partner,website:0
 msgid "Website of Partner"
-msgstr ""
+msgstr "الموقع الإلكتروني للشريك"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_5
 msgid "Gold Partner"
-msgstr ""
+msgstr "شريك ذهبي"
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
 msgid "Partner"
-msgstr ""
+msgstr "الشريك"
 
 #. module: base
 #: model:res.country,name:base.tr
 msgid "Turkey"
-msgstr ""
+msgstr "تركيّا"
 
 #. module: base
 #: model:res.country,name:base.fk
 msgid "Falkland Islands"
-msgstr ""
+msgstr "جزر الفالكلاند"
 
 #. module: base
 #: model:res.country,name:base.lb
 msgid "Lebanon"
-msgstr ""
+msgstr "لبنان"
 
 #. module: base
 #: view:ir.actions.report.xml:0
 #: field:ir.actions.report.xml,report_type:0
 msgid "Report Type"
-msgstr ""
+msgstr "نوع التقرير"
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
 #: field:workflow.workitem,state:0
 msgid "State"
-msgstr ""
+msgstr "المحافظة"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -7251,7 +7375,7 @@
 #. module: base
 #: model:res.country,name:base.no
 msgid "Norway"
-msgstr ""
+msgstr "النرويج"
 
 #. module: base
 #: view:res.lang:0
@@ -7262,17 +7386,17 @@
 #: view:base.language.install:0
 #: model:ir.ui.menu,name:base.menu_view_base_language_install
 msgid "Load an Official Translation"
-msgstr ""
+msgstr "تحميل ترجمة رسمية"
 
 #. module: base
 #: view:res.currency:0
 msgid "Miscelleanous"
-msgstr ""
+msgstr "متفرقات"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_10
 msgid "Open Source Service Company"
-msgstr ""
+msgstr "شركة خدمات مفتوحة المصدر"
 
 #. module: base
 #: model:res.country,name:base.kg
@@ -7282,12 +7406,12 @@
 #. module: base
 #: selection:res.request,state:0
 msgid "waiting"
-msgstr ""
+msgstr "جاري الانتظار"
 
 #. module: base
 #: field:ir.actions.report.xml,report_file:0
 msgid "Report file"
-msgstr ""
+msgstr "ملف التقرير"
 
 #. module: base
 #: model:ir.model,name:base.model_workflow_triggers
@@ -7295,7 +7419,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr ""
@@ -7303,7 +7427,7 @@
 #. module: base
 #: view:ir.attachment:0
 msgid "Created"
-msgstr ""
+msgstr "تمّ الإنشاء"
 
 #. module: base
 #: help:ir.actions.wizard,multi:0
@@ -7311,11 +7435,13 @@
 "If set to true, the wizard will not be displayed on the right toolbar of a "
 "form view."
 msgstr ""
+"في حالة التنشيط، لن يظهر المعالج في شريط الأدوات على يمين الشاشة عند استخدام "
+"طريقة عرض النموذج."
 
 #. module: base
 #: view:base.language.import:0
 msgid "- type,name,res_id,src,value"
-msgstr ""
+msgstr "- type,name,res_id,src,value"
 
 #. module: base
 #: model:res.country,name:base.hm
@@ -7330,17 +7456,18 @@
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Selection"
-msgstr ""
+msgstr "الاختيار"
 
 #. module: base
 #: field:res.company,rml_header1:0
 msgid "Report Header"
-msgstr ""
+msgstr "رأس التقرير"
 
 #. module: base
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7348,22 +7475,24 @@
 #: field:ir.actions.url,type:0
 #: field:ir.actions.wizard,type:0
 msgid "Action Type"
-msgstr ""
+msgstr "نوع الإجراء"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
 "But the latter module is not available in your system."
 msgstr ""
+"أنت تحاول تثبيت الوحدة البرمجية '%s' والتي تتطلب الوحدة البرمجية '%s'.\n"
+"ولكن الأخيرة غير متاحة لهذا النظام."
 
 #. module: base
 #: view:base.language.import:0
 #: model:ir.actions.act_window,name:base.action_view_base_import_language
 #: model:ir.ui.menu,name:base.menu_view_base_import_language
 msgid "Import Translation"
-msgstr ""
+msgstr "استيراد ترجمة"
 
 #. module: base
 #: field:res.partner.bank.type,field_ids:0
@@ -7371,50 +7500,51 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
-msgstr ""
+msgstr "الفئة"
 
 #. module: base
 #: view:ir.attachment:0
 #: selection:ir.attachment,type:0
 #: selection:ir.property,type:0
 msgid "Binary"
-msgstr ""
+msgstr "العد الثنائي"
 
 #. module: base
 #: field:ir.actions.server,sms:0
 #: selection:ir.actions.server,state:0
 msgid "SMS"
-msgstr ""
+msgstr "رسالة قصيرة (SMS)"
 
 #. module: base
 #: model:res.country,name:base.cr
 msgid "Costa Rica"
-msgstr ""
+msgstr "كوستاريكا"
 
 #. module: base
 #: view:workflow.activity:0
 msgid "Conditions"
-msgstr ""
+msgstr "الشروط"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_other_form
 msgid "Other Partners"
-msgstr ""
+msgstr "شركاء آخرون"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_currency_form
 #: model:ir.ui.menu,name:base.menu_action_currency_form
 #: view:res.currency:0
 msgid "Currencies"
-msgstr ""
+msgstr "العملات"
 
 #. module: base
 #: sql_constraint:res.groups:0
 msgid "The name of the group must be unique !"
-msgstr ""
+msgstr "يجب أن يكون اسم المجموعة فريداً!"
 
 #. module: base
 #: view:ir.sequence:0
@@ -7424,30 +7554,30 @@
 #. module: base
 #: help:res.partner.address,active:0
 msgid "Uncheck the active field to hide the contact."
-msgstr ""
+msgstr "أزل اختيار حقل 'نشط' لإخفاء جهة الاتصال."
 
 #. module: base
 #: model:ir.model,name:base.model_res_widget_wizard
 msgid "Add a widget for User"
-msgstr ""
+msgstr "أضف عنصر واجهة مستخدم للمستخدم"
 
 #. module: base
 #: model:res.country,name:base.dk
 msgid "Denmark"
-msgstr ""
+msgstr "الدنمارك"
 
 #. module: base
 #: field:res.country,code:0
 msgid "Country Code"
-msgstr ""
+msgstr "رمز الدولة"
 
 #. module: base
 #: model:ir.model,name:base.model_workflow_instance
 msgid "workflow.instance"
-msgstr ""
+msgstr "workflow.instance"
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr ""
@@ -7458,7 +7588,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr ""
@@ -7475,21 +7605,24 @@
 "Only specify a value if you want to change the user password. This user will "
 "have to logout and login again!"
 msgstr ""
+"حدد قيمة إذا كنت تريد تغيير كلمة المرور للمستخدم فقط. سيضطر المستخدم لتسجيل "
+"الخروج ثم تسجيل الدخول مجدداً!"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_madam
 msgid "Madam"
-msgstr ""
+msgstr "سيدة"
 
 #. module: base
 #: model:res.country,name:base.ee
 msgid "Estonia"
-msgstr ""
+msgstr "استونيا"
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
-msgstr ""
+msgstr "لوحات المعلومات"
 
 #. module: base
 #: help:ir.attachment,type:0
@@ -7500,12 +7633,12 @@
 #: field:res.config.users,new_password:0
 #: field:res.users,new_password:0
 msgid "Change password"
-msgstr ""
+msgstr "تغيير كلمة المرور"
 
 #. module: base
 #: model:res.country,name:base.nl
 msgid "Netherlands"
-msgstr ""
+msgstr "هولندا"
 
 #. module: base
 #: model:ir.ui.menu,name:base.next_id_4
@@ -7515,12 +7648,12 @@
 #. module: base
 #: view:res.company:0
 msgid "Your Logo - Use a size of about 450x150 pixels."
-msgstr ""
+msgstr "الشعار - استخدم صورة بحجم 150x450 نقطة"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_values
 msgid "ir.values"
-msgstr ""
+msgstr "ir.values"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -7535,17 +7668,20 @@
 "button \"Schedule for Installation\" from the form view, then click on "
 "\"Apply Scheduled Upgrades\" to migrate your system."
 msgstr ""
+"يمكنك تثبيت وحدات برمجية جديدة لتنشيط مزايا وقوائم وتقارير وبيانات جديدة في "
+"نسختك من نظام OpenERP. لتثبيت وحدات برمجية، انقر زر \"اختر للتثبيت\" من "
+"طريقة عرض النموذج، ثم انقر \"نفّذ الترقيات المُعدّة\"."
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_emails
 #: model:ir.ui.menu,name:base.menu_mail_gateway
 msgid "Emails"
-msgstr ""
+msgstr "الرسائل الإلكترونية"
 
 #. module: base
 #: model:res.country,name:base.cd
 msgid "Congo, The Democratic Republic of the"
-msgstr ""
+msgstr "جمهورية الكونغو الديمقراطية"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -7557,23 +7693,23 @@
 #: field:res.request,body:0
 #: field:res.request.history,req_id:0
 msgid "Request"
-msgstr ""
+msgstr "اطلب"
 
 #. module: base
 #: model:res.country,name:base.jp
 msgid "Japan"
-msgstr ""
+msgstr "اليابان"
 
 #. module: base
 #: field:ir.cron,numbercall:0
 msgid "Number of Calls"
-msgstr ""
+msgstr "عدد المكالمات"
 
 #. module: base
 #: view:base.module.upgrade:0
 #: field:base.module.upgrade,module_info:0
 msgid "Modules to update"
-msgstr ""
+msgstr "الوحدات البرمجية في انتظار التحديث"
 
 #. module: base
 #: help:ir.actions.server,sequence:0
@@ -7590,7 +7726,7 @@
 #. module: base
 #: model:res.country,name:base.gr
 msgid "Greece"
-msgstr ""
+msgstr "اليونان"
 
 #. module: base
 #: field:res.request,trigger_date:0
@@ -7603,9 +7739,10 @@
 msgstr ""
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
-msgstr ""
+msgstr "استبدل المصطلحات الموجودة"
 
 #. module: base
 #: help:ir.actions.server,code:0
@@ -7615,17 +7752,17 @@
 #. module: base
 #: sql_constraint:res.country:0
 msgid "The code of the country must be unique !"
-msgstr ""
+msgstr "يجب أن يكون رمز الدولة فريداً!"
 
 #. module: base
 #: selection:ir.module.module.dependency,state:0
 msgid "Uninstallable"
-msgstr ""
+msgstr "لا يمكن التثبيت"
 
 #. module: base
 #: view:res.partner.category:0
 msgid "Partner Category"
-msgstr ""
+msgstr "فئة الشريك"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -7636,29 +7773,28 @@
 #. module: base
 #: model:ir.model,name:base.model_base_module_update
 msgid "Update Module"
-msgstr ""
+msgstr "تحديث الوحدة البرمجية"
 
 #. module: base
 #: view:ir.model.fields:0
 #: field:ir.model.fields,translate:0
 msgid "Translate"
-msgstr ""
+msgstr "ترجِم"
 
 #. module: base
 #: field:res.request.history,body:0
 msgid "Body"
-msgstr ""
+msgstr "المتن"
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
-msgstr ""
+msgstr "إرسال بريد إلكتروني"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
-msgstr ""
+msgstr "إجراء القائمة"
 
 #. module: base
 #: help:ir.model.fields,selection:0
@@ -7671,7 +7807,7 @@
 #. module: base
 #: selection:base.language.export,state:0
 msgid "choose"
-msgstr ""
+msgstr "اختر"
 
 #. module: base
 #: help:ir.model,osv_memory:0
@@ -7691,12 +7827,12 @@
 #: model:ir.ui.menu,name:base.menu_procurement_management_supplier_name
 #: view:res.partner:0
 msgid "Suppliers"
-msgstr ""
+msgstr "المورّدون"
 
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
 msgid "Register"
-msgstr ""
+msgstr "تسجيل"
 
 #. module: base
 #: field:res.request,ref_doc2:0
@@ -7711,29 +7847,31 @@
 #. module: base
 #: model:res.country,name:base.ga
 msgid "Gabon"
-msgstr ""
+msgstr "الجابون"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_model_data
 msgid "ir.model.data"
-msgstr ""
+msgstr "ir.model.data"
 
 #. module: base
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
-msgstr ""
+msgstr "الصلاحيات"
 
 #. module: base
 #: model:res.country,name:base.gl
 msgid "Greenland"
-msgstr ""
+msgstr "جرين ﻻند"
 
 #. module: base
 #: field:res.partner.bank,acc_number:0
 msgid "Account Number"
-msgstr ""
+msgstr "رقم الحساب"
 
 #. module: base
 #: view:res.lang:0
@@ -7748,7 +7886,7 @@
 #. module: base
 #: model:res.country,name:base.cy
 msgid "Cyprus"
-msgstr ""
+msgstr "قبرص"
 
 #. module: base
 #: view:base.module.import:0
@@ -7757,35 +7895,37 @@
 "loading a new language it becomes available as default interface language "
 "for users and partners."
 msgstr ""
+"يساعدك هذا المعالج على إضافة لغة جديدة لنسختك من نظام OpenERP. بعد تحميل لغة "
+"جديدة ستصبح متاحة كلغة افتراضية للمستخدمين والشركاء."
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
-msgstr ""
+msgstr "الموضوع"
 
 #. module: base
 #: field:res.request,act_from:0
 #: field:res.request.history,act_from:0
 msgid "From"
-msgstr ""
+msgstr "مِن"
 
 #. module: base
 #: view:res.users:0
 msgid "Preferences"
-msgstr ""
+msgstr "التفضيلات"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_consumers0
 msgid "Consumers"
-msgstr ""
+msgstr "المستهلكون"
 
 #. module: base
 #: view:res.config:0
 #: wizard_button:server.action.create,init,step_1:0
 msgid "Next"
-msgstr ""
+msgstr "التالي"
 
 #. module: base
 #: help:ir.cron,function:0
@@ -7795,7 +7935,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -7805,12 +7945,12 @@
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "Miscellaneous"
-msgstr ""
+msgstr "متفرقات"
 
 #. module: base
 #: model:res.country,name:base.cn
 msgid "China"
-msgstr ""
+msgstr "الصّين"
 
 #. module: base
 #: code:addons/base/res/res_user.py:516
@@ -7823,12 +7963,12 @@
 #. module: base
 #: model:res.country,name:base.eh
 msgid "Western Sahara"
-msgstr ""
+msgstr "الصحراء الغربية"
 
 #. module: base
 #: model:ir.model,name:base.model_workflow
 msgid "workflow"
-msgstr ""
+msgstr "مسار عمل"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_res_company_form
@@ -7836,11 +7976,13 @@
 "Create and manage the companies that will be managed by OpenERP from here. "
 "Shops or subsidiaries can be created and maintained from here."
 msgstr ""
+"أنشئ وتحكم في الشركات التي تريد إدارتها باستخدام OpenERP من هنا. يمكنك إنشاء "
+"متاجر وشركات فرعية من هنا."
 
 #. module: base
 #: model:res.country,name:base.id
 msgid "Indonesia"
-msgstr ""
+msgstr "إندونيسيا"
 
 #. module: base
 #: view:base.update.translations:0
@@ -7849,6 +7991,8 @@
 "you can then add translations manually or perform a complete export (as a "
 "template for a new language example)."
 msgstr ""
+"يقوم هذا المعالج باكتشاف المصطلحات الجديدة في التطبيق لترجمتها، ومن ثَمّ "
+"يمكنك إضافة الترجمات يدوياً، أو  تصدير الترجمة كاملة (كقالب للغة جديدة)."
 
 #. module: base
 #: help:multi_company.default,expression:0
@@ -7860,22 +8004,22 @@
 #. module: base
 #: model:res.country,name:base.bg
 msgid "Bulgaria"
-msgstr ""
+msgstr "بلغاريا"
 
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
 msgid "Publisher warranty contract successfully registered!"
-msgstr ""
+msgstr "تمّ تسجيل عقد ضمان الناشر بنجاح!"
 
 #. module: base
 #: model:res.country,name:base.ao
 msgid "Angola"
-msgstr ""
+msgstr "أنجولا"
 
 #. module: base
 #: model:res.country,name:base.tf
 msgid "French Southern Territories"
-msgstr ""
+msgstr "الأقاليم الشمالية الفرنسية"
 
 #. module: base
 #: model:ir.model,name:base.model_res_currency
@@ -7885,12 +8029,12 @@
 #: field:res.currency,name:0
 #: field:res.currency.rate,currency_id:0
 msgid "Currency"
-msgstr ""
+msgstr "العملة"
 
 #. module: base
 #: field:res.partner.canal,name:0
 msgid "Channel Name"
-msgstr ""
+msgstr "اسم القناة"
 
 #. module: base
 #: view:res.lang:0
@@ -7903,30 +8047,30 @@
 msgstr ""
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
-msgstr ""
+msgstr "معرف الكائن"
 
 #. module: base
 #: view:res.company:0
 msgid "Landscape"
-msgstr ""
+msgstr "عرضيّ"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
-msgstr ""
+msgstr "الإدارة"
 
 #. module: base
 #: view:base.module.update:0
 msgid "Click on Update below to start the process..."
-msgstr ""
+msgstr "انقر على \"تحديث\" بالأسفل لبدء العملية..."
 
 #. module: base
 #: model:res.country,name:base.ir
 msgid "Iran"
-msgstr ""
+msgstr "إيران"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_widget_user_act_window
@@ -7944,23 +8088,22 @@
 #: field:ir.ui.menu,icon_pict:0
 #: field:publisher_warranty.contract.wizard,state:0
 msgid "unknown"
-msgstr ""
+msgstr "غير معروف"
 
 #. module: base
 #: field:res.currency,symbol:0
 msgid "Symbol"
-msgstr ""
+msgstr "الرمز"
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
-msgstr ""
+msgstr "يستخدم لتسجيل الدخول إلى النظام"
 
 #. module: base
 #: view:base.update.translations:0
 msgid "Synchronize Translation"
-msgstr ""
+msgstr "تحديث نسخ الترجمة"
 
 #. module: base
 #: field:ir.ui.view_sc,res_id:0
@@ -7970,132 +8113,138 @@
 #. module: base
 #: model:res.country,name:base.ki
 msgid "Kiribati"
-msgstr ""
+msgstr "كيريباتي"
 
 #. module: base
 #: model:res.country,name:base.iq
 msgid "Iraq"
-msgstr ""
+msgstr "العراق"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
-msgstr ""
+msgstr "الارتباط"
 
 #. module: base
 #: model:res.country,name:base.cl
 msgid "Chile"
-msgstr ""
+msgstr "تشيلي"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_address_book
 #: model:ir.ui.menu,name:base.menu_config_address_book
 #: model:ir.ui.menu,name:base.menu_procurement_management_supplier
 msgid "Address Book"
-msgstr ""
+msgstr "سجل العناوين"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_sequence_type
 msgid "ir.sequence.type"
-msgstr ""
+msgstr "ir.sequence.type"
 
 #. module: base
 #: selection:base.language.export,format:0
 msgid "CSV File"
-msgstr ""
+msgstr "ملف CSV"
 
 #. module: base
 #: field:res.company,account_no:0
 msgid "Account No."
-msgstr ""
+msgstr "رقم الحساب"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
-msgstr ""
+msgstr "لا يمكن حذف اللغة الأساسية 'en_US' !"
 
 #. module: base
 #: selection:ir.model,state:0
 msgid "Base Object"
-msgstr ""
+msgstr "الكائن الأساسي"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Dependencies :"
-msgstr ""
+msgstr "المتطلبات:"
 
 #. module: base
 #: field:ir.model.fields,field_description:0
 msgid "Field Label"
-msgstr ""
+msgstr "تسمية الحقل"
 
 #. module: base
 #: model:res.country,name:base.dj
 msgid "Djibouti"
-msgstr ""
+msgstr "جيبوتي"
 
 #. module: base
 #: field:ir.translation,value:0
 msgid "Translation Value"
-msgstr ""
+msgstr "قيمة الترجمة"
 
 #. module: base
 #: model:res.country,name:base.ag
 msgid "Antigua and Barbuda"
-msgstr ""
+msgstr "أنتيغا وباربودا"
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
 "document (Operation: %s, Document type: %s)."
 msgstr ""
+"العملية محظورة حسب قواعد الصلاحيات، أن أنها نُفِّذت على مستند قد تمّ حذفه "
+"(العملية: %s، نوع المستند: %s)."
 
 #. module: base
 #: model:res.country,name:base.zr
 msgid "Zaire"
-msgstr ""
+msgstr "زائير"
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
 msgid "Resource ID"
-msgstr ""
+msgstr "معرف المصدر"
 
 #. module: base
 #: view:ir.cron:0
 #: field:ir.model,info:0
 msgid "Information"
-msgstr ""
+msgstr "المعلومات"
 
 #. module: base
 #: view:res.widget.user:0
 msgid "User Widgets"
-msgstr ""
+msgstr "كائنات واجهة المستخدم الخاصة بالمستخدم"
 
 #. module: base
 #: view:base.module.update:0
 msgid "Update Module List"
-msgstr ""
+msgstr "تحديث قائمة الوحدات البرمجية"
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
-msgstr ""
+msgstr "غير ذلك"
 
 #. module: base
 #: view:res.request:0
 msgid "Reply"
-msgstr ""
+msgstr "رد"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Turkish / Türkçe"
-msgstr ""
+msgstr "التركية / Türkçe"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_workflow_activity_form
@@ -8103,15 +8252,15 @@
 #: view:workflow:0
 #: field:workflow,activities:0
 msgid "Activities"
-msgstr ""
+msgstr "الأنشطة"
 
 #. module: base
 #: field:ir.actions.act_window,auto_refresh:0
 msgid "Auto-Refresh"
-msgstr ""
+msgstr "تحديث تلقائي"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8119,18 +8268,18 @@
 #. module: base
 #: selection:ir.ui.view,type:0
 msgid "Diagram"
-msgstr ""
+msgstr "الرسم التخطيطي"
 
 #. module: base
 #: help:multi_company.default,name:0
 msgid "Name it to easily find a record"
-msgstr ""
+msgstr "قم بتسميته لكي تجد السجل بسهولة"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.grant_menu_access
 #: model:ir.ui.menu,name:base.menu_grant_menu_access
 msgid "Menu Items"
-msgstr ""
+msgstr "عناصر القائمة"
 
 #. module: base
 #: constraint:ir.rule:0
@@ -8138,10 +8287,10 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
-msgstr ""
+msgstr "تنظيم الأحداث"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_sequence_actions
@@ -8150,69 +8299,71 @@
 #: model:ir.ui.menu,name:base.next_id_6
 #: view:workflow.activity:0
 msgid "Actions"
-msgstr ""
+msgstr "الإجراءات"
 
 #. module: base
 #: selection:res.request,priority:0
 msgid "High"
-msgstr ""
+msgstr "مرتفع"
 
 #. module: base
 #: field:ir.exports.line,export_id:0
 msgid "Export"
-msgstr ""
+msgstr "تصدير"
 
 #. module: base
 #: model:res.country,name:base.hr
 msgid "Croatia"
-msgstr ""
+msgstr "كرواتيا"
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
-msgstr ""
+msgstr "رمز مُعرِّف المصرف"
 
 #. module: base
 #: model:res.country,name:base.tm
 msgid "Turkmenistan"
-msgstr ""
+msgstr "توركمنستان"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
-msgstr ""
+msgstr "خطأ"
 
 #. module: base
 #: model:res.country,name:base.pm
 msgid "Saint Pierre and Miquelon"
-msgstr ""
+msgstr "سان بيار وميكلون"
 
 #. module: base
 #: help:ir.actions.report.xml,header:0
@@ -8226,44 +8377,45 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
-msgstr ""
+msgstr "تحديث"
 
 #. module: base
 #: model:ir.actions.report.xml,name:base.ir_module_reference_print
 msgid "Technical guide"
-msgstr ""
+msgstr "الدليل التقني"
 
 #. module: base
 #: model:res.country,name:base.tz
 msgid "Tanzania"
-msgstr ""
+msgstr "تنزانيا"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Danish / Dansk"
-msgstr ""
+msgstr "الدنماركية / Dansk"
 
 #. module: base
 #: selection:ir.model.fields,select_level:0
 msgid "Advanced Search (deprecated)"
-msgstr ""
+msgstr "بحث متقدم (سيلغي)"
 
 #. module: base
 #: model:res.country,name:base.cx
 msgid "Christmas Island"
-msgstr ""
+msgstr "جزيرة الكريسماس"
 
 #. module: base
 #: view:ir.actions.server:0
 msgid "Other Actions Configuration"
-msgstr ""
+msgstr "إعدادات الإجراءات الأخرى"
 
 #. module: base
 #: view:res.config.installer:0
 msgid "Install Modules"
-msgstr ""
+msgstr "تثبيت الوحدات البرمجية"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_partner_canal-act
@@ -8271,12 +8423,12 @@
 #: model:ir.ui.menu,name:base.menu_res_partner_canal-act
 #: view:res.partner.canal:0
 msgid "Channels"
-msgstr ""
+msgstr "القنوات"
 
 #. module: base
 #: view:ir.ui.view:0
 msgid "Extra Info"
-msgstr ""
+msgstr "معلومات إضافية"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_values_form_action
@@ -8287,7 +8439,7 @@
 #. module: base
 #: view:ir.module.module:0
 msgid "Schedule for Installation"
-msgstr ""
+msgstr "اختر للتثبيت"
 
 #. module: base
 #: model:ir.model,name:base.model_partner_wizard_ean_check
@@ -8295,10 +8447,9 @@
 msgstr ""
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
-msgstr ""
+msgstr "لا يمكن ان يكون هناك مستخدمان بنفس اسم الدخول!"
 
 #. module: base
 #: model:ir.model,name:base.model_multi_company_default
@@ -8308,18 +8459,17 @@
 #. module: base
 #: view:res.request:0
 msgid "Send"
-msgstr ""
+msgstr "إرسال"
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
-msgstr ""
+msgstr "إرشادات القائمة"
 
 #. module: base
 #: field:ir.translation,src:0
 msgid "Source"
-msgstr ""
+msgstr "الأصل"
 
 #. module: base
 #: help:res.partner.address,partner_id:0
@@ -8329,12 +8479,12 @@
 #. module: base
 #: model:res.country,name:base.vu
 msgid "Vanuatu"
-msgstr ""
+msgstr "فانوتوا"
 
 #. module: base
 #: view:res.company:0
 msgid "Internal Header/Footer"
-msgstr ""
+msgstr "رأس / تذييل داخلي"
 
 #. module: base
 #: code:addons/base/module/wizard/base_export_language.py:59
@@ -8343,23 +8493,25 @@
 "Save this document to a .tgz file. This archive containt UTF-8 %s files and "
 "may be uploaded to launchpad."
 msgstr ""
+"احفظ هذا المستند في ملف .tgz. سيحتوي هذا الأرشيف على %s ملفات ذات ترميز UTF-"
+"8 ويمكن رفعه إلى موقع Launchpad."
 
 #. module: base
 #: view:base.module.upgrade:0
 msgid "Start configuration"
-msgstr ""
+msgstr "ابدأ الإعداد"
 
 #. module: base
 #: view:base.language.export:0
 msgid "_Export"
-msgstr ""
+msgstr "ت_صدير"
 
 #. module: base
 #: field:base.language.install,state:0
 #: field:base.module.import,state:0
 #: field:base.module.update,state:0
 msgid "state"
-msgstr ""
+msgstr "الولاية"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -8369,7 +8521,7 @@
 #. module: base
 #: model:res.country,name:base.do
 msgid "Dominican Republic"
-msgstr ""
+msgstr "جمهورية الدومينيكان"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -8377,7 +8529,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8387,7 +8539,7 @@
 #. module: base
 #: model:res.country,name:base.sa
 msgid "Saudi Arabia"
-msgstr ""
+msgstr "المملكة العربية السعودية"
 
 #. module: base
 #: help:res.partner,supplier:0
@@ -8395,8 +8547,11 @@
 "Check this box if the partner is a supplier. If it's not checked, purchase "
 "people will not see it when encoding a purchase order."
 msgstr ""
+"اختر إذا كان الشريك مُورِّداً. إذا لم تختر، لن يظهر الشربك لقسم المشتريات "
+"أثناء إعدادهم لأمر شراء."
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr ""
@@ -8404,13 +8559,13 @@
 #. module: base
 #: view:res.partner.event:0
 msgid "Event Logs"
-msgstr ""
+msgstr "سجلات الأحداث"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
-msgstr ""
+msgstr "تمّ إعداد النظام"
 
 #. module: base
 #: field:workflow.triggers,instance_id:0
@@ -8426,12 +8581,12 @@
 #. module: base
 #: view:base.language.export:0
 msgid "https://translations.launchpad.net/openobject"
-msgstr ""
+msgstr "https://translations.launchpad.net/openobject"
 
 #. module: base
 #: field:ir.actions.report.xml,report_xml:0
 msgid "XML path"
-msgstr ""
+msgstr "مسار XML"
 
 #. module: base
 #: selection:ir.actions.todo,restart:0
@@ -8441,12 +8596,12 @@
 #. module: base
 #: model:res.country,name:base.gn
 msgid "Guinea"
-msgstr ""
+msgstr "غينيا"
 
 #. module: base
 #: model:res.country,name:base.lu
 msgid "Luxembourg"
-msgstr ""
+msgstr "لوكسمبورغ"
 
 #. module: base
 #: help:ir.values,key2:0
@@ -8455,17 +8610,17 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
-msgstr ""
+msgstr "خطأ! لا يمكنك إنشاء قائمة متداخلة."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard
 #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add
 #: view:publisher_warranty.contract.wizard:0
 msgid "Register a Contract"
-msgstr ""
+msgstr "تسجيل عقد"
 
 #. module: base
 #: view:ir.rule:0
@@ -8478,105 +8633,104 @@
 #: code:addons/base/publisher_warranty/publisher_warranty.py:145
 #, python-format
 msgid "Please check your publisher warranty contract name and validity."
-msgstr ""
+msgstr "فضلاً تحقق من اسم وسريان عقد ضمان الناشر الخاص بك."
 
 #. module: base
 #: model:res.country,name:base.sv
 msgid "El Salvador"
-msgstr ""
+msgstr "السّلفادور"
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
-msgstr ""
+msgstr "هاتف"
 
 #. module: base
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
 #: view:workflow.instance:0
 #: view:workflow.workitem:0
 msgid "Active"
-msgstr ""
+msgstr "نشِط"
 
 #. module: base
 #: model:res.country,name:base.th
 msgid "Thailand"
-msgstr ""
+msgstr "تايلاند"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_crm_config_lead
 msgid "Leads & Opportunities"
-msgstr ""
+msgstr "الفرص والفرص المحتملة"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Romanian / română"
-msgstr ""
+msgstr "الرومانية / română"
 
 #. module: base
 #: view:res.log:0
 msgid "System Logs"
-msgstr ""
+msgstr "سجلات النظام"
 
 #. module: base
 #: selection:workflow.activity,join_mode:0
 #: selection:workflow.activity,split_mode:0
 msgid "And"
-msgstr ""
+msgstr "و"
 
 #. module: base
 #: field:ir.model.fields,relation:0
 msgid "Object Relation"
-msgstr ""
+msgstr "علاقة الكائن"
 
 #. module: base
 #: view:ir.rule:0
 #: view:res.partner:0
 msgid "General"
-msgstr ""
+msgstr "عام"
 
 #. module: base
 #: model:res.country,name:base.uz
 msgid "Uzbekistan"
-msgstr ""
+msgstr "أوزبكستان"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_act_window
 #: selection:ir.ui.menu,action:0
 msgid "ir.actions.act_window"
-msgstr ""
+msgstr "ir.actions.act_window"
 
 #. module: base
 #: field:ir.rule,perm_create:0
 msgid "Apply For Create"
-msgstr ""
+msgstr "تنفيذ للإنشاء"
 
 #. module: base
 #: model:res.country,name:base.vi
 msgid "Virgin Islands (USA)"
-msgstr ""
+msgstr "جزيرة فيرجين - (الولايات المتحدة اﻻمريكية)"
 
 #. module: base
 #: model:res.country,name:base.tw
 msgid "Taiwan"
-msgstr ""
+msgstr "تايوان"
 
 #. module: base
 #: model:ir.model,name:base.model_res_currency_rate
 msgid "Currency Rate"
-msgstr ""
+msgstr "سعر العملة"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.grant_menu_access
@@ -8587,16 +8741,21 @@
 "be assigned to specific groups in order to make them accessible to some "
 "users within the system."
 msgstr ""
+"إدارة وتخصيص العناصر المتاحة والمعروضة في قائمة نسختك من نظام OpenERP. يمكنك "
+"حذف عنصر بالنقر على المربع في بداية كل سطر ثم النقر على الزر الذي يظهر بعد "
+"ذلك. يمكنك حصر صلاحيات الدخول للعناصر عن طريق تحديد مجموعات معينة يمكنها "
+"الدخول."
 
 #. module: base
 #: field:ir.ui.view,field_parent:0
 msgid "Child Field"
-msgstr ""
+msgstr "حقل فرعي."
 
 #. module: base
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8606,56 +8765,57 @@
 #. module: base
 #: model:ir.model,name:base.model_workflow_workitem
 msgid "workflow.workitem"
-msgstr ""
+msgstr "workflow.workitem"
 
 #. module: base
 #: selection:ir.module.module,state:0
 msgid "Not Installable"
-msgstr ""
+msgstr "لا يمكن تثبيته"
 
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "View :"
-msgstr ""
+msgstr "عرض:"
 
 #. module: base
 #: field:ir.model.fields,view_load:0
 msgid "View Auto-Load"
-msgstr ""
+msgstr "عرض التحميل التلقائي"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
-msgstr ""
+msgstr "لا يمكنك حذف الحقل '%s' !"
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
-msgstr ""
+msgstr "المورِد"
 
 #. module: base
 #: field:ir.ui.menu,web_icon:0
 msgid "Web Icon File"
-msgstr ""
+msgstr "ملف ايقونة الويب"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Persian / فارس"
-msgstr ""
+msgstr "Persian / فارسي"
 
 #. module: base
 #: view:ir.actions.act_window:0
 msgid "View Ordering"
-msgstr ""
+msgstr "عرض الطلبات"
 
 #. module: base
 #: code:addons/base/module/wizard/base_module_upgrade.py:95
 #, python-format
 msgid "Unmet dependency !"
-msgstr ""
+msgstr "ثمّة متطلبات غير متوفرة"
 
 #. module: base
 #: view:base.language.import:0
@@ -8663,25 +8823,27 @@
 "Supported file formats: *.csv (Comma-separated values) or *.po (GetText "
 "Portable Objects)"
 msgstr ""
+"صيغ الملفات المدعومة: csv (قيم مفصولة بفواصل) أو po (كائنات GetText متنقلة)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
 "these groups: %s."
 msgstr ""
+"لا يمكنك حذف هذا المستند (%s) ! تأكد من أنك تنتمي لإحدى هذه المجموعات: %s."
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_configuration
 msgid "base.module.configuration"
-msgstr ""
+msgstr "base.module.configuration"
 
 #. module: base
 #: field:base.language.export,name:0
 #: field:ir.attachment,datas_fname:0
 msgid "Filename"
-msgstr ""
+msgstr "اسم الملف"
 
 #. module: base
 #: field:ir.model,access_ids:0
@@ -8692,32 +8854,32 @@
 #. module: base
 #: model:res.country,name:base.sk
 msgid "Slovak Republic"
-msgstr ""
+msgstr "سلوفاكيا"
 
 #. module: base
 #: model:ir.ui.menu,name:base.publisher_warranty
 msgid "Publisher Warranty"
-msgstr ""
+msgstr "ضمان الناشر"
 
 #. module: base
 #: model:res.country,name:base.aw
 msgid "Aruba"
-msgstr ""
+msgstr "جزيرة أروبا"
 
 #. module: base
 #: model:res.country,name:base.ar
 msgid "Argentina"
-msgstr ""
+msgstr "الأرجنتين"
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
-msgstr ""
+msgstr "اسم المجموعة"
 
 #. module: base
 #: model:res.country,name:base.bh
 msgid "Bahrain"
-msgstr ""
+msgstr "مملكة البحرين"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_12
@@ -8732,44 +8894,44 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
-msgstr ""
+msgstr "الشركة"
 
 #. module: base
 #: view:res.users:0
 msgid "Email & Signature"
-msgstr ""
+msgstr "البريد الإلكتروني والتوقيع"
 
 #. module: base
 #: view:publisher_warranty.contract:0
 msgid "Publisher Warranty Contract"
-msgstr ""
+msgstr "عقد ضمان الناشر"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Bulgarian / български език"
-msgstr ""
+msgstr "البلغارية / български език"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_aftersale
 msgid "After-Sale Services"
-msgstr ""
+msgstr "خدمات بعد البيع"
 
 #. module: base
 #: view:ir.actions.todo:0
 msgid "Launch"
-msgstr ""
+msgstr "تشغيل"
 
 #. module: base
 #: field:ir.actions.act_window,limit:0
 msgid "Limit"
-msgstr ""
+msgstr "حد"
 
 #. module: base
 #: help:ir.actions.server,wkf_model_id:0
@@ -8779,7 +8941,7 @@
 #. module: base
 #: model:res.country,name:base.jm
 msgid "Jamaica"
-msgstr ""
+msgstr "جامايكا"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_category_form
@@ -8793,34 +8955,35 @@
 #. module: base
 #: model:res.country,name:base.az
 msgid "Azerbaijan"
-msgstr ""
+msgstr "أذربيجان"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
-msgstr ""
+msgstr "تحذير"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Arabic / الْعَرَبيّة"
-msgstr ""
+msgstr "Arabic / الْعَرَبيّة"
 
 #. module: base
 #: model:res.country,name:base.vg
 msgid "Virgin Islands (British)"
-msgstr ""
+msgstr "جزر العذراء (بريطانيا)"
 
 #. module: base
 #: view:ir.property:0
 #: model:ir.ui.menu,name:base.next_id_15
 msgid "Parameters"
-msgstr ""
+msgstr "المحددات"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Czech / Čeština"
-msgstr ""
+msgstr "التشيكية / Čeština"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -8835,46 +8998,50 @@
 "uncheck the 'Suppliers' filter button in order to search in all your "
 "partners, including customers and prospects."
 msgstr ""
+"يمكنك الحصول على كافة المعلومات المتعلقة بالمُورِّدين من نموذج المُورِّد: "
+"بيانات الحسابات، الرسائل الألكترونية السابقة، الاجتماعات، عمليات الشراء، "
+"إلخ. يمكنك إزالة اختيار مرشح الفرز 'المُورِّدون' لكي يتمّ بحث كافة الشركاء "
+"بما فيهم العملاء والمستقبليون."
 
 #. module: base
 #: model:res.country,name:base.rw
 msgid "Rwanda"
-msgstr ""
+msgstr "رواندا"
 
 #. module: base
 #: view:ir.sequence:0
 msgid "Day of the week (0:Monday): %(weekday)s"
-msgstr ""
+msgstr "اليوم الأسبوعي (0: الإثنين): %(weekday)s"
 
 #. module: base
 #: model:res.country,name:base.ck
 msgid "Cook Islands"
-msgstr ""
+msgstr "جزر كوك"
 
 #. module: base
 #: field:ir.model.data,noupdate:0
 msgid "Non Updatable"
-msgstr ""
+msgstr "لا يمكن تحديثه"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Klingon"
-msgstr ""
+msgstr "كلِنغُن"
 
 #. module: base
 #: model:res.country,name:base.sg
 msgid "Singapore"
-msgstr ""
+msgstr "سنغافورة"
 
 #. module: base
 #: selection:ir.actions.act_window,target:0
 msgid "Current Window"
-msgstr ""
+msgstr "النافذة الحالية"
 
 #. module: base
 #: view:ir.values:0
 msgid "Action Source"
-msgstr ""
+msgstr "مصدر الإجراء"
 
 #. module: base
 #: view:res.config.view:0
@@ -8883,10 +9050,14 @@
 "simplified interface, which has less features but is easier. You can always "
 "switch later from the user preferences."
 msgstr ""
+"إذا كنت تستخدم OpenERP لأول مرة، ننصحك بشدة أن تختار الواجهة المبسطة، والتي "
+"تنقصها بعض المزايا ولكنها أسهل استخداماً. يمكنك تغيير هذا الاختيار في أي وقت "
+"من تفضيلات المستخدم."
 
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -8894,18 +9065,18 @@
 #: field:res.partner.address,country_id:0
 #: field:res.partner.bank,country_id:0
 msgid "Country"
-msgstr ""
+msgstr "الدولة"
 
 #. module: base
 #: field:ir.model.fields,complete_name:0
 #: field:ir.ui.menu,complete_name:0
 msgid "Complete Name"
-msgstr ""
+msgstr "الاسم الكامل"
 
 #. module: base
 #: field:ir.values,object:0
 msgid "Is Object"
-msgstr ""
+msgstr "هو كائن"
 
 #. module: base
 #: view:ir.rule:0
@@ -8917,22 +9088,22 @@
 #. module: base
 #: field:res.partner.category,name:0
 msgid "Category Name"
-msgstr ""
+msgstr "اسم الفئة"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_15
 msgid "IT sector"
-msgstr ""
+msgstr "قطاع تقنية المعلومات"
 
 #. module: base
 #: view:ir.actions.act_window:0
 msgid "Select Groups"
-msgstr ""
+msgstr "اختر المجموعات"
 
 #. module: base
 #: view:res.lang:0
 msgid "%X - Appropriate time representation."
-msgstr ""
+msgstr "%X - التمثيل الملائم للوقت"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -8951,36 +9122,36 @@
 #. module: base
 #: view:res.company:0
 msgid "Portrait"
-msgstr ""
+msgstr "طوليّ"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
-msgstr ""
+msgstr "يمكنك تغيير اسم عمود واحد فقط كل مرة!"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Wizard Button"
-msgstr ""
+msgstr "زر المعالج"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Report/Template"
-msgstr ""
+msgstr "التقرير / القالب"
 
 #. module: base
 #: selection:ir.actions.act_window.view,view_mode:0
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Graph"
-msgstr ""
+msgstr "الرسم البياني"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_server
 #: selection:ir.ui.menu,action:0
 msgid "ir.actions.server"
-msgstr ""
+msgstr "ir.actions.server"
 
 #. module: base
 #: field:ir.actions.configuration.wizard,progress:0
@@ -8989,14 +9160,16 @@
 #: field:res.config.users,progress:0
 #: field:res.config.view,progress:0
 msgid "Configuration Progress"
-msgstr ""
+msgstr "تقدم الإعدادات"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
-msgstr ""
+msgstr "معالجات الإعدادات"
 
 #. module: base
 #: field:res.lang,code:0
@@ -9011,12 +9184,12 @@
 #. module: base
 #: view:base.module.upgrade:0
 msgid "Note that this operation might take a few minutes."
-msgstr ""
+msgstr "لاحظ أن هذه العملية قد تستغرق عدة دقائق."
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_localisation
 msgid "Localisation"
-msgstr ""
+msgstr "التهيئة المحلية"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -9026,13 +9199,14 @@
 #. module: base
 #: view:ir.cron:0
 msgid "Execution"
-msgstr ""
+msgstr "تنفيذ"
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
-msgstr ""
+msgstr "شرط"
 
 #. module: base
 #: help:ir.values,model_id:0
@@ -9042,12 +9216,12 @@
 #. module: base
 #: field:ir.ui.view,name:0
 msgid "View Name"
-msgstr ""
+msgstr "اسم طريقة العرض"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Italian / Italiano"
-msgstr ""
+msgstr "الإيطالية / Italiano"
 
 #. module: base
 #: field:ir.actions.report.xml,attachment:0
@@ -9064,12 +9238,12 @@
 #. module: base
 #: view:res.lang:0
 msgid "%j - Day of the year [001,366]."
-msgstr ""
+msgstr "%j - اليوم من السنة [001،366]"
 
 #. module: base
 #: field:ir.actions.server,mobile:0
 msgid "Mobile No"
-msgstr ""
+msgstr "رقم الجوال"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_by_category
@@ -9078,141 +9252,144 @@
 #: model:ir.ui.menu,name:base.menu_partner_category_form
 #: view:res.partner.category:0
 msgid "Partner Categories"
-msgstr ""
+msgstr "فئات الشركاء"
 
 #. module: base
 #: view:base.module.upgrade:0
 msgid "System Update"
-msgstr ""
+msgstr "تحديث النظام"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Wizard Field"
-msgstr ""
+msgstr "حقل المعالج"
 
 #. module: base
 #: help:ir.sequence,prefix:0
 msgid "Prefix value of the record for the sequence"
-msgstr ""
+msgstr "القيمة السابقة من التسجيل للمسلسل"
 
 #. module: base
 #: model:res.country,name:base.sc
 msgid "Seychelles"
-msgstr ""
+msgstr "سيشيل"
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
-msgstr ""
+msgstr "الحسابات المصرفية"
 
 #. module: base
 #: model:res.country,name:base.sl
 msgid "Sierra Leone"
-msgstr ""
+msgstr "سيراليون"
 
 #. module: base
 #: view:res.company:0
 #: view:res.partner:0
 msgid "General Information"
-msgstr ""
+msgstr "المعلومات العامة"
 
 #. module: base
 #: model:res.country,name:base.tc
 msgid "Turks and Caicos Islands"
-msgstr ""
+msgstr "جزر تركس وكايكوس"
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
-msgstr ""
+msgstr "مالِك الحساب"
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
-msgstr ""
+msgstr "تحذير بشأن تحويل الشركة"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_widget_wizard
 msgid "Homepage Widgets Management"
-msgstr ""
+msgstr "إدارة عناصر واجهة المستخدم الخاصة بالصفحة الرئيسية"
 
 #. module: base
 #: field:workflow,osv:0
 #: field:workflow.instance,res_type:0
 msgid "Resource Object"
-msgstr ""
+msgstr "مصدر الكائن"
 
 #. module: base
 #: help:ir.sequence,number_increment:0
 msgid "The next number of the sequence will be incremented by this number"
-msgstr ""
+msgstr "سيتم زيادة الرقم التالي للمسلسل بهذا الرقم"
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
-msgstr ""
+msgstr "وظيفة"
 
 #. module: base
 #: view:res.widget:0
 msgid "Search Widget"
-msgstr ""
+msgstr "بحث الملحقات البرمجية"
 
 #. module: base
 #: selection:ir.actions.todo,restart:0
 msgid "Never"
-msgstr ""
+msgstr "أبداً"
 
 #. module: base
 #: selection:res.partner.address,type:0
 msgid "Delivery"
-msgstr ""
+msgstr "التسليم"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_pvt_ltd
 #: model:res.partner.title,shortcut:base.res_partner_title_pvt_ltd
 msgid "Corp."
-msgstr ""
+msgstr "شركة"
 
 #. module: base
 #: model:res.country,name:base.gw
 msgid "Guinea Bissau"
-msgstr ""
+msgstr "غينيا بيساو"
 
 #. module: base
 #: view:workflow.instance:0
 msgid "Workflow Instances"
-msgstr ""
+msgstr "حالات مسار العمل"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
-msgstr ""
+msgstr "الشركاء: "
 
 #. module: base
 #: model:res.country,name:base.kp
 msgid "North Korea"
-msgstr ""
+msgstr "كوريا الشمالية"
 
 #. module: base
 #: selection:ir.actions.server,state:0
 msgid "Create Object"
-msgstr ""
+msgstr "إنشاء الكائن"
 
 #. module: base
 #: view:ir.filters:0
 #: field:res.log,context:0
 msgid "Context"
-msgstr ""
+msgstr "سياق"
 
 #. module: base
 #: field:res.bank,bic:0
 msgid "BIC/Swift code"
-msgstr ""
+msgstr "كود السويفت"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_1
@@ -9222,12 +9399,12 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Polish / Język polski"
-msgstr ""
+msgstr "البولندية / Język polski"
 
 #. module: base
 #: field:ir.exports,name:0
 msgid "Export Name"
-msgstr ""
+msgstr "اسم التصدير"
 
 #. module: base
 #: help:res.partner.address,type:0
@@ -9235,13 +9412,15 @@
 "Used to select automatically the right address according to the context in "
 "sales and purchases documents."
 msgstr ""
+"تستخدم للإختيار التلقائي العنوان الصحيح بناءاً علي سياق المستندات في "
+"المبيعات و المشتريات."
 
 #. module: base
 #: model:res.country,name:base.lk
 msgid "Sri Lanka"
-msgstr ""
+msgstr "سريلانكا"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Russian / русский язык"
-msgstr ""
+msgstr "الروسية / русский язык"

=== modified file 'bin/addons/base/i18n/bg.po'
--- bin/addons/base/i18n/bg.po	2011-03-29 06:20:32 +0000
+++ bin/addons/base/i18n/bg.po	2012-05-09 12:37:21 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 5.0.4\n"
 "Report-Msgid-Bugs-To: support@openerp.com\n"
 "POT-Creation-Date: 2011-01-11 11:14+0000\n"
-"PO-Revision-Date: 2011-03-28 18:26+0000\n"
-"Last-Translator: Dimitar Markov <dimitar.markov@gmail.com>\n"
+"PO-Revision-Date: 2011-10-01 21:24+0000\n"
+"Last-Translator: Boris <boris.t.ivanov@gmail.com>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-03-29 06:20+0000\n"
-"X-Generator: Launchpad (build 12559)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:42+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -41,7 +41,7 @@
 msgstr "Дата час"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -113,7 +113,7 @@
 msgstr "Създадени изгледи"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -138,16 +138,16 @@
 #. module: base
 #: field:ir.actions.act_window,target:0
 msgid "Target Window"
-msgstr "Прозорец цел"
+msgstr "Целеви прозорец"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr "Предупреждение!"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -155,7 +155,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr "Ограничение за грешка"
@@ -168,11 +168,10 @@
 #. module: base
 #: model:res.country,name:base.sz
 msgid "Swaziland"
-msgstr "Швейцария"
+msgstr "Свазиленд"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr "създаден."
@@ -183,7 +182,7 @@
 msgstr "Доставчици на дървен материал"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -196,7 +195,7 @@
 #. module: base
 #: field:ir.sequence,number_increment:0
 msgid "Increment Number"
-msgstr "Число за увеличаване"
+msgstr "Стъпка на нарастване"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_company_tree
@@ -248,6 +247,8 @@
 msgstr "Макс. размер"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Име на контакта"
@@ -278,7 +279,7 @@
 msgstr "Име на помощник"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr "Невалидно групиране по"
@@ -322,7 +323,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Група"
 
@@ -366,7 +366,7 @@
 msgstr "Холандски Антили"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -438,7 +438,7 @@
 msgstr "Планирай обновяване"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr "Ключ/стойност '%s' не го откривам в избраното поле '%s'"
@@ -486,7 +486,7 @@
 msgstr "Разни доставчици"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr "Персонализираните полета трябва да имат име което започва с 'x_' !"
@@ -508,6 +508,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr "Описание на модела"
 
@@ -545,6 +546,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr "Автоматизирани действия"
 
@@ -603,7 +605,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Последователност"
 
@@ -774,7 +775,6 @@
 msgstr "Андора, Княжество"
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr "Подкатегории"
@@ -795,6 +795,7 @@
 msgstr "%B - Пълно име на месеца."
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -811,7 +812,7 @@
 msgstr "Вид"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -831,7 +832,7 @@
 msgstr "Табло Човешки ресурси"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr "Използване на празни пароли не е разрешено по причини за сигурност!"
@@ -865,7 +866,7 @@
 msgstr "Преходи"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -945,6 +946,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr "Уеб-страница"
@@ -970,7 +972,7 @@
 msgstr "Маршалови острови"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr "Промяна на модела на полете е забранена!"
@@ -987,7 +989,7 @@
 msgstr "Търсене"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -1003,7 +1005,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr "Отказана операция"
@@ -1063,6 +1065,7 @@
 msgstr "Не съществува език с код \"%s\""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1160,7 +1163,7 @@
 msgstr "При създаване"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1172,7 +1175,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr "Вход"
@@ -1298,8 +1300,8 @@
 "object.list_price > object.cost_price"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr " (копие)"
@@ -1358,6 +1360,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1379,7 +1382,7 @@
 msgstr "Формула"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr "Не може да се премахне потребителят root!"
@@ -1390,8 +1393,9 @@
 msgstr "Малави"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr "%s (копие)"
@@ -1530,7 +1534,7 @@
 msgstr "Бахамски острови"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1595,9 +1599,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr "Групи"
@@ -1642,7 +1644,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1693,8 +1695,6 @@
 msgstr "Фарьорски острови"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr "Опростен"
@@ -1725,7 +1725,7 @@
 msgstr "Мадагаскар"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1908,7 +1908,8 @@
 msgstr "Пакистан"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr "Невалидна архитектура на обект"
@@ -1919,12 +1920,14 @@
 msgstr "Съобщения"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1956,7 +1959,7 @@
 msgstr "Нова Зеландия"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -2020,7 +2023,7 @@
 msgstr "XSL"
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr "Модул '%s' не може да бъде обновен. Той не е инсталиран."
@@ -2075,6 +2078,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr "Тип на банкова сметка"
@@ -2091,8 +2095,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr "Изображение"
 
@@ -2142,7 +2144,7 @@
 msgstr "Сектор Чов. Рес."
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2161,8 +2163,6 @@
 msgstr "Чернова"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr "Разширен"
@@ -2304,7 +2304,7 @@
 msgstr "Сър"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr "Няма изглед от тип  '%s' дефиниран за тази структура!"
@@ -2337,15 +2337,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr "Модул"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2395,8 +2395,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr "Изпращане на много e-mail съобщения"
 
@@ -2406,7 +2406,7 @@
 msgstr "Майот"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr "Моля укажете действие за изпълнение !"
@@ -2458,13 +2458,13 @@
 "ресурси"
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr "Устанена е рекурсия"
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr "Рекурсивна грешка при зависимостите на модулите !"
@@ -2587,7 +2587,7 @@
 msgstr "M."
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2597,7 +2597,7 @@
 " %s"
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2612,7 +2612,7 @@
 msgstr "Науру"
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr "Сертифицираният ID на модула трябва да бъде уникален!"
@@ -2656,7 +2656,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2689,7 +2688,7 @@
 msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr "Невалидна архитектура!"
@@ -2924,13 +2923,14 @@
 msgstr "Суринам"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr "Маркетинг"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr "Банкова сметка"
 
@@ -2971,7 +2971,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr "Модел"
 
@@ -3007,6 +3009,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -3029,7 +3032,7 @@
 msgstr "%c - Подходящо представяне на дата и време."
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -3065,6 +3068,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -3078,7 +3083,7 @@
 msgstr "Правила"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3153,7 +3158,7 @@
 msgstr "Лесото"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr "Не може да премахнете модел '%s' !"
@@ -3184,7 +3189,7 @@
 msgstr "Настройката на системата е направена"
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr "Грешка при проверка на полета (s) %s: %s"
@@ -3220,7 +3225,8 @@
 msgstr "Бенин"
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr "Договорът е вече регистриран в системата"
@@ -3251,7 +3257,7 @@
 msgstr "API ID"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3422,7 +3428,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3589,10 +3595,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3603,7 +3611,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3627,7 +3636,7 @@
 msgstr "Монсерат"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3640,7 +3649,6 @@
 msgstr "Изрази в програмата"
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3728,7 +3736,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr "Групиране по"
@@ -3802,14 +3809,13 @@
 msgstr "САЩ Малки далечни острови"
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr "Вид банка"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr "Името на група не може да започва с \"-\""
@@ -3831,7 +3837,7 @@
 msgstr "Гуджарати / ગુજરાતી"
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3882,9 +3888,9 @@
 msgstr "Гваделупа (Франция)"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr "Потребителска грешка"
@@ -3973,6 +3979,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -3991,7 +3998,7 @@
 msgstr "Конвертор на валути"
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -4050,7 +4057,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -4112,7 +4119,6 @@
 msgstr "Изтория на заявката"
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4159,6 +4165,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4212,7 +4219,6 @@
 msgstr "Свързване на обекти"
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr "Курса на валутата относно валутен курс към единица (1)"
@@ -4224,8 +4230,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr "res_config_contents"
 
@@ -4285,7 +4289,7 @@
 msgstr "ir.attachment"
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4398,6 +4402,7 @@
 "изпълнена."
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr "Служител"
@@ -4408,7 +4413,10 @@
 msgstr "Задай достъп"
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr "Област"
 
@@ -4433,8 +4441,6 @@
 msgstr "Британска индоокеанска територия"
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr "Интерфейс"
@@ -4450,7 +4456,6 @@
 msgstr "Опресни датите на валидиране"
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr "Тип на полето"
@@ -4482,8 +4487,6 @@
 msgstr "Виетнам"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr "Подпис"
@@ -4521,7 +4524,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr "Името на модула трябва да бъде уникално!"
@@ -4538,8 +4541,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr "Съобщение"
@@ -4562,7 +4565,7 @@
 msgstr "Контакти"
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4575,7 +4578,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr "Приложи планираните обновявания"
@@ -4604,7 +4606,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4614,7 +4616,7 @@
 "Потребителски настройки или от меню Потребител) за да си смените пароалата."
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr "Недостатъчни полета за Календарен изглед!"
@@ -4632,7 +4634,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr "Фирмата, за която този потребител работи понастоящем."
@@ -4683,8 +4684,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr "Затвори"
 
@@ -4773,8 +4772,8 @@
 msgstr "Сейнт Винсент и Гренадини"
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr "Парола"
@@ -4847,6 +4846,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4878,7 +4878,7 @@
 msgstr "Промени настройките ми"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr "Невалидно име на модел при задаването на действие."
@@ -4941,7 +4941,7 @@
 msgstr "холандски / Nederlands"
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -4989,7 +4989,7 @@
 msgstr "Етикети"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr "E-mail на изпращащия"
 
@@ -5009,7 +5009,6 @@
 msgstr "френски (CH) / Français (CH)"
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -5030,7 +5029,7 @@
 msgstr "Съществуващият метод не е вграден в този обект!"
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -5055,7 +5054,6 @@
 msgstr "base.update.translations"
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr "Родителска категория"
@@ -5068,7 +5066,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr "Контакт"
 
@@ -5105,7 +5102,7 @@
 msgstr "ir.server.object.lines"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr "Модул %s: Невалиден сертификат за качество"
@@ -5143,7 +5140,7 @@
 msgstr "Нигерия"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5318,14 +5315,14 @@
 msgstr "Обнови списъка с модули"
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5345,7 +5342,7 @@
 msgstr "тайски / ภาษาไทย"
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr ""
@@ -5434,7 +5431,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr "Импортиране на модул"
 
@@ -5481,8 +5477,8 @@
 msgstr "Повтаряне"
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr "Потребителска грешка"
@@ -5503,7 +5499,7 @@
 msgstr "Реюнион (Франция)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5527,12 +5523,12 @@
 msgstr "Соломонови острови"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr "AccessError"
@@ -5591,7 +5587,6 @@
 msgstr "Тонга"
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr "Категория на модула"
@@ -5716,7 +5711,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5733,8 +5727,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr "Компании"
@@ -5750,13 +5742,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5775,13 +5767,13 @@
 msgstr "Python код"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr "Модулния файл: %s, не можеда да бъде създаден !"
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr "Ядрото на OpenERP, необходимо при всяка инсталация"
 
@@ -5792,9 +5784,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr "Откажи"
@@ -5899,7 +5893,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -5915,7 +5909,6 @@
 msgstr "Хондурас"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -5961,13 +5954,12 @@
 msgstr "Описание на полетата"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -6006,7 +5998,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr "База"
@@ -6041,9 +6033,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr "Стойност"
 
@@ -6051,7 +6041,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr "Код"
@@ -6077,7 +6066,6 @@
 msgstr "Помощ"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6159,7 +6147,8 @@
 msgstr "Афганистан"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr "Грешка!"
@@ -6181,13 +6170,14 @@
 msgstr "Вид"
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr "Методът повече не съществува"
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr "Факс"
@@ -6253,7 +6243,6 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr "Избраната фирма не е измежду разрешените фирми за този потребител"
@@ -6286,7 +6275,6 @@
 msgstr "Правила на записа"
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr "Име на потребител"
@@ -6352,7 +6340,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr "Готово"
 
@@ -6375,6 +6362,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6403,9 +6391,7 @@
 msgstr "естонски / Eesti keel"
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr "Имейл"
 
@@ -6444,7 +6430,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6453,10 +6439,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr "Адрес"
 
@@ -6524,6 +6507,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr "Стойност по подразбиране"
 
@@ -6538,7 +6522,7 @@
 msgstr "Сейнт Китс и Невис"
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6554,9 +6538,7 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr "Име на обект"
 
@@ -6637,7 +6619,7 @@
 msgstr "Самоа"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6646,7 +6628,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6658,15 +6639,15 @@
 msgstr "Подчинени идентификатори"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr "Проблем в конфигурацията 'Record Id' в Действия на Сървъра!"
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr "Грешка при валидиране"
@@ -6706,19 +6687,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr "Имейл"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr "Основно действие"
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6728,6 +6709,7 @@
 "Не може да начертае кръгова диаграма."
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6824,7 +6806,6 @@
 msgstr "Режим на включване"
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr "Часови пояс"
@@ -6866,7 +6847,7 @@
 msgstr "Табло мениджър ЧР"
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6886,9 +6867,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr "Название на действието"
 
@@ -6902,12 +6883,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr "Нормален"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr "Улица2"
@@ -6926,10 +6909,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -6993,7 +6977,6 @@
 msgstr "Зареждане"
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
@@ -7001,8 +6984,8 @@
 "повечето списъци"
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -7013,7 +6996,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr "Рамерът на полето никога не може да бъде по-малко от 1!"
@@ -7052,7 +7035,7 @@
 msgstr "Аргументи"
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr "База данни ID не съществува: %s : %s"
@@ -7068,7 +7051,7 @@
 msgstr "GPL Version 3"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -7137,7 +7120,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7156,6 +7142,7 @@
 msgstr "Тунис"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr "Производство"
@@ -7198,7 +7185,7 @@
 msgstr "Копиране на обекта"
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7231,19 +7218,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7252,7 +7234,7 @@
 msgstr "Обект"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7292,7 +7274,7 @@
 "отрицателно число означава без лимит"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7305,7 +7287,7 @@
 msgstr "Потребителска справка"
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr "Предупреждение !"
@@ -7323,6 +7305,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr "Настройка"
 
@@ -7355,7 +7338,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7385,13 +7367,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7451,7 +7430,7 @@
 msgstr "workflow.triggers"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr "Невалидни критерии за търсене"
@@ -7499,6 +7478,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7509,7 +7489,7 @@
 msgstr "Вид действие"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7529,7 +7509,8 @@
 msgstr "Видове полета"
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr "Категория"
@@ -7605,7 +7586,7 @@
 msgstr "workflow.instance"
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr ""
@@ -7616,7 +7597,7 @@
 msgstr "10. %S ==> 20"
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr "непознат метод get!"
@@ -7645,7 +7626,8 @@
 msgstr "Естония"
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr "Табла"
 
@@ -7763,6 +7745,7 @@
 msgstr "хърватски / hrvatski jezik"
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr ""
@@ -7810,12 +7793,11 @@
 msgstr "Тяло"
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr "Изпращане на e-mail"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr "Действие на меню"
@@ -7882,6 +7864,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr "Права за достъп"
 
@@ -7920,7 +7904,7 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr "Относно"
@@ -7955,7 +7939,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -8063,7 +8047,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr "Идентификатор на обект"
@@ -8074,7 +8057,8 @@
 msgstr "Хоризонтално"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr "Администриране"
 
@@ -8112,7 +8096,6 @@
 msgstr "Символ"
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr ""
@@ -8138,6 +8121,7 @@
 msgstr "Ирак"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr "Асоциация"
@@ -8170,7 +8154,7 @@
 msgstr "Сметка No."
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr ""
@@ -8206,7 +8190,7 @@
 msgstr "Антигуа и Барбуда"
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8219,7 +8203,6 @@
 msgstr "Заир"
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8243,7 +8226,11 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr "Друго"
 
@@ -8271,7 +8258,7 @@
 msgstr "Автообновяване"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8298,7 +8285,7 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr "Организация на събития"
@@ -8328,7 +8315,8 @@
 msgstr "Хърватска"
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr "Идентификационен код на банката"
 
@@ -8338,33 +8326,34 @@
 msgstr "Туркменистан"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr "Грешка"
@@ -8386,6 +8375,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr "Обновяване"
@@ -8455,7 +8445,6 @@
 msgstr "Проверка на EAN"
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr "Не може да има двама потребитела с един и същ \"логин\"!"
@@ -8471,7 +8460,6 @@
 msgstr "Изпрати"
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr "Подсказки на менютата"
@@ -8539,7 +8527,7 @@
 msgstr "Сръбски (Cyrillic) / српски"
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8561,6 +8549,7 @@
 "няма да го виждат когато изготвят поръчка за доставка."
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr "Зависимо поле"
@@ -8571,7 +8560,7 @@
 msgstr "Логове на събития"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr "Сисемната настройка е готова"
@@ -8620,7 +8609,7 @@
 "Типа действие или бутон в клиентската част, който активира действието."
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr "Грешка! Не можете да създавате рекурсивни менюта."
@@ -8652,6 +8641,7 @@
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8661,12 +8651,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8762,6 +8750,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8789,13 +8778,14 @@
 msgstr "Изглед автоматично зареждане"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr ""
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -8832,7 +8822,7 @@
 "Portable Objects)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -8879,7 +8869,7 @@
 msgstr "Аржентина"
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr "Име на група"
 
@@ -8901,10 +8891,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -8965,7 +8955,8 @@
 msgstr "Азербайджан"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr "Предупреждение"
@@ -9056,6 +9047,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -9128,7 +9120,7 @@
 msgstr "Вертикално"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr ""
@@ -9167,6 +9159,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9204,6 +9198,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr "Условие"
@@ -9275,7 +9270,11 @@
 msgstr "Сейшелски о-ви"
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr "Банкови сметки"
@@ -9297,12 +9296,12 @@
 msgstr "о-ви Търкс и Кайкос"
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr "Собственик на сметка"
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr ""
@@ -9324,7 +9323,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9362,7 +9360,7 @@
 msgstr "Инстанции от последователности от действия"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr "Парньори: "

=== modified file 'bin/addons/base/i18n/bs.po'
--- bin/addons/base/i18n/bs.po	2011-01-20 06:12:47 +0000
+++ bin/addons/base/i18n/bs.po	2012-05-09 12:37:21 +0000
@@ -13,8 +13,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-01-20 06:07+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:42+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -41,7 +41,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -111,7 +111,7 @@
 msgstr "Kreirani prikazi"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -137,13 +137,13 @@
 msgstr "Ciljni prozor"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -151,7 +151,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr ""
@@ -167,8 +167,7 @@
 msgstr "Swaziland"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr ""
@@ -179,7 +178,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -240,6 +239,8 @@
 msgstr "Max. veličina"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Naziv kontakta"
@@ -270,7 +271,7 @@
 msgstr "Naziv čarobnjaka"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr ""
@@ -314,7 +315,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Grupa"
 
@@ -358,7 +358,7 @@
 msgstr "Nizozemski Antili"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -429,7 +429,7 @@
 msgstr "Planiraj nadogradnju"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr ""
@@ -477,7 +477,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr "Prilagođena polja moraju imati ime koje počinje sa 'x_' !"
@@ -500,6 +500,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr "Opis modela"
 
@@ -537,6 +538,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr ""
 
@@ -592,7 +594,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Sekvence"
 
@@ -759,7 +760,6 @@
 msgstr "Andora"
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr "Podkategorije"
@@ -780,6 +780,7 @@
 msgstr "%B - Puni naziv za mjesec."
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -796,7 +797,7 @@
 msgstr "Vrsta"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -814,7 +815,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr ""
@@ -848,7 +849,7 @@
 msgstr "Prijelazi"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -922,6 +923,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr ""
@@ -947,7 +949,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr ""
@@ -964,7 +966,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -980,7 +982,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr ""
@@ -1040,6 +1042,7 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1132,7 +1135,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1141,7 +1144,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr ""
@@ -1263,8 +1265,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr ""
@@ -1321,6 +1323,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1342,7 +1345,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr ""
@@ -1353,8 +1356,9 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr ""
@@ -1484,7 +1488,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1544,9 +1548,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr ""
@@ -1587,7 +1589,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1634,8 +1636,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr ""
@@ -1666,7 +1666,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1843,7 +1843,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr ""
@@ -1854,12 +1855,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1891,7 +1894,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -1953,7 +1956,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr ""
@@ -2008,6 +2011,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr ""
@@ -2024,8 +2028,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr ""
 
@@ -2075,7 +2077,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2094,8 +2096,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr ""
@@ -2234,7 +2234,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr ""
@@ -2267,15 +2267,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr ""
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2325,8 +2325,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr ""
 
@@ -2336,7 +2336,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr ""
@@ -2386,13 +2386,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr ""
@@ -2510,7 +2510,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2518,7 +2518,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2531,7 +2531,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr ""
@@ -2575,7 +2575,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2608,7 +2607,7 @@
 msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr ""
@@ -2835,13 +2834,14 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr ""
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr ""
 
@@ -2882,7 +2882,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr "Model"
 
@@ -2916,6 +2918,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -2938,7 +2941,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -2971,6 +2974,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -2984,7 +2989,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3056,7 +3061,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr "Nije moguće obrisati model '%s' !"
@@ -3087,7 +3092,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr ""
@@ -3123,7 +3128,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr ""
@@ -3154,7 +3160,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3320,7 +3326,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3483,10 +3489,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3497,7 +3505,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3521,7 +3530,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3534,7 +3543,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3620,7 +3628,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr ""
@@ -3694,14 +3701,13 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr ""
@@ -3723,7 +3729,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3773,9 +3779,9 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr ""
@@ -3864,6 +3870,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -3882,7 +3889,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -3940,7 +3947,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -4002,7 +4009,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4049,6 +4055,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4102,7 +4109,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr ""
@@ -4114,8 +4120,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr ""
 
@@ -4174,7 +4178,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4280,6 +4284,7 @@
 msgstr ""
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr ""
@@ -4290,7 +4295,10 @@
 msgstr ""
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr ""
 
@@ -4315,8 +4323,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr ""
@@ -4332,7 +4338,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr ""
@@ -4364,8 +4369,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr "Potpis"
@@ -4403,7 +4406,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr ""
@@ -4420,8 +4423,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr ""
@@ -4444,7 +4447,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4457,7 +4460,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr ""
@@ -4486,7 +4488,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4494,7 +4496,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr ""
@@ -4512,7 +4514,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr ""
@@ -4563,8 +4564,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr ""
 
@@ -4653,8 +4652,8 @@
 msgstr ""
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr ""
@@ -4727,6 +4726,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4758,7 +4758,7 @@
 msgstr "Promjeni Moje postavke"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr ""
@@ -4821,7 +4821,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -4866,7 +4866,7 @@
 msgstr "Oznake"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr "Email pošiljaoca"
 
@@ -4886,7 +4886,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -4905,7 +4904,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -4928,7 +4927,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr "Izvorna kategorija"
@@ -4941,7 +4939,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr "Kontakt"
 
@@ -4978,7 +4975,7 @@
 msgstr "ir.server.objekt.linije"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr ""
@@ -5012,7 +5009,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5185,14 +5182,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5212,7 +5209,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr ""
@@ -5301,7 +5298,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr ""
 
@@ -5348,8 +5344,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr ""
@@ -5370,7 +5366,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5394,12 +5390,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr ""
@@ -5458,7 +5454,6 @@
 msgstr ""
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr ""
@@ -5583,7 +5578,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5600,8 +5594,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr ""
@@ -5617,13 +5609,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5642,13 +5634,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr ""
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr ""
 
@@ -5659,9 +5651,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr ""
@@ -5766,7 +5760,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -5782,7 +5776,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -5826,13 +5819,12 @@
 msgstr "Opis polja"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -5871,7 +5863,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr ""
@@ -5906,9 +5898,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr ""
 
@@ -5916,7 +5906,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr ""
@@ -5942,7 +5931,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6024,7 +6012,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr ""
@@ -6046,13 +6035,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr ""
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr ""
@@ -6116,7 +6106,6 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6149,7 +6138,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr ""
@@ -6215,7 +6203,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr ""
 
@@ -6238,6 +6225,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6266,9 +6254,7 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr ""
 
@@ -6307,7 +6293,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6316,10 +6302,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr ""
 
@@ -6387,6 +6370,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr ""
 
@@ -6401,7 +6385,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6417,9 +6401,7 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr ""
 
@@ -6498,7 +6480,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6507,7 +6489,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6519,15 +6500,15 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr ""
@@ -6567,19 +6548,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr ""
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr ""
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6587,6 +6568,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6683,7 +6665,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr ""
@@ -6725,7 +6706,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6745,9 +6726,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr ""
 
@@ -6761,12 +6742,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr "Normalan"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr ""
@@ -6785,10 +6768,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -6852,14 +6836,13 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -6870,7 +6853,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr ""
@@ -6909,7 +6892,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr ""
@@ -6925,7 +6908,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -6994,7 +6977,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7013,6 +6999,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr ""
@@ -7055,7 +7042,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7086,19 +7073,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7107,7 +7089,7 @@
 msgstr "Objekat"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7145,7 +7127,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7158,7 +7140,7 @@
 msgstr "Korisnik ref."
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr ""
@@ -7176,6 +7158,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr ""
 
@@ -7208,7 +7191,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7238,13 +7220,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7304,7 +7283,7 @@
 msgstr "radnitok.okidači"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr ""
@@ -7350,6 +7329,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7360,7 +7340,7 @@
 msgstr "Tip akcije"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7380,7 +7360,8 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr ""
@@ -7456,7 +7437,7 @@
 msgstr "workflow.instance"
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr ""
@@ -7467,7 +7448,7 @@
 msgstr "10. %S ==> 20"
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr ""
@@ -7496,7 +7477,8 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr ""
 
@@ -7612,6 +7594,7 @@
 msgstr ""
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr ""
@@ -7659,12 +7642,11 @@
 msgstr ""
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr "Pošalji email"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr ""
@@ -7731,6 +7713,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr ""
 
@@ -7769,7 +7753,7 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr ""
@@ -7804,7 +7788,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -7912,7 +7896,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr ""
@@ -7923,7 +7906,8 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr ""
 
@@ -7961,7 +7945,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr ""
@@ -7987,6 +7970,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr ""
@@ -8019,7 +8003,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr ""
@@ -8055,7 +8039,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8068,7 +8052,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8092,7 +8075,11 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr ""
 
@@ -8120,7 +8107,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8147,7 +8134,7 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr ""
@@ -8177,7 +8164,8 @@
 msgstr ""
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr ""
 
@@ -8187,33 +8175,34 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr ""
@@ -8235,6 +8224,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr ""
@@ -8304,7 +8294,6 @@
 msgstr ""
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr ""
@@ -8320,7 +8309,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr ""
@@ -8386,7 +8374,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8406,6 +8394,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr ""
@@ -8416,7 +8405,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr ""
@@ -8464,7 +8453,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr ""
@@ -8496,6 +8485,7 @@
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8505,12 +8495,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8606,6 +8594,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8633,13 +8622,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr ""
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -8674,7 +8664,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -8719,7 +8709,7 @@
 msgstr ""
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr ""
 
@@ -8741,10 +8731,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -8805,7 +8795,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr ""
@@ -8896,6 +8887,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -8963,7 +8955,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr ""
@@ -9002,6 +8994,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9039,6 +9033,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr ""
@@ -9110,7 +9105,11 @@
 msgstr ""
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr ""
@@ -9132,12 +9131,12 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr ""
@@ -9159,7 +9158,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9197,7 +9195,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr ""

=== modified file 'bin/addons/base/i18n/ca.po'
--- bin/addons/base/i18n/ca.po	2011-03-13 06:15:11 +0000
+++ bin/addons/base/i18n/ca.po	2012-05-09 12:37:21 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-03-13 06:15+0000\n"
-"X-Generator: Launchpad (build 12559)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:42+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -42,7 +42,7 @@
 msgstr "Data i hora"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -114,7 +114,7 @@
 msgstr "Vistes creades"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -145,13 +145,13 @@
 msgstr "Destí finestra"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr "Avís!"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -162,7 +162,7 @@
 "d'un mòdul (addon) personalitzat."
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr "Error en la restricción (constraint)"
@@ -178,8 +178,7 @@
 msgstr "Swazilàndia"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr "creat."
@@ -190,7 +189,7 @@
 msgstr "Proveedores de madera"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -254,6 +253,8 @@
 msgstr "Tamany màx."
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Nom"
@@ -284,7 +285,7 @@
 msgstr "Nom d'assistent"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr "group_by no vàlid"
@@ -328,7 +329,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Grup"
 
@@ -372,7 +372,7 @@
 msgstr "Antilles holandeses"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -444,7 +444,7 @@
 msgstr "Programa actualització"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr "Clau/valor '%s' no s'ha trobat en el camp selecció '%s'"
@@ -494,7 +494,7 @@
 msgstr "Proveïdors varis"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr "Els camps personalitzats han de tenir un nom que comenci amb 'x_'!"
@@ -516,6 +516,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr "Descripció del model"
 
@@ -555,6 +556,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr "Accions automatitzades"
 
@@ -614,7 +616,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Seqüències"
 
@@ -789,7 +790,6 @@
 msgstr "Principat d'Andorra"
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr "Categories filles"
@@ -810,6 +810,7 @@
 msgstr "%B - Nom de mes complet."
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -826,7 +827,7 @@
 msgstr "Tipus"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -846,7 +847,7 @@
 msgstr "Taulell de recursos humans"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr "No es permet establir contrasenyes buides per motius de seguretat!"
@@ -880,7 +881,7 @@
 msgstr "Transicions"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr "No s'ha trobat el registre #%d de %s, no es pot copiar!"
@@ -961,6 +962,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr "Lloc web"
@@ -986,7 +988,7 @@
 msgstr "Illes Marshall"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr "Està prohibit canviar el model d'un camp!"
@@ -1003,7 +1005,7 @@
 msgstr "Cerca"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -1025,7 +1027,7 @@
 "lògic AND"
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr "Operació cancel·lada"
@@ -1085,6 +1087,7 @@
 msgstr "No existeix un idioma amb codi \"%s\""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1189,7 +1192,7 @@
 msgstr "En creació"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1201,7 +1204,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr "Usuari"
@@ -1341,8 +1343,8 @@
 "object.list_price > object.cost_price"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr " (còpia)"
@@ -1401,6 +1403,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1422,7 +1425,7 @@
 msgstr "Fórmula"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr "No es pot eliminar l'usuari principal!"
@@ -1433,8 +1436,9 @@
 msgstr "Malawi"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr "%s (còpia)"
@@ -1572,7 +1576,7 @@
 msgstr "Bahames"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1639,9 +1643,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr "Grups"
@@ -1688,7 +1690,7 @@
 "tree, form)"
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1739,8 +1741,6 @@
 msgstr "Illes Fèroe"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr "Simplificada"
@@ -1771,7 +1771,7 @@
 msgstr "Madagascar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1956,7 +1956,8 @@
 msgstr "Pakistan"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr "Estructura de l'objecte no vàlida!"
@@ -1967,12 +1968,14 @@
 msgstr "Missatges"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -2004,7 +2007,7 @@
 msgstr "Nova Zelanda"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -2071,7 +2074,7 @@
 msgstr "XSL"
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr "No es pot actualitzar mòdul '%s'. No està instal·lat."
@@ -2126,6 +2129,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr "Tipus de compte de banc"
@@ -2142,8 +2146,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr "Imatge"
 
@@ -2193,7 +2195,7 @@
 msgstr "Sector RRHH"
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2215,8 +2217,6 @@
 msgstr "Esborrany"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr "Estesa"
@@ -2364,7 +2364,7 @@
 msgstr "Sr."
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr "No existeix una vista del tipus '%s' definida per a l'estructura!"
@@ -2397,15 +2397,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr "Mòdul"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2455,8 +2455,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr "Enviament massiu d'emails"
 
@@ -2466,7 +2466,7 @@
 msgstr "Mayotte"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr "Indiqueu una acció per ser executada!"
@@ -2517,13 +2517,13 @@
 "Si no s'especifica actua com a valor per defecte per als nous recursos."
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr "S'ha detectat recursivitat."
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr "Error de recurrència entre dependències de mòduls!"
@@ -2646,7 +2646,7 @@
 msgstr "Sr."
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2656,7 +2656,7 @@
 " %s"
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2671,7 +2671,7 @@
 msgstr "Nauru"
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr "L'ID del certificat del mòdul ha de ser únic!"
@@ -2718,7 +2718,6 @@
 "addicionals a launchpad.net"
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2751,7 +2750,7 @@
 msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr "Estructura no vàlida!"
@@ -2990,13 +2989,14 @@
 msgstr "Surinam"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr "Màrqueting"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr "compte bancari"
 
@@ -3037,7 +3037,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr "Model"
 
@@ -3073,6 +3075,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -3095,7 +3098,7 @@
 msgstr "%c - Representació apropiada de data i hora."
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -3131,6 +3134,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -3144,7 +3149,7 @@
 msgstr "Regles"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3219,7 +3224,7 @@
 msgstr "Lesotho"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr "No podeu eliminar aquest model '%s'!"
@@ -3250,7 +3255,7 @@
 msgstr "Configuració del sistema realitzada"
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr "S'ha produït un error mentre es validaven els camp(s) %s:%s"
@@ -3286,7 +3291,8 @@
 msgstr "Benín"
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr "Aquest contracte ja està registrat al sistema."
@@ -3317,7 +3323,7 @@
 msgstr "ID API"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3489,7 +3495,7 @@
 msgstr "Aplica per eliminar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3675,10 +3681,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3689,7 +3697,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3715,7 +3724,7 @@
 msgstr "Montserrat"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3730,7 +3739,6 @@
 msgstr "Termes de l'aplicació"
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3822,7 +3830,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr "Agrupa per"
@@ -3896,14 +3903,13 @@
 msgstr "EE.UU. Illes Exteriors Menors"
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr "Tipus de banc"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr "El nom del grup no pot començar amb \"-\""
@@ -3925,7 +3931,7 @@
 msgstr "Gujarati / ગુજરાતી"
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3980,9 +3986,9 @@
 msgstr "Guadalupe (Francesa)"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr "Error d'usuari"
@@ -4076,6 +4082,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -4094,7 +4101,7 @@
 msgstr "Convertidor de divises"
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -4153,7 +4160,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -4215,7 +4222,6 @@
 msgstr "Historial de sol·licituds"
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4262,6 +4268,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4315,7 +4322,6 @@
 msgstr "Mapa d'objectes"
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr "La taxa de canvi de la moneda a la moneda de taxa 1"
@@ -4327,8 +4333,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr "res_config_continguts"
 
@@ -4388,7 +4392,7 @@
 msgstr "ir.adjunt"
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4500,6 +4504,7 @@
 msgstr "Seleccioneu l'objecte del model sobre el qual s'executarà el flux."
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr "Empleat"
@@ -4510,7 +4515,10 @@
 msgstr "Permís per crear"
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr "Província"
 
@@ -4535,8 +4543,6 @@
 msgstr "Territori Britànic de l'Oceà Índic"
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr "Interfície"
@@ -4552,7 +4558,6 @@
 msgstr "Refresca dates de validació"
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr "Tipus de camp"
@@ -4584,8 +4589,6 @@
 msgstr "Vietnam"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr "Signatura"
@@ -4623,7 +4626,7 @@
 msgstr "Fals significa per a tots els usuaris."
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr "El nom del mòdul ha de ser únic!"
@@ -4640,8 +4643,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr "Missatge"
@@ -4664,7 +4667,7 @@
 msgstr "Contactes"
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4679,7 +4682,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr "Aplica actualitzacions programades"
@@ -4712,7 +4714,7 @@
 "manualment."
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4722,7 +4724,7 @@
 "menú Usuari) per canviar la vostra pròpia contrasenya."
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr "Insuficients camps per a la vista calendari!"
@@ -4742,7 +4744,6 @@
 "NULL si el contingut està en un altre camp de dades."
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr "La companyia per a la qual treballa aquest usuari actualment."
@@ -4793,8 +4794,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr "Tanca"
 
@@ -4885,8 +4884,8 @@
 msgstr "Sant Vicenç i les Granadines"
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr "Contrasenya"
@@ -4964,6 +4963,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4995,7 +4995,7 @@
 msgstr "Canvia les preferències"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr "Nom de model no vàlid en la definició de l'acció."
@@ -5058,7 +5058,7 @@
 msgstr "Holandès / Nederlands"
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -5106,7 +5106,7 @@
 msgstr "Etiquetes"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr "Email remitent"
 
@@ -5126,7 +5126,6 @@
 msgstr "Francès (CH) / Français (CH)"
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -5147,7 +5146,7 @@
 msgstr "El mètode exists no està implementat en aquest objecte!"
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -5172,7 +5171,6 @@
 msgstr "base.actualitzar.tranduccions"
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr "Categoria pare"
@@ -5185,7 +5183,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr "Contacte"
 
@@ -5222,7 +5219,7 @@
 msgstr "ir.server.objecte.línias"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr "Mòdul %s: Certificat de qualitat no vàlid"
@@ -5259,7 +5256,7 @@
 msgstr "Nigèria"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr "Per camps selection heu d'indicar les opcions de selecció!"
@@ -5449,7 +5446,7 @@
 msgstr "Actualitza llista de mòduls"
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
@@ -5458,7 +5455,7 @@
 "no resolta:% s"
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5482,7 +5479,7 @@
 msgstr "Tailandès / ภาษาไทย"
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr "Objecte %s no existeix"
@@ -5571,7 +5568,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr "Importa mòdul"
 
@@ -5618,8 +5614,8 @@
 msgstr "Iteració"
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr "Error de l'usuari"
@@ -5640,7 +5636,7 @@
 msgstr "Reunió (Francesa)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5665,12 +5661,12 @@
 msgstr "Illes Salomó"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr "ErrorAccés"
@@ -5729,7 +5725,6 @@
 msgstr "Tonga"
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr "Categoria del mòdul"
@@ -5859,7 +5854,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5876,8 +5870,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr "Companyies"
@@ -5893,13 +5885,13 @@
 msgstr "res.widget"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr "No existeix el mòdul %s!"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5919,13 +5911,13 @@
 msgstr "Codi de Python"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr "No es pot crear el fitxer de mòdul: %s!"
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr "El nucli d'OpenERP, necessari per tota instal·lació."
 
@@ -5936,9 +5928,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr "Cancel·la"
@@ -6045,7 +6039,7 @@
 "per a les altres vistes."
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr "Feu clic a 'Continua' per a establir el següent mòdul ..."
@@ -6061,7 +6055,6 @@
 msgstr "Hondures"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -6109,13 +6102,12 @@
 msgstr "Descripció de camps"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -6156,7 +6148,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr "Base"
@@ -6191,9 +6183,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr "Valor"
 
@@ -6201,7 +6191,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr "Codi"
@@ -6227,7 +6216,6 @@
 msgstr "Ajuda"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6312,7 +6300,8 @@
 msgstr "Estat Islàmic d'Afganistan"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr "Error!"
@@ -6334,13 +6323,14 @@
 msgstr "Classe"
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr "Aquest mètode ja no existeix"
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr "Fax"
@@ -6408,7 +6398,6 @@
 "aquesta transició."
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6445,7 +6434,6 @@
 msgstr "Regles de registres"
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr "Nom usuari"
@@ -6513,7 +6501,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr "Realitzat"
 
@@ -6536,6 +6523,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6564,9 +6552,7 @@
 msgstr "Estonià / Eesti keel"
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr "Correu electrònic"
 
@@ -6609,7 +6595,7 @@
 "Per a buscar traduccions oficials, podeu començar amb aquests enllaços:"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6620,10 +6606,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr "Adreça"
 
@@ -6691,6 +6674,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr "Valor per defecte"
 
@@ -6705,7 +6689,7 @@
 msgstr "Saint Kitts i Nevis Anguilla"
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6726,9 +6710,7 @@
 "contingut de les seves vistes de tauler (mitjançant el client web)"
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr "Nom de l'objecte"
 
@@ -6809,7 +6791,7 @@
 msgstr "Samoa"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6818,7 +6800,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6832,15 +6813,15 @@
 msgstr "IDs fills"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr "Problema en configuració `Id registre` en l'acció del servidor!"
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr "Error de Validació"
@@ -6882,19 +6863,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr "Email"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr "Acció inicial"
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6904,6 +6885,7 @@
 "No es pot dibuixar un gràfic de sectors!"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -7002,7 +6984,6 @@
 msgstr "Mode unió"
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr "Zona horària"
@@ -7044,7 +7025,7 @@
 msgstr "Tauler director RRHH"
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -7066,9 +7047,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr "Nom d'acció"
 
@@ -7086,12 +7067,14 @@
 "que necessiten utilitzar en el sistema."
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr "Normal"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr "Carrer2"
@@ -7110,10 +7093,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -7177,7 +7161,6 @@
 msgstr "Carrega"
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
@@ -7185,8 +7168,8 @@
 "llistats."
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr "Error d'integritat"
@@ -7197,7 +7180,7 @@
 msgstr "ir.assistent.pantalla"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr "La grandària del camp no pot ser menor que 1!"
@@ -7236,7 +7219,7 @@
 msgstr "Arguments"
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr "No existeix l'ID de la base de dades: %s: %s"
@@ -7252,7 +7235,7 @@
 msgstr "GPL Versió 3"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr "No s'ha trobat la clau '%s' al camp selecció '%s'"
@@ -7321,7 +7304,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7340,6 +7326,7 @@
 msgstr "Tunísia"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr "Producció"
@@ -7382,7 +7369,7 @@
 msgstr "Copia objecte"
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7414,19 +7401,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7435,7 +7417,7 @@
 msgstr "Objecte"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7478,7 +7460,7 @@
 "un nombre negatiu indica que és indefinit (sense límit)."
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7493,7 +7475,7 @@
 msgstr "Ref. usuari"
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr "Avís!"
@@ -7511,6 +7493,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr "Configuració"
 
@@ -7543,7 +7526,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7573,13 +7555,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7639,7 +7618,7 @@
 msgstr "workflow.activacions"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr "Criteris de cerca invàlids"
@@ -7687,6 +7666,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7697,7 +7677,7 @@
 msgstr "Tipus d'acció"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7719,7 +7699,8 @@
 msgstr "Camps de tipus"
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr "Categoria"
@@ -7795,7 +7776,7 @@
 msgstr "workflow.instancia"
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr "Atribut desconegut %s en %s "
@@ -7806,7 +7787,7 @@
 msgstr "10. %S ==> 20"
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr "Mètode get (obtenir) no definit!"
@@ -7837,7 +7818,8 @@
 msgstr "Estònia"
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr "Taulers"
 
@@ -7960,6 +7942,7 @@
 msgstr "Croat / hrvatski jezik"
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr "Sobrescribir términos existentes"
@@ -8007,12 +7990,11 @@
 msgstr "Contingut"
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr "Envia email"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr "Acció de menú"
@@ -8084,6 +8066,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr "Permisos d'accés"
 
@@ -8125,7 +8109,7 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr "Assumpte"
@@ -8161,7 +8145,7 @@
 "Nom del mètode de l'objecte a trucar quan aquesta planificació s'executi."
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -8280,7 +8264,6 @@
 msgstr "S.L."
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr "ID de l'objecte"
@@ -8291,7 +8274,8 @@
 msgstr "Horitzontal"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr "Administració"
 
@@ -8329,7 +8313,6 @@
 msgstr "Símbol"
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr "Utilitzat per connectar-se al sistema."
@@ -8355,6 +8338,7 @@
 msgstr "Iraq"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr "Associació"
@@ -8387,7 +8371,7 @@
 msgstr "Nº de compte"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr "L'idioma de base 'en_US' no pot ser suprimit!"
@@ -8423,7 +8407,7 @@
 msgstr "Antigua i Barbuda"
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8438,7 +8422,6 @@
 msgstr "Zaire"
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8462,7 +8445,11 @@
 msgstr "Actualitza llista de mòduls"
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr "Altre"
 
@@ -8490,7 +8477,7 @@
 msgstr "Auto-refrescar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr "El camp osv_memory només pot ser comparat amb els operadors = i ! =."
@@ -8517,7 +8504,7 @@
 msgstr "Les regles no contemplades en els objectes osv_memory!"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr "Organització d'esdeveniments"
@@ -8547,7 +8534,8 @@
 msgstr "Croàcia"
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr "Codi d'identificador bancari"
 
@@ -8557,33 +8545,34 @@
 msgstr "Turkmenistan"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr "Error"
@@ -8605,6 +8594,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr "Actualitza"
@@ -8674,7 +8664,6 @@
 msgstr "Verificació EAN"
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr "No podeu tenir dos usuaris amb el mateix identificador d'usuari!"
@@ -8690,7 +8679,6 @@
 msgstr "Enviar"
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr "Suggeriments de menú"
@@ -8759,7 +8747,7 @@
 msgstr "Serbi (Cirílic) / српски"
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8783,6 +8771,7 @@
 "serà visible al introduir una comanda de compra."
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr "Camp relació"
@@ -8793,7 +8782,7 @@
 msgstr "Registres d'esdeveniments"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr "Configuració del sistema realitzada."
@@ -8841,7 +8830,7 @@
 msgstr "Tipus d'acció o botó del costat del client que activarà l'acció."
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr "Error! No podeu crear menús recursius."
@@ -8876,6 +8865,7 @@
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8885,12 +8875,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8991,6 +8979,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -9018,13 +9007,14 @@
 msgstr "Vista auto-carregar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr "No podeu suprimir el camp '%s' !"
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -9061,7 +9051,7 @@
 "(objectes portables gettext)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -9108,7 +9098,7 @@
 msgstr "Argentina"
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr "Nom grup"
 
@@ -9130,10 +9120,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -9198,7 +9188,8 @@
 msgstr "Azerbaidjan"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr "Avís"
@@ -9296,6 +9287,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -9369,7 +9361,7 @@
 msgstr "Vertical"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr "Només podeu canviar el nom una columna a la vegada!"
@@ -9408,6 +9400,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9445,6 +9439,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr "Condició"
@@ -9519,7 +9514,11 @@
 msgstr "Seychelles"
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr "Comptes bancaris"
@@ -9541,12 +9540,12 @@
 msgstr "Illes Turques i Caicos"
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr "Propietari compte"
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr "Advertència de canvi de companyia."
@@ -9569,7 +9568,6 @@
 "El número següent d'aquesta seqüència serà incrementat per aquest número."
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9607,7 +9605,7 @@
 msgstr "Instàncies flux"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr "Empreses: "

=== modified file 'bin/addons/base/i18n/cs.po'
--- bin/addons/base/i18n/cs.po	2011-06-25 06:19:40 +0000
+++ bin/addons/base/i18n/cs.po	2012-05-09 12:37:21 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 5.0.4\n"
 "Report-Msgid-Bugs-To: support@openerp.com\n"
 "POT-Creation-Date: 2011-01-11 11:14+0000\n"
-"PO-Revision-Date: 2011-06-24 01:18+0000\n"
-"Last-Translator: Chronos <Unknown>\n"
+"PO-Revision-Date: 2011-08-23 09:37+0000\n"
+"Last-Translator: Jan B. Krejčí <Unknown>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-06-25 06:19+0000\n"
-"X-Generator: Launchpad (build 13168)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:42+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -41,7 +41,7 @@
 msgstr "Datum a čas"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -113,12 +113,14 @@
 msgstr "Vytvořit pohledy"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
 "of these groups: %s."
 msgstr ""
+"Nemůžete zapisovat do tohoto dokumentu (%s)! Ujistěte se, že váš uživatel "
+"patří do některé z těchto skupin: %s."
 
 #. module: base
 #: help:ir.model.fields,domain:0
@@ -127,6 +129,8 @@
 "specified as a Python expression defining a list of triplets. For example: "
 "[('color','=','red')]"
 msgstr ""
+"Volitelná doména k omezení možných hodnot pro pole, specifikovaná jako výraz "
+"v Pythonu obsahující seznam trojic. Například: [('color','=','red')]"
 
 #. module: base
 #: field:res.partner,ref:0
@@ -139,21 +143,24 @@
 msgstr "Cílové okno"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr "Varování!"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
 "them through Python code, preferably through a custom addon!"
 msgstr ""
+"Vlastnosti základních polí (base fields) nemohou být takto měněny! "
+"Modifikujte je pomocí kódu v Pythonu, nejlépe prostřednictvím vlastního add-"
+"onu!"
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr "Chyba omezení"
@@ -166,11 +173,10 @@
 #. module: base
 #: model:res.country,name:base.sz
 msgid "Swaziland"
-msgstr "Švýcarsko"
+msgstr "Svazijsko"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr "vytvořeno."
@@ -181,7 +187,7 @@
 msgstr "Dodavatelé dřeva"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -205,7 +211,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Inuktitut / ᐃᓄᒃᑎᑐᑦ"
-msgstr ""
+msgstr "Inuktitut / ᐃᓄᒃᑎᑐᑦ"
 
 #. module: base
 #: view:res.partner:0
@@ -246,6 +252,8 @@
 msgstr "Maximální velikost"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Jméno kontaktu"
@@ -276,7 +284,7 @@
 msgstr "Jméno průvodce"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr "Neplatné group_by"
@@ -320,7 +328,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Skupina"
 
@@ -364,7 +371,7 @@
 msgstr "Nizozemské Antily"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -394,6 +401,8 @@
 "If you check this, then the second time the user prints with same attachment "
 "name, it returns the previous report."
 msgstr ""
+"Pokud toto zaškrtnute, příště když uživatel bude tisknout přílohu se stejným "
+"názvem, vrátí se mu předchozí report."
 
 #. module: base
 #: code:addons/orm.py:904
@@ -404,7 +413,7 @@
 #. module: base
 #: help:res.lang,iso_code:0
 msgid "This ISO code is the name of po files to use for translations"
-msgstr ""
+msgstr "ISO kód je název .po souborů použitých pro překlady"
 
 #. module: base
 #: view:base.module.upgrade:0
@@ -433,7 +442,7 @@
 msgstr "Naplánovat povýšení"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr "Nenalezen klíč/hodnota '%s' ve vybraném poli '%s'"
@@ -444,6 +453,8 @@
 "The ISO country code in two chars.\n"
 "You can use this field for quick search."
 msgstr ""
+"ISO kód země - dvě písmena.\n"
+"Toto pole můžete použít pro rychlé hledání."
 
 #. module: base
 #: model:res.country,name:base.pw
@@ -465,6 +476,8 @@
 msgid ""
 "Context dictionary as Python expression, empty by default (Default: {})"
 msgstr ""
+"Kontextový slovník jako výraz Pythonu, výchozí hodnota je prázdný slovník "
+"(výchozí: {})"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_action_wizard
@@ -479,7 +492,7 @@
 msgstr "Různí dodavatelé"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr "Vlastní pole musí mít jméno začínající s 'x_' !"
@@ -501,6 +514,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr "Popis modelu"
 
@@ -508,7 +522,7 @@
 #: help:ir.actions.act_window,src_model:0
 msgid ""
 "Optional model name of the objects on which this action should be visible"
-msgstr ""
+msgstr "Volitelné jméno modelu objektů, u kterých má tato akce být dostupná"
 
 #. module: base
 #: field:workflow.transition,trigger_expr_id:0
@@ -538,6 +552,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr "Automatizované akce"
 
@@ -585,18 +600,17 @@
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Wizard View"
-msgstr ""
+msgstr "Zobrazení průvodce"
 
 #. module: base
 #: model:res.country,name:base.kh
 msgid "Cambodia, Kingdom of"
-msgstr ""
+msgstr "Kambodžské království"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Posloupnosti"
 
@@ -634,6 +648,7 @@
 #: help:ir.actions.report.xml,report_type:0
 msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..."
 msgstr ""
+"Typ výkazu, např. pdf, html, raw, sxw, odt, html2html, mako2html, ..."
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_4
@@ -669,7 +684,7 @@
 #: help:ir.actions.act_window,domain:0
 msgid ""
 "Optional domain filtering of the destination data, as a Python expression"
-msgstr ""
+msgstr "Volitelné filtrování domény cílových dat jako výraz Pythonu"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade
@@ -683,6 +698,8 @@
 "Groups are used to define access rights on objects and the visibility of "
 "screens and menus"
 msgstr ""
+"Skupiny jsou použity pro určení přístupových práv nad objekty a viditelnost "
+"obrazovek a nabídek"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -719,7 +736,7 @@
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "Other OSI Approved Licence"
-msgstr ""
+msgstr "Jiné schválené licence OSI"
 
 #. module: base
 #: help:res.config.users,context_lang:0
@@ -728,6 +745,8 @@
 "Sets the language for the user's user interface, when UI translations are "
 "available"
 msgstr ""
+"Pokud jsou dostupné překlady rozhraní, nastaví jazyk pro uživatelské "
+"rozhraní uživatele."
 
 #. module: base
 #: code:addons/orm.py:1043
@@ -750,7 +769,7 @@
 #: model:ir.actions.act_window,name:base.res_request_link-act
 #: model:ir.ui.menu,name:base.menu_res_request_link_act
 msgid "Request Reference Types"
-msgstr ""
+msgstr "Požadavek referenčních typů"
 
 #. module: base
 #: view:ir.values:0
@@ -760,10 +779,9 @@
 #. module: base
 #: model:res.country,name:base.ad
 msgid "Andorra, Principality of"
-msgstr ""
+msgstr "Andorra, Knížectví"
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr "Kategorie potomků"
@@ -784,6 +802,7 @@
 msgstr "%B - Plné jméno měsíce."
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -800,17 +819,19 @@
 msgstr "Typ"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
 "Define it through the Administration menu."
 msgstr ""
+"Kód jazyka \"%s\" není v systému určen !\n"
+"Určete jej přes Nabídku správy."
 
 #. module: base
 #: model:res.country,name:base.gu
 msgid "Guam (USA)"
-msgstr ""
+msgstr "Guam (USA)"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_hr_project
@@ -818,7 +839,7 @@
 msgstr "Nástěnka lidských zdrojů"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr "Nastavení prázdného hesla není povoleno z bezpečnostních důvodů!"
@@ -852,7 +873,7 @@
 msgstr "Překlady"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr "Záznam #%d of %s nenalezen, nelze kopírovat!"
@@ -871,7 +892,7 @@
 #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form
 #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract
 msgid "Contracts"
-msgstr "Kontakty"
+msgstr "Smlouvy"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -926,9 +947,13 @@
 "decimal number [00,53]. All days in a new year preceding the first Monday "
 "are considered to be in week 0."
 msgstr ""
+"%W - Číslo týdne v roce (Pondělí jako první den v týdnu) jako dekadické "
+"číslo [00,53]. Všechny dny v novém roce předcházející první pondělí jsou "
+"považovány za týden 0."
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr "Webová stránka"
@@ -936,7 +961,7 @@
 #. module: base
 #: model:res.country,name:base.gs
 msgid "S. Georgia & S. Sandwich Isls."
-msgstr ""
+msgstr "Ostrovy S. Georgia a S. Sandwich"
 
 #. module: base
 #: field:ir.actions.url,url:0
@@ -954,7 +979,7 @@
 msgstr "Marshallovy ostrovy"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr "Je zakázána změna modelu pole!"
@@ -971,7 +996,7 @@
 msgstr "Hledat"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -988,9 +1013,11 @@
 msgid ""
 "2. Group-specific rules are combined together with a logical AND operator"
 msgstr ""
+"2. Pravidla určitá pro skupinu jsou kombinována společně s logickým "
+"operátorem AND"
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr "Operace zrušena"
@@ -1050,6 +1077,7 @@
 msgstr "Jazyk s kódem \"%s\" neexistuje"
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1062,6 +1090,9 @@
 "you select the invoice, then `object.invoice_address_id.email` is the field "
 "which gives the correct address"
 msgstr ""
+"Poskytuje pole, která budou použita pro získání emailové adresy, např. když "
+"vyberete fakturu, pak `object.invoice_address_id.email` je pole, které dává "
+"platnou adresu"
 
 #. module: base
 #: view:res.lang:0
@@ -1080,12 +1111,15 @@
 "system. After the contract has been registered, you will be able to send "
 "issues directly to OpenERP."
 msgstr ""
+"Tento průvodce vám pomůže registrovat záruční smlouvu vydavatele ve vašem "
+"systému OpenERP. Poté co bude smlouva registrována, budete moci odeslílat "
+"dotazy přímo do OpenERP."
 
 #. module: base
 #: code:addons/orm.py:1744
 #, python-format
 msgid "The search method is not implemented on this object !"
-msgstr ""
+msgstr "Metoda hledání není u tohoto objektu realizována !"
 
 #. module: base
 #: view:wizard.ir.model.menu.create:0
@@ -1115,6 +1149,8 @@
 "If you check this box, your customized translations will be overwritten and "
 "replaced by the official ones."
 msgstr ""
+"Pokud toto zaškrtnete, vaše vlastní překlady budou přepsány a nahrazeny těmi "
+"oficiálními."
 
 #. module: base
 #: field:ir.actions.report.xml,report_rml:0
@@ -1135,6 +1171,8 @@
 "If set to true, the action will not be displayed on the right toolbar of a "
 "form view."
 msgstr ""
+"Pokud je nastaveno na pravda, akce nebude zobrazena v pravm nástrojovém "
+"panelu formulářového pohledu."
 
 #. module: base
 #: field:workflow,on_create:0
@@ -1142,16 +1180,17 @@
 msgstr "Při vytvoření"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
 "used to refer to other modules data, as in module.reference_id"
 msgstr ""
+"'%s' obsahuje příliš mnoho teček. Id XML by nemělo obsahovat tečky ! Tyto "
+"jsou použity pro odkazování na data jiných modulů, jako module.reference_id"
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr "Přihlášovací jméno"
@@ -1162,6 +1201,8 @@
 "Access all the fields related to the current object using expressions, i.e. "
 "object.partner_id.name "
 msgstr ""
+"Přístup ke všem polím vztaženým k aktuálnímu objektu použitím výrazů, např. "
+"object.partner_id.name "
 
 #. module: base
 #: model:ir.model,name:base.model_res_country_state
@@ -1181,7 +1222,7 @@
 #. module: base
 #: field:ir.actions.wizard,name:0
 msgid "Wizard Info"
-msgstr ""
+msgstr "Informace průvodce"
 
 #. module: base
 #: view:base.language.export:0
@@ -1196,6 +1237,8 @@
 "Do not display this log if it belongs to the same object the user is working "
 "on"
 msgstr ""
+"Nezobrazovat tento záznam, pokud patří ke stejnému objektu, se kterým "
+"pracuje uživatel"
 
 #. module: base
 #: model:res.country,name:base.tp
@@ -1219,6 +1262,19 @@
 "%(user_signature)s\n"
 "%(company_name)s"
 msgstr ""
+"Datum : %(date)s\n"
+"\n"
+"Vážený %(partner_name)s,\n"
+"\n"
+"V příloze najdete upomínku vašich nezaplacených faktur s celkovou splatnou "
+"částkou:\n"
+"\n"
+"%(followup_amount).2f %(company_currency)s\n"
+"\n"
+"Děkujeme,\n"
+"--\n"
+"%(user_signature)s\n"
+"%(company_name)s"
 
 #. module: base
 #: field:res.currency,accuracy:0
@@ -1253,7 +1309,7 @@
 #. module: base
 #: help:ir.values,res_id:0
 msgid "Keep 0 if the action must appear on all resources."
-msgstr ""
+msgstr "Nechejte 0 pokud se musí akce objevit u všech zdrojů."
 
 #. module: base
 #: model:ir.model,name:base.model_ir_rule
@@ -1271,10 +1327,12 @@
 "Condition that is to be tested before action is executed, e.g. "
 "object.list_price > object.cost_price"
 msgstr ""
+"Podmínka, která musí být otestována před vykonáním akce, např. "
+"object.list_price > object.cost_price"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr " (kopie)"
@@ -1333,6 +1391,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1354,7 +1413,7 @@
 msgstr "Vzorec"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr "Nelze odstranit uživatele root!"
@@ -1365,8 +1424,9 @@
 msgstr "Malawi"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr "%s (kopie)"
@@ -1444,6 +1504,8 @@
 "When using CSV format, please also check that the first line of your file is "
 "one of the following:"
 msgstr ""
+"Prosíme zkontrolujte také, že první řádek vašeho souboru je následující, "
+"pokud je použit formát CSV."
 
 #. module: base
 #: code:addons/fields.py:114
@@ -1472,6 +1534,8 @@
 "This wizard will scan all module repositories on the server side to detect "
 "newly added modules as well as any change to existing modules."
 msgstr ""
+"Průvodce prozkoumá všechny repozitáře modulů na straně serveru pro zjištění "
+"nově přidaných modulů stejně jako změn existujících modulů."
 
 #. module: base
 #: field:res.company,logo:0
@@ -1500,11 +1564,12 @@
 msgstr "Bahamy"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
 msgstr ""
+"Nemůžu generovat další id, protože někteří partneři mají abecední id !"
 
 #. module: base
 #: view:ir.attachment:0
@@ -1538,6 +1603,8 @@
 "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND "
 "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )"
 msgstr ""
+"Příklad: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND "
+"GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_ui_view
@@ -1545,6 +1612,8 @@
 "Views allows you to personalize each view of OpenERP. You can add new "
 "fields, move fields, rename them or delete the ones that you do not need."
 msgstr ""
+"Pohledy vám umožňují přizpůsobit každý pohled OpenERP. Můžete přidat nové "
+"pole, přesunout pole, přejmenovat je nebo smazat ty, které nepotřebujete."
 
 #. module: base
 #: field:ir.actions.act_window,groups_id:0
@@ -1560,9 +1629,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr "Skupiny"
@@ -1579,6 +1646,10 @@
 "access to selected functionalities within the system. Click on 'Done' if you "
 "do not wish to add more users at this stage, you can always do this later."
 msgstr ""
+"Vytvoří dodatečné uživatele a přiřadí je do skupin, které vám umožní, aby "
+"měly přístup k vybraným funkcím v systému. Klikněte na 'Dokončeno', pokud "
+"již nechcete přidávat v této fázi další uživatele. Toto můžete vždy provést "
+"později."
 
 #. module: base
 #: model:res.country,name:base.bz
@@ -1601,9 +1672,11 @@
 "Comma-separated list of allowed view modes, such as 'form', 'tree', "
 "'calendar', etc. (Default: tree,form)"
 msgstr ""
+"Čárkou oddělený seznam vám umožní prohlížet režimy jako 'form', 'tree', "
+"'calendar', aj. (Výchozí: tree, form)"
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr "Dokument byl upraven od vašeho posledního prohlížení (%s:%d)"
@@ -1631,6 +1704,9 @@
 "order in Object, and you can have loop on the sales order line. Expression = "
 "`object.order_line`."
 msgstr ""
+"Zadejte pole/výraz, který vrátí seznam. Např. vyberte prodejní objednávku v "
+"objektu a můžete mít oprakování na řádcích prodejní objednávky. Výraz = "
+"`object.order_line`."
 
 #. module: base
 #: field:ir.property,fields_id:0
@@ -1650,8 +1726,6 @@
 msgstr "Faerské ostrovy"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr "Zjednodušené"
@@ -1659,7 +1733,7 @@
 #. module: base
 #: model:res.country,name:base.st
 msgid "Saint Tome (Sao Tome) and Principe"
-msgstr ""
+msgstr "¨"
 
 #. module: base
 #: selection:res.partner.address,type:0
@@ -1682,7 +1756,7 @@
 msgstr "Madagaskar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1742,6 +1816,8 @@
 "Provide the field name that the record id refers to for the write operation. "
 "If it is empty it will refer to the active id of the object."
 msgstr ""
+"Poskytuje jméno pole, na které odkazuje id záznamu, pro operaci zápisu. "
+"Pokud je prázdné tak odkazuje na aktivní id objektu."
 
 #. module: base
 #: model:res.country,name:base.zw
@@ -1860,10 +1936,11 @@
 #. module: base
 #: model:res.country,name:base.pk
 msgid "Pakistan"
-msgstr "Pakistán"
+msgstr "Pákistán"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr "Neplatná architektura objektu!"
@@ -1874,12 +1951,14 @@
 msgstr "Zprávy"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1911,7 +1990,7 @@
 msgstr "Nový Zéland"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -1977,7 +2056,7 @@
 msgstr "XSL"
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr "Nelze povýšit modul '%s'. Není nainstalován."
@@ -2032,6 +2111,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr "Typ bankovního účtu"
@@ -2048,8 +2128,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr "Obrázek"
 
@@ -2099,13 +2177,15 @@
 msgstr "Odvětví HR"
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
 "separated list of valid field names (optionally followed by asc/desc for the "
 "direction)"
 msgstr ""
+"Určeno neplatné \"pořadí\". Platné učení \"pořadí\" je čárkou oddělený "
+"seznam platných jmen polí (volitelně následovaný asc/desc pro směr)"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_module_module_dependency
@@ -2118,11 +2198,9 @@
 msgstr "Koncept"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
-msgstr "Rozšířený"
+msgstr "Rozšířené"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_title_contact
@@ -2131,6 +2209,9 @@
 "way you want to print them in letters and other documents. Some example: "
 "Mr., Mrs. "
 msgstr ""
+"Spravuje tituly kontaktů, které chcete mít dostupné ve vašem systému a "
+"způsob, jakým je tisknout na dopisech a jiných dokumentech. Některé "
+"příklady: Pan, Paní "
 
 #. module: base
 #: field:res.company,rml_footer1:0
@@ -2163,7 +2244,7 @@
 #. module: base
 #: field:ir.ui.menu,web_icon_hover:0
 msgid "Web Icon File (hover)"
-msgstr ""
+msgstr "Jméno webové ikony (vznášející se)"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -2191,6 +2272,8 @@
 "Please double-check that the file encoding is set to UTF-8 (sometimes called "
 "Unicode) when the translator exports it."
 msgstr ""
+"Prosíme dvakrát zkontrolujte, že kódování souboru je nastaveno na UTF-8 "
+"(někdy nazývané Unicode), když je překladatel exportoval."
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -2208,6 +2291,7 @@
 "Reference of the target resource, whose model/table depends on the 'Resource "
 "Name' field."
 msgstr ""
+"Odkaz cílového zdroje, jehož model/tabulka závisí na poli 'jméno zdroje'."
 
 #. module: base
 #: field:ir.model.fields,select_level:0
@@ -2260,7 +2344,7 @@
 msgstr "Pan"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr "Pro strukturu není definován pohled typu '%s'!"
@@ -2293,15 +2377,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr "Modul"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2351,8 +2435,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr "Hromadné zasílání mailů"
 
@@ -2362,7 +2446,7 @@
 msgstr "Mayotte"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr "Prosíme určete akci k vykonání !"
@@ -2412,13 +2496,13 @@
 msgstr "Pokud není nastaveno, chová se jako výchozí hodnota pro nové zdroje"
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr "Zjištěna rekurze."
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr "Chyba rekurze v závislostech modulů !"
@@ -2445,6 +2529,8 @@
 "Value Added Tax number. Check the box if the partner is subjected to the "
 "VAT. Used by the VAT legal statement."
 msgstr ""
+"Číslo daně s přidané hodnoty. Zaškrtněte políčko, pokud partner podléha DPH. "
+"Použito pro daňové přiznání DPH."
 
 #. module: base
 #: model:ir.model,name:base.model_maintenance_contract
@@ -2501,7 +2587,7 @@
 #. module: base
 #: field:res.partner,vat:0
 msgid "VAT"
-msgstr "DPH"
+msgstr "DIČ"
 
 #. module: base
 #: view:res.lang:0
@@ -2539,7 +2625,7 @@
 msgstr "M."
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2549,12 +2635,14 @@
 " %s"
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
 "document (Operation: read, Document type: %s)."
 msgstr ""
+"Operace zakázána díky přístupovým právům, nebo vykonáno nad již smazaným "
+"dokumentem (Operace: read, Typ dokumentu: %s)."
 
 #. module: base
 #: model:res.country,name:base.nr
@@ -2562,7 +2650,7 @@
 msgstr "Nauru"
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr "ID certifikátu modulu musí být jedinečné !"
@@ -2608,7 +2696,6 @@
 "jazykový balíček. Jazyky OpenERP jiné než oficiální lze nalézt na launchpadu."
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2641,7 +2728,7 @@
 msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr "Neplatná architektura!"
@@ -2779,6 +2866,8 @@
 #, python-format
 msgid "\"email_from\" needs to be set to send welcome mails to users"
 msgstr ""
+"\"email_from\" potřebuje být nastaveno pro odeslání uvítacích dopisů "
+"uživatelům"
 
 #. module: base
 #: selection:ir.translation,type:0
@@ -2833,6 +2922,8 @@
 "Optional help text for the users with a description of the target view, such "
 "as its usage and purpose."
 msgstr ""
+"Volitelný text nápovědy pro uživatele s popisem cílového pohledu, jako třeba "
+"jejich použití a účel."
 
 #. module: base
 #: model:res.country,name:base.va
@@ -2876,13 +2967,14 @@
 msgstr "Surinam"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr "Marketink"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr "Bankovní účet"
 
@@ -2923,7 +3015,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr "Model"
 
@@ -2959,6 +3053,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -2981,7 +3076,7 @@
 msgstr "%c - Odpovídající reprezentace data a času."
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -3017,6 +3112,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -3030,7 +3127,7 @@
 msgstr "Pravidla"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr "Snažíte se odebrat modul, který je instalovaný nebo bude instalován"
@@ -3104,7 +3201,7 @@
 msgstr "Lesotho"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr "Nemůžete odebrat model '%s' !"
@@ -3135,7 +3232,7 @@
 msgstr "Provedena konfigurace systému"
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr "Nastala chyba při ověřování polí %s: %s"
@@ -3171,7 +3268,8 @@
 msgstr "Benin"
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr "Tato smlouva je již v systému registrována."
@@ -3202,7 +3300,7 @@
 msgstr "API ID"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3287,7 +3385,7 @@
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "Affero GPL-3"
-msgstr ""
+msgstr "Affero GPL-3"
 
 #. module: base
 #: field:ir.sequence,number_next:0
@@ -3373,7 +3471,7 @@
 msgstr "Použít pro smazání"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr "Nelze přejmenovat sloupec %s, protože takový sloupec již existuje!"
@@ -3516,7 +3614,7 @@
 #. module: base
 #: model:res.country,name:base.kz
 msgid "Kazakhstan"
-msgstr "Kazakstán"
+msgstr "Kazachstán"
 
 #. module: base
 #: view:res.lang:0
@@ -3538,10 +3636,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3552,7 +3652,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3578,20 +3679,21 @@
 msgstr "Montserrat"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
 "provide an expression in the [('key','Label'), ...] format."
 msgstr ""
+"Výraz výběru voleb není platný Pythonovský výraz. Prosíme poskytněte výraz "
+"ve formátu [('klíč', 'Titulek'), ...]."
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_translation_app
 msgid "Application Terms"
-msgstr ""
+msgstr "Podmínky aplikace"
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3671,7 +3773,7 @@
 #. module: base
 #: model:res.country,name:base.sj
 msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
+msgstr "Ostrovy Svalbard a Jan Mayen"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_wizard
@@ -3683,7 +3785,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr "Seskupit podle"
@@ -3754,17 +3855,16 @@
 #. module: base
 #: model:res.country,name:base.um
 msgid "USA Minor Outlying Islands"
-msgstr ""
+msgstr "Menší odlehlé ostrovy USA"
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr "Typ banky"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr "Jméno skupiny nemůže začínat s \"-\""
@@ -3786,7 +3886,7 @@
 msgstr "Gujarati / ગુજરાતી"
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3796,7 +3896,7 @@
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
 msgid "Please enter the serial key provided in your contract document:"
-msgstr "Prosíme zadejte sériové číslo poskytnuté ve dokumentu vaší smlouvy:"
+msgstr "Prosíme zadejte sériové číslo poskytnuté v dokumentu vaší smlouvy:"
 
 #. module: base
 #: view:workflow.activity:0
@@ -3818,7 +3918,7 @@
 #. module: base
 #: model:ir.actions.act_window,name:base.act_values_form
 msgid "Client Actions Connections"
-msgstr ""
+msgstr "Nastavení akcí klienta"
 
 #. module: base
 #: field:ir.attachment,res_name:0
@@ -3837,9 +3937,9 @@
 msgstr "Guadeloupe (Francouzské)"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr "Chyba uživatele"
@@ -3851,6 +3951,9 @@
 "form, signal tests the name of the pressed button. If signal is NULL, no "
 "button is necessary to validate this transition."
 msgstr ""
+"Když je operace přechodu přijde ze stisknutého tlačítka v klientském "
+"formuláři, signal otestuje jméno stisknutého tlačítka. Pokud je signál NULL, "
+"žádné tlačítko není potřeba ověřovat tímto přechodem."
 
 #. module: base
 #: help:multi_company.default,object_id:0
@@ -3880,7 +3983,7 @@
 #. module: base
 #: model:res.country,name:base.my
 msgid "Malaysia"
-msgstr ""
+msgstr "Malajsie"
 
 #. module: base
 #: view:base.language.install:0
@@ -3910,6 +4013,8 @@
 "Whether values for this field can be translated (enables the translation "
 "mechanism for that field)"
 msgstr ""
+"Zda lze překládat hodnoty tohoto pole (povoluje překladový mechanizmus pro "
+"toto pole)"
 
 #. module: base
 #: view:res.lang:0
@@ -3928,6 +4033,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -3946,7 +4052,7 @@
 msgstr "Převodník měn"
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr "Neplatné ID pro záznam procházení, máme %r, očekáván integer."
@@ -3955,7 +4061,7 @@
 #: model:ir.actions.act_window,name:base.action_partner_addess_tree
 #: view:res.partner:0
 msgid "Partner Contacts"
-msgstr "Kontakty společníka"
+msgstr "Kontakty partnera"
 
 #. module: base
 #: field:base.module.update,add:0
@@ -4004,7 +4110,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -4043,7 +4149,7 @@
 #. module: base
 #: model:res.country,name:base.fj
 msgid "Fiji"
-msgstr "Fiji"
+msgstr "Fidži"
 
 #. module: base
 #: field:ir.model.fields,size:0
@@ -4053,7 +4159,7 @@
 #. module: base
 #: model:res.country,name:base.sd
 msgid "Sudan"
-msgstr "Sudan"
+msgstr "Súdán"
 
 #. module: base
 #: model:res.country,name:base.fm
@@ -4066,7 +4172,6 @@
 msgstr "Historie požadavku"
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4102,7 +4207,7 @@
 #. module: base
 #: view:ir.module.module:0
 msgid "Defined Reports"
-msgstr "Definoavné výkazy"
+msgstr "Definované výkazy"
 
 #. module: base
 #: view:ir.actions.report.xml:0
@@ -4113,6 +4218,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4166,7 +4272,6 @@
 msgstr "Mapování objektů"
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr "Kurz měny ke kurzu měny 1"
@@ -4178,15 +4283,13 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr "res_config_contents"
 
 #. module: base
 #: help:res.partner.category,active:0
 msgid "The active field allows you to hide the category without removing it."
-msgstr ""
+msgstr "Aktivní pole vám umožní skrýt kategorii bez jejího odebrání."
 
 #. module: base
 #: report:ir.module.reference.graph:0
@@ -4208,7 +4311,7 @@
 #. module: base
 #: help:ir.actions.act_window,auto_refresh:0
 msgid "Add an auto-refresh on the view"
-msgstr ""
+msgstr "Přidá automatické obnovení u pohledu"
 
 #. module: base
 #: help:res.partner,employee:0
@@ -4238,7 +4341,7 @@
 msgstr "ir.attachment"
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4263,11 +4366,13 @@
 "Provide the field name where the record id is stored after the create "
 "operations. If it is empty, you can not track the new record."
 msgstr ""
+"Poskytuje jméno pole, kde je uloženo id záznamu po operacích vytvoření. "
+"Pokud je prázdné, nemůžete sledovat nové záznamy."
 
 #. module: base
 #: help:ir.model.fields,relation:0
 msgid "For relationship fields, the technical name of the target model"
-msgstr ""
+msgstr "Pro vztažené pole, technické jméno cílového modelu"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4282,7 +4387,7 @@
 #. module: base
 #: view:ir.translation:0
 msgid "Source Term"
-msgstr ""
+msgstr "Podmínky zdrojového kódu"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_main_pm
@@ -4292,12 +4397,12 @@
 #. module: base
 #: field:ir.ui.menu,web_icon_hover_data:0
 msgid "Web Icon Image (hover)"
-msgstr ""
+msgstr "Obrázek webové ikona (vznášející se)"
 
 #. module: base
 #: view:base.module.import:0
 msgid "Module file successfully imported!"
-msgstr ""
+msgstr "Soubor modulu úspěšně importován!"
 
 #. module: base
 #: selection:ir.actions.todo,state:0
@@ -4343,9 +4448,10 @@
 #. module: base
 #: help:ir.actions.server,trigger_obj_id:0
 msgid "Select the object from the model on which the workflow will executed."
-msgstr ""
+msgstr "Vyberte objekty z modelu, u kterého bude vykonán pracovní tok."
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr "Zaměstnanec"
@@ -4356,7 +4462,10 @@
 msgstr "Vytvořit přístup"
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr "Fed. stát"
 
@@ -4378,11 +4487,9 @@
 #. module: base
 #: model:res.country,name:base.io
 msgid "British Indian Ocean Territory"
-msgstr ""
+msgstr "Teritorium indických britských ostrovů"
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr "Rozhraní"
@@ -4395,10 +4502,9 @@
 #. module: base
 #: view:publisher_warranty.contract:0
 msgid "Refresh Validation Dates"
-msgstr ""
+msgstr "Obnovit data platnosti"
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr "Typ pole"
@@ -4430,8 +4536,6 @@
 msgstr "Vietnam"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr "Podpis"
@@ -4469,7 +4573,7 @@
 msgstr "Nepravda znamená pro všechny uživatele"
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr "Jméno modulu musí být jedinečné !"
@@ -4486,8 +4590,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr "Zpráva"
@@ -4510,7 +4614,7 @@
 msgstr "Kontakty"
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4523,7 +4627,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr "Použít plánované povýšení"
@@ -4550,17 +4653,22 @@
 "OpenERP. They are launched during the installation of new modules, but you "
 "can choose to restart some wizards manually from this menu."
 msgstr ""
+"Potvrzovací průvodce je použit, aby vám pomohl nastavit novou instanci "
+"OpenERP. Je spuštěn během instalace nových modulů, ale nemůžet zvolit ručně "
+"z této nabídky restart některých průvodců."
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
 "change your own password."
 msgstr ""
+"Ke změně vašeho vlastního hesla prosíme použijte průvodce změny hesla (v "
+"uživatelských předvolbách nebo uživatelské nabídce)."
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr "Nedostatek polí pro zobraznení kalendáře!"
@@ -4576,9 +4684,10 @@
 "The path to the main report file (depending on Report Type) or NULL if the "
 "content is in another data field"
 msgstr ""
+"Cesta k hlavnímu souboru výkazu (závisí na typu výkazu) nebo NULL, pokud "
+"obsah je jiné datové pole"
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr "Společnost, pro kterou uživatel aktuálně pracuje."
@@ -4601,7 +4710,7 @@
 #. module: base
 #: model:res.country,name:base.na
 msgid "Namibia"
-msgstr "Nambie"
+msgstr "Namibie"
 
 #. module: base
 #: model:res.country,name:base.mn
@@ -4629,8 +4738,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr "Zavřít"
 
@@ -4707,6 +4814,8 @@
 "federal states you are working on from here. Each state is attached to one "
 "country."
 msgstr ""
+"Pokud pracujete na Americkém trhu, můžete odsud spravovat různé federální "
+"státy, se kterými pracujete. Každý stát je přiřazen k jedné zemi."
 
 #. module: base
 #: view:workflow.workitem:0
@@ -4716,11 +4825,11 @@
 #. module: base
 #: model:res.country,name:base.vc
 msgid "Saint Vincent & Grenadines"
-msgstr ""
+msgstr "Svatý Vincent & Grenady"
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr "Heslo"
@@ -4745,6 +4854,7 @@
 msgid ""
 "If this log item has been read, get() should not send it to the client"
 msgstr ""
+"Pokud byla tato položka záznamu přečtena, get() by ji neměl odeslat klientovi"
 
 #. module: base
 #: field:res.company,rml_header2:0
@@ -4755,7 +4865,7 @@
 #. module: base
 #: field:ir.actions.act_window,search_view_id:0
 msgid "Search View Ref."
-msgstr ""
+msgstr "Odkaz hledacího pohledu"
 
 #. module: base
 #: field:ir.module.module,installed_version:0
@@ -4784,7 +4894,7 @@
 #. module: base
 #: model:res.country,name:base.mm
 msgid "Myanmar"
-msgstr "Barma"
+msgstr "Myanmar"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4793,6 +4903,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4824,7 +4935,7 @@
 msgstr "Změnit moje předvolby"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr "Neplatné jméno modulu v definici akce."
@@ -4862,7 +4973,7 @@
 #. module: base
 #: model:res.country,name:base.cc
 msgid "Cocos (Keeling) Islands"
-msgstr ""
+msgstr "Kokosové ostrovy"
 
 #. module: base
 #: selection:base.language.install,state:0
@@ -4887,7 +4998,7 @@
 msgstr "Němčina / Nederlands"
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -4935,7 +5046,7 @@
 msgstr "Štítky"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr "email odesílatele"
 
@@ -4955,7 +5066,6 @@
 msgstr "Francouzština (CH) / Français (CH)"
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -4976,7 +5086,7 @@
 msgstr "Metoda exists není realizována pro tento objekt !"
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -5001,7 +5111,6 @@
 msgstr "base.update.translations"
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr "Nadřazená kategorie"
@@ -5014,7 +5123,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr "Kontaktní"
 
@@ -5051,7 +5159,7 @@
 msgstr "ir.server.object.lines"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr "Modul %s: Neplatný certifikát kvality"
@@ -5073,6 +5181,9 @@
 "Keep empty to not save the printed reports. You can use a python expression "
 "with the object and time variables."
 msgstr ""
+"Toto je jméno souboru přílohy použité pro uchování výsledku tisku. "
+"Ponechejte prázdné pro neuložení tisknutých výkazů. Můžete použít výraz "
+"pythonu s objekty a časy proměnných."
 
 #. module: base
 #: selection:ir.property,type:0
@@ -5085,7 +5196,7 @@
 msgstr "Nigérie"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr "Volby výběru musí být dány pro vybraná pole."
@@ -5124,6 +5235,8 @@
 #: help:ir.actions.server,name:0
 msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices"
 msgstr ""
+"Jednoduše odkazovaná jméno akce např. Jedena prodejní objednávka -> Mnoho "
+"faktur"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_address_form
@@ -5181,7 +5294,7 @@
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Introspection report on objects"
-msgstr ""
+msgstr "Výkaz vnitřního náhledu objektů"
 
 #. module: base
 #: model:res.country,name:base.pf
@@ -5222,6 +5335,8 @@
 "Invalid value for reference field \"%s\" (last part must be a non-zero "
 "integer): \"%s\""
 msgstr ""
+"Neplatná hodnota pole odkazu \"%s\" (poslední část musí být nenulové číslo): "
+"\"%s\""
 
 #. module: base
 #: help:ir.cron,args:0
@@ -5235,6 +5350,9 @@
 "groups. If this field is empty, OpenERP will compute visibility based on the "
 "related object's read access."
 msgstr ""
+"Pokud máte skupiny, viditelnost této nabídky bude založena na těchto "
+"skupinách. Pokud je toto pole prázdné, OpenERP spočítá viditelnost na "
+"základě přístupu pro čtení vztažených objektů."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_ui_view_custom
@@ -5259,14 +5377,15 @@
 msgstr "Aktualizovat seznam modulů"
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
+"Modul \"%s\" nelze povýšit, protože vnější závislost nebyla vyhověna: %s"
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5286,7 +5405,7 @@
 msgstr "Thajština / ภาษาไทย"
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr "Objekt %s neexistuje"
@@ -5325,7 +5444,7 @@
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install
 msgid "Module Upgrade Install"
-msgstr ""
+msgstr "Instalace povýšení modulu"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_configuration_wizard
@@ -5375,7 +5494,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr "Importovat modul"
 
@@ -5422,8 +5540,8 @@
 msgstr "Iterace"
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr "UserError"
@@ -5441,10 +5559,10 @@
 #. module: base
 #: model:res.country,name:base.re
 msgid "Reunion (French)"
-msgstr ""
+msgstr "Reunion (Francouzský)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5460,20 +5578,20 @@
 #. module: base
 #: model:res.country,name:base.mp
 msgid "Northern Mariana Islands"
-msgstr "Severní Mariánské ostrovy"
+msgstr "Severní Mariany"
 
 #. module: base
 #: model:res.country,name:base.sb
 msgid "Solomon Islands"
-msgstr "Šalamounovy Ostrovy"
+msgstr "Šalamounovy ostrovy"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr "AccessError"
@@ -5532,7 +5650,6 @@
 msgstr "Tonga"
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr "Kategorie modulu"
@@ -5566,6 +5683,10 @@
 "Warning: if \"email_from\" and \"smtp_server\" aren't configured, it won't "
 "be possible to email new users."
 msgstr ""
+"Pokud je zadán email, uživateli bude zaslán uvítací email.\n"
+"\n"
+"Varování: pokud \"email_from\" a \"smtp_server\" nejsou nastaveny, nebude "
+"možné odeslat email novým uživatelům."
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5590,7 +5711,7 @@
 #. module: base
 #: model:res.country,name:base.bn
 msgid "Brunei Darussalam"
-msgstr ""
+msgstr "Brunei Darussalam"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -5657,7 +5778,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5666,7 +5786,7 @@
 #. module: base
 #: model:res.country,name:base.gm
 msgid "Gambia"
-msgstr "Gambia"
+msgstr "Gambie"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_company_form
@@ -5674,8 +5794,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr "Společnosti"
@@ -5691,13 +5809,13 @@
 msgstr "res.widget"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr "Model %s neexistuje!"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr "Nemůžete smazat jazyk, který mají uživatelé jako upřednostňovaný !"
@@ -5716,13 +5834,13 @@
 msgstr "Kód Pythonu"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr "Nelze vytvořit soubor modulu: %s !"
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr "Jádro OpenERP potřebné pro všechny instalace."
 
@@ -5733,9 +5851,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr "Zrušit"
@@ -5842,7 +5962,7 @@
 "pro ostatní pohledy"
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr "Klikněte na 'Pokračovat' k nastavení dašlího doplňku..."
@@ -5858,7 +5978,6 @@
 msgstr "Honduras"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -5904,13 +6023,12 @@
 msgstr "Popis polí"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -5950,7 +6068,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr "Základ"
@@ -5985,9 +6103,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr "Hodnota"
 
@@ -5995,7 +6111,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr "Kód"
@@ -6021,7 +6136,6 @@
 msgstr "Nápověda"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6086,7 +6200,7 @@
 #: help:ir.translation,module:0
 #: help:ir.translation,xml_id:0
 msgid "Maps to the ir_model_data for which this translation is provided."
-msgstr ""
+msgstr "Mapy k ir_model_data, pro který je poskytnut tento překlad."
 
 #. module: base
 #: view:workflow.activity:0
@@ -6105,7 +6219,8 @@
 msgstr "Islamský stát Afgánistán"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr "Chyba !"
@@ -6127,13 +6242,14 @@
 msgstr "Druh"
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr "Tato metoda již neexistuje"
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr "Fax"
@@ -6200,7 +6316,6 @@
 "Skupina, pro kterou musí být uživatel autorizován k ověření této změny."
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6236,7 +6351,6 @@
 msgstr "Pravidla záznamů"
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr "Uživatelské jméno"
@@ -6304,7 +6418,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr "Provedeno"
 
@@ -6327,6 +6440,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6355,9 +6469,7 @@
 msgstr "Estónština / Eesti keel"
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr "E-mail"
 
@@ -6389,6 +6501,8 @@
 "Manage the partner titles you want to have available in your system. The "
 "partner titles is the legal status of the company: Private Limited, SA, etc."
 msgstr ""
+"Spravuje tituly partnerů, které chcete mít dostupné ve vašem systému. Titul "
+"partnerů je zákonná forma společnosti: s.r.o., a.s., aj."
 
 #. module: base
 #: view:base.language.export:0
@@ -6396,7 +6510,7 @@
 msgstr "K procházení oficiálních překladů můžete začít s těmito odkazy:"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6407,10 +6521,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr "Adresa"
 
@@ -6427,7 +6538,7 @@
 #. module: base
 #: model:res.country,name:base.mr
 msgid "Mauritania"
-msgstr "Mauretánie"
+msgstr "Mauritánie"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_translation
@@ -6478,6 +6589,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr "Výchozí hodnota"
 
@@ -6489,10 +6601,10 @@
 #. module: base
 #: model:res.country,name:base.kn
 msgid "Saint Kitts & Nevis Anguilla"
-msgstr ""
+msgstr "Saint Kitts & Nevis Anguilla"
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6509,11 +6621,11 @@
 "Customized views are used when users reorganize the content of their "
 "dashboard views (via web client)"
 msgstr ""
+"Přizpůsobené pohledy jsou použity, pokud uživatelů přeorganizují obsah "
+"jejich pohledů nástěnek (přes webového klienta)"
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr "Jméno objektu"
 
@@ -6523,6 +6635,8 @@
 "Object in which you want to create / write the object. If it is empty then "
 "refer to the Object field."
 msgstr ""
+"Objekt, ve kterém chcete vytvořit / zapsat objekt. Pokud je prázdné, pak "
+"odkazuje na pole objektu."
 
 #. module: base
 #: view:ir.module.module:0
@@ -6592,7 +6706,7 @@
 msgstr "Samoa"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6603,7 +6717,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6617,15 +6730,15 @@
 msgstr "ID potomků"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr "Problém s nastavením `Record Id` v akci serveru!"
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr "ValidateError"
@@ -6667,19 +6780,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr "Email"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr "Hlavní Akce"
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6689,6 +6802,7 @@
 "Nemůžeme vykreslit koláčový graf !"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6703,7 +6817,7 @@
 #. module: base
 #: model:res.country,name:base.tg
 msgid "Togo"
-msgstr ""
+msgstr "Togo"
 
 #. module: base
 #: selection:ir.module.module,license:0
@@ -6787,7 +6901,6 @@
 msgstr "Propojený režim"
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr "Časová zóna"
@@ -6801,7 +6914,7 @@
 #. module: base
 #: model:res.partner.title,shortcut:base.res_partner_title_miss
 msgid "Mss"
-msgstr ""
+msgstr "Paní"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_ui_view
@@ -6830,7 +6943,7 @@
 msgstr "Nástěnka správy HR"
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6851,9 +6964,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr "Jméno akce"
 
@@ -6867,12 +6980,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr "Normální"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr "Ulice 2"
@@ -6891,10 +7006,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -6940,7 +7056,7 @@
 #. module: base
 #: model:res.country,name:base.wf
 msgid "Wallis and Futuna Islands"
-msgstr ""
+msgstr "Ostrovy Wallis a Futuna"
 
 #. module: base
 #: selection:server.action.create,init,type:0
@@ -6958,14 +7074,13 @@
 msgstr "Načíst"
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr "Skutečné jméno nového uživatele použité pro hledání a procházení"
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr "Chyba integrity"
@@ -6976,7 +7091,7 @@
 msgstr "ir.wizard.screen"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr "Velikost pole nikdy nemůže být menší než 1 !"
@@ -7015,7 +7130,7 @@
 msgstr "Parametry"
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr "ID databáze neexistuje: %s : %s"
@@ -7031,7 +7146,7 @@
 msgstr "GPL Version 3"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr "klíč '%s' nenalezen ve výběru pole '%s'"
@@ -7100,7 +7215,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7119,6 +7237,7 @@
 msgstr "Tunisko"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr "Výroba"
@@ -7161,7 +7280,7 @@
 msgstr "Kopírovat objekt"
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7194,19 +7313,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7215,7 +7329,7 @@
 msgstr "Objekt"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7254,14 +7368,18 @@
 "Number of time the function is called,\n"
 "a negative number indicates no limit"
 msgstr ""
+"Počet kolikrát je volána funkce,\n"
+"záporné číslo vyjadřuje bez limitu"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
 "create it again!"
 msgstr ""
+"Změna typu sloupce ještě není podporována. Prosíme smažte jej a opět "
+"vytvořte!"
 
 #. module: base
 #: field:ir.ui.view_sc,user_id:0
@@ -7269,7 +7387,7 @@
 msgstr "Ref. uživatele"
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr "Varování !"
@@ -7287,6 +7405,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr "Nastavení"
 
@@ -7319,7 +7438,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7349,19 +7467,16 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
 #: field:workflow.workitem,state:0
 msgid "State"
-msgstr "Stát"
+msgstr "Stav"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -7392,7 +7507,7 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_10
 msgid "Open Source Service Company"
-msgstr ""
+msgstr "Open Source servisní společnost"
 
 #. module: base
 #: model:res.country,name:base.kg
@@ -7415,7 +7530,7 @@
 msgstr "workflow.triggers"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr "Neplatné podmínky hledání"
@@ -7442,7 +7557,7 @@
 #. module: base
 #: model:res.country,name:base.hm
 msgid "Heard and McDonald Islands"
-msgstr ""
+msgstr "Ostrovy Heard a McDonald"
 
 #. module: base
 #: field:ir.actions.act_window,view_id:0
@@ -7463,6 +7578,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7473,7 +7589,7 @@
 msgstr "Typ akce"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7495,7 +7611,8 @@
 msgstr "Typ polí"
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr "Kategorie"
@@ -7571,7 +7688,7 @@
 msgstr "workflow.instance"
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr "Neznámá vlastnost %s v %s "
@@ -7582,7 +7699,7 @@
 msgstr "10. %S              ==> 20"
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr "nedefinována metoda get !"
@@ -7605,7 +7722,7 @@
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_madam
 msgid "Madam"
-msgstr "Dáma"
+msgstr "Paní"
 
 #. module: base
 #: model:res.country,name:base.ee
@@ -7613,7 +7730,8 @@
 msgstr "Estonsko"
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr "Nástěnky"
 
@@ -7631,7 +7749,7 @@
 #. module: base
 #: model:res.country,name:base.nl
 msgid "Netherlands"
-msgstr "Nizozemí"
+msgstr "Nizozemsko"
 
 #. module: base
 #: model:ir.ui.menu,name:base.next_id_4
@@ -7711,6 +7829,8 @@
 "Important when you deal with multiple actions, the execution order will be "
 "decided based on this, low number is higher priority."
 msgstr ""
+"Důležité, pokud se vypořádáváte s více akcemi, pořadí vykonání bude "
+"rozhodnuto na základě tohoto, nízké číslo má vyšší přednost."
 
 #. module: base
 #: field:ir.actions.report.xml,header:0
@@ -7733,6 +7853,7 @@
 msgstr "Chorvatština / hrvatski jezik"
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr "Přepsat existující výrazy"
@@ -7780,12 +7901,11 @@
 msgstr "Tělo"
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr "Poslat e-mail"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr "Akce nabídky"
@@ -7809,6 +7929,8 @@
 "Indicates whether this object model lives in memory only, i.e. is not "
 "persisted (osv.osv_memory)"
 msgstr ""
+"Indikuje, zda je tento model objektu je udržován pouze v paměti, např. není "
+"trvalý (osv.osv_memory)"
 
 #. module: base
 #: field:res.partner,child_ids:0
@@ -7852,6 +7974,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr "Přístupová práva"
 
@@ -7887,10 +8011,13 @@
 "loading a new language it becomes available as default interface language "
 "for users and partners."
 msgstr ""
+"Tento průvodce vám pomůže přidat nový jazyk do vašeho systému OpenERP. Po "
+"načtení se nový jazyk stane dostupným jako výchozí jazyk rozhraní pro "
+"uživatele a partnery."
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr "Předmět"
@@ -7927,12 +8054,12 @@
 "plánovač."
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
 "format!"
-msgstr ""
+msgstr "Výraz výběru voleb musí být ve formátu [('key','Label'], ...]!"
 
 #. module: base
 #: view:ir.actions.report.xml:0
@@ -7970,6 +8097,8 @@
 "Create and manage the companies that will be managed by OpenERP from here. "
 "Shops or subsidiaries can be created and maintained from here."
 msgstr ""
+"Vytváří a spravuje společnosti, které budou odsud spravovány OpenERP. "
+"Obchody nebo pobočky mohou být vytvořeny a spravovány odsud."
 
 #. module: base
 #: model:res.country,name:base.id
@@ -7983,6 +8112,9 @@
 "you can then add translations manually or perform a complete export (as a "
 "template for a new language example)."
 msgstr ""
+"Tento průvodce zjistí nové termíny k překladu v aplikaci, takže pak budete "
+"moci ručně přidávat překlady nebo vykonávat celkové exporty (jako šablonu "
+"pro příklad nového jazyka)"
 
 #. module: base
 #: help:multi_company.default,expression:0
@@ -7990,6 +8122,8 @@
 "Expression, must be True to match\n"
 "use context.get or user (browse)"
 msgstr ""
+"Výraz musí být Pravda, aby odpovídal\n"
+"použitému kontextu.get nebo user (procházet)"
 
 #. module: base
 #: model:res.country,name:base.bg
@@ -8037,7 +8171,6 @@
 msgstr "s.r.o."
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr "ID objektu"
@@ -8048,7 +8181,8 @@
 msgstr "Naležato"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr "Správa"
 
@@ -8086,7 +8220,6 @@
 msgstr "Symbol"
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr "Použito k záznamu do systému"
@@ -8112,6 +8245,7 @@
 msgstr "Irák"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr "Asociace"
@@ -8119,7 +8253,7 @@
 #. module: base
 #: model:res.country,name:base.cl
 msgid "Chile"
-msgstr "Čile"
+msgstr "Chile"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_address_book
@@ -8144,7 +8278,7 @@
 msgstr "Číslo účtu"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr "Nelze odstranit základní jazyk 'en_US' !"
@@ -8167,7 +8301,7 @@
 #. module: base
 #: model:res.country,name:base.dj
 msgid "Djibouti"
-msgstr "Djibouti"
+msgstr "Džibutsko"
 
 #. module: base
 #: field:ir.translation,value:0
@@ -8180,12 +8314,14 @@
 msgstr "Antigua a Barbuda"
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
 "document (Operation: %s, Document type: %s)."
 msgstr ""
+"Operace zakázána díky přístupovým právům nebo prováděna na již smazaném "
+"dokumentu (Operace: %s, Typ dokumentu: %s)."
 
 #. module: base
 #: model:res.country,name:base.zr
@@ -8193,7 +8329,6 @@
 msgstr "Zaire"
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8217,7 +8352,11 @@
 msgstr "Aktualizovat seznam modulů"
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr "Jiné"
 
@@ -8245,7 +8384,7 @@
 msgstr "Automaticky obnovit"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr "Pole osv_memory může být pouze porovnáno s operátory = a !=."
@@ -8272,7 +8411,7 @@
 msgstr "Pravidla nejsou podporována pro osv_memory objects !"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr "Uspořádání událostí"
@@ -8302,7 +8441,8 @@
 msgstr "Chorvatsko"
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr "Identifikační kód banky"
 
@@ -8312,33 +8452,34 @@
 msgstr "Turkmenistán"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr "Chyba"
@@ -8346,12 +8487,12 @@
 #. module: base
 #: model:res.country,name:base.pm
 msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre a Miquelon"
+msgstr "Svatý Pierre a Miquelon"
 
 #. module: base
 #: help:ir.actions.report.xml,header:0
 msgid "Add or not the coporate RML header"
-msgstr ""
+msgstr "Přidat nebo nepřidat RML hlavičku společnosti"
 
 #. module: base
 #: help:workflow.transition,act_to:0
@@ -8360,6 +8501,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr "Aktualizovat"
@@ -8429,7 +8571,6 @@
 msgstr "Kontrola Ean"
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr "Nemůžete mít dva uživatele se stejným přihlašovacím jménem !"
@@ -8445,7 +8586,6 @@
 msgstr "Odeslat"
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr "Tipy nabídky"
@@ -8478,6 +8618,8 @@
 "Save this document to a .tgz file. This archive containt UTF-8 %s files and "
 "may be uploaded to launchpad."
 msgstr ""
+"Uložit tento dokument do souboru .tgz. Tento archív obsahuje souboru UTF-8 "
+"%s a může být nahrán do launchpadu."
 
 #. module: base
 #: view:base.module.upgrade:0
@@ -8512,17 +8654,19 @@
 msgstr "Srbština (Cyrilský) / српски"
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
 "A group_by specification must be a list of valid fields."
 msgstr ""
+"Neplatná označení group_by: \"%s\".\n"
+"Označení group_by musí být seznam platných polí."
 
 #. module: base
 #: model:res.country,name:base.sa
 msgid "Saudi Arabia"
-msgstr "Saudská Arábie"
+msgstr "Saúdská Arábie"
 
 #. module: base
 #: help:res.partner,supplier:0
@@ -8530,8 +8674,11 @@
 "Check this box if the partner is a supplier. If it's not checked, purchase "
 "people will not see it when encoding a purchase order."
 msgstr ""
+"Zaškrtněte toto políčko, pokud je partner dodavatel. Pokud není zaškrtnuto, "
+"nakupující osoby ho neuvidí, když zadávají nákupní objednávku."
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr "Pole odkaz"
@@ -8542,7 +8689,7 @@
 msgstr "Záznamy událostí"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr "Nastavení systému provedeno"
@@ -8590,7 +8737,7 @@
 msgstr "Typ akce nebo tlačítka na straně klienta, která vyvolá akci."
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr "Chyba ! Nemůžete vytvořit rekurzivní nabídku."
@@ -8608,6 +8755,8 @@
 "3. If user belongs to several groups, the results from step 2 are combined "
 "with logical OR operator"
 msgstr ""
+"3. Pokud uživatel patří do více skupin, výsledky z kroku 2 jsou kombinovány "
+"s logickým operátorem OR"
 
 #. module: base
 #: code:addons/base/publisher_warranty/publisher_warranty.py:145
@@ -8619,10 +8768,11 @@
 #. module: base
 #: model:res.country,name:base.sv
 msgid "El Salvador"
-msgstr "El Salvador"
+msgstr "Salvador"
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8632,12 +8782,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8723,6 +8871,11 @@
 "be assigned to specific groups in order to make them accessible to some "
 "users within the system."
 msgstr ""
+"Spravuje a přizpůsobuje položky dostupné a zobrazované ve vaší nabídce "
+"systému OpenERP. Můžete mazat položky kliknutím na políčko na začátku "
+"každého řádku a pak jej smazat přes zjevené tlačítko. Položky mohou být "
+"přiřazeny k určitým skupinám za účelem nechání je přistupnými některým "
+"uživatelům v systému."
 
 #. module: base
 #: field:ir.ui.view,field_parent:0
@@ -8733,6 +8886,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8757,16 +8911,17 @@
 #. module: base
 #: field:ir.model.fields,view_load:0
 msgid "View Auto-Load"
-msgstr ""
+msgstr "Zobrazit automatické načtení"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr "Nemůžete odebrat pole '%s' !"
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -8803,7 +8958,7 @@
 "(GetText Portable Objects)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -8821,7 +8976,7 @@
 #: field:base.language.export,name:0
 #: field:ir.attachment,datas_fname:0
 msgid "Filename"
-msgstr ""
+msgstr "Jméno souboru"
 
 #. module: base
 #: field:ir.model,access_ids:0
@@ -8850,7 +9005,7 @@
 msgstr "Argentina"
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr "Jméno skupiny"
 
@@ -8872,10 +9027,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -8899,7 +9054,7 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_aftersale
 msgid "After-Sale Services"
-msgstr ""
+msgstr "Poprodejní služby"
 
 #. module: base
 #: view:ir.actions.todo:0
@@ -8919,7 +9074,7 @@
 #. module: base
 #: model:res.country,name:base.jm
 msgid "Jamaica"
-msgstr "Jamaika"
+msgstr "Jamajka"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_category_form
@@ -8929,6 +9084,10 @@
 "categories have a hierarchy structure: a partner belonging to a category "
 "also belong to his parent category."
 msgstr ""
+"Spravuje kategorie partnerů v pořadí pro jejich lepší třídění pro účely "
+"sledování a analýzy. Partner může patřit do několika kategorií a kategorie "
+"mají hierarchickou strukturu: partner patřící do kategorie také může patřit "
+"do jeho nadřazené kategorie."
 
 #. module: base
 #: model:res.country,name:base.az
@@ -8936,7 +9095,8 @@
 msgstr "Ázerbájdžán"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr "Varování"
@@ -8975,6 +9135,10 @@
 "uncheck the 'Suppliers' filter button in order to search in all your "
 "partners, including customers and prospects."
 msgstr ""
+"Můžete přistupovat ke všem informacím ohledně vašich dodavatelů z formuláče "
+"dodavatele: účetní data, historie emailů, setkání, nákupy, aj. Můžete "
+"odškrtnout filtrovací tlačítko 'Dodavatelé' za účelem hledání ve všech "
+"vašich partnerech, včetně zákazníků a vyhlídek."
 
 #. module: base
 #: model:res.country,name:base.rw
@@ -9023,10 +9187,14 @@
 "simplified interface, which has less features but is easier. You can always "
 "switch later from the user preferences."
 msgstr ""
+"Pokud používáte OpenERP poprvé, silně vám doporučujeme vybrat si "
+"zjednodušené rozhraní, které má méně funkcí a je snadnější. Vždycky můžete "
+"později přepnout z uživatelských předvoleb."
 
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -9053,6 +9221,8 @@
 "1. Global rules are combined together with a logical AND operator, and with "
 "the result of the following steps"
 msgstr ""
+"1. Globální pravidla jsou kombinována společně s logickým operátorem AND, a "
+"s výsledky následujících kroků"
 
 #. module: base
 #: field:res.partner.category,name:0
@@ -9094,7 +9264,7 @@
 msgstr "Na výšku"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr "Lze přejmenovat pouze jeden sloupec najednou!"
@@ -9133,6 +9303,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9170,6 +9342,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr "Podmínka"
@@ -9243,7 +9416,11 @@
 msgstr "Seychelské ostrovy"
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr "Bankovní účty"
@@ -9265,12 +9442,12 @@
 msgstr "Ostrovy Turks a Caicos"
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr "Vlastník účtu"
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr "Varování přepnutí společnosti"
@@ -9292,7 +9469,6 @@
 msgstr "Další číslo posloupnosti bude zvýšeno o toto číslo"
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9330,7 +9506,7 @@
 msgstr "Instance pracovních postupů"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr "Společníci: "

=== modified file 'bin/addons/base/i18n/da.po'
--- bin/addons/base/i18n/da.po	2011-05-30 05:40:37 +0000
+++ bin/addons/base/i18n/da.po	2012-05-09 12:37:21 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-01-11 11:14+0000\n"
-"PO-Revision-Date: 2011-05-29 20:17+0000\n"
-"Last-Translator: Henning Dinsen <Unknown>\n"
+"PO-Revision-Date: 2011-11-11 09:59+0000\n"
+"Last-Translator: OpenERP Danmark / Mikhael Saxtorph <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: 2011-05-30 05:40+0000\n"
-"X-Generator: Launchpad (build 12959)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:42+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -29,12 +29,12 @@
 #. module: base
 #: model:res.country,name:base.sh
 msgid "Saint Helena"
-msgstr "Sankt Helena"
+msgstr "St. Helena"
 
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "Other Configuration"
-msgstr ""
+msgstr "Andre indstillinger"
 
 #. module: base
 #: selection:ir.property,type:0
@@ -42,7 +42,7 @@
 msgstr "Dato og tidspunkt"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -64,7 +64,7 @@
 #. module: base
 #: field:base.language.import,code:0
 msgid "Code (eg:en__US)"
-msgstr ""
+msgstr "Kode (f.eks.: en_US)"
 
 #. module: base
 #: view:workflow:0
@@ -79,32 +79,32 @@
 #. module: base
 #: view:partner.sms.send:0
 msgid "SMS - Gateway: clickatell"
-msgstr ""
+msgstr "SMS-gateway: clickatell"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Hungarian / Magyar"
-msgstr ""
+msgstr "Ungarsk / Magyar"
 
 #. module: base
 #: selection:ir.model.fields,select_level:0
 msgid "Not Searchable"
-msgstr ""
+msgstr "Ikke søgbar"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Spanish (VE) / Español (VE)"
-msgstr ""
+msgstr "Spansk (VE) / Español (VE)"
 
 #. module: base
 #: field:ir.actions.server,wkf_model_id:0
 msgid "Workflow On"
-msgstr ""
+msgstr "Arbejdsgang aktiv"
 
 #. module: base
 #: field:ir.actions.act_window,display_menu_tip:0
 msgid "Display Menu Tips"
-msgstr ""
+msgstr "Vis menutips"
 
 #. module: base
 #: view:ir.module.module:0
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -130,7 +130,7 @@
 #. module: base
 #: field:res.partner,ref:0
 msgid "Reference"
-msgstr ""
+msgstr "Reference"
 
 #. module: base
 #: field:ir.actions.act_window,target:0
@@ -138,13 +138,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
-msgstr ""
+msgstr "Advarsel!"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -152,7 +152,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr ""
@@ -160,7 +160,7 @@
 #. module: base
 #: model:ir.model,name:base.model_ir_ui_view_custom
 msgid "ir.ui.view.custom"
-msgstr ""
+msgstr "ir.ui.view.custom"
 
 #. module: base
 #: model:res.country,name:base.sz
@@ -168,8 +168,7 @@
 msgstr "Swaziland"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr ""
@@ -177,10 +176,10 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0
 msgid "Wood Suppliers"
-msgstr ""
+msgstr "Træleverandører"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -190,13 +189,13 @@
 #. module: base
 #: field:ir.sequence,number_increment:0
 msgid "Increment Number"
-msgstr ""
+msgstr "Nr. stiger med"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_company_tree
 #: model:ir.ui.menu,name:base.menu_action_res_company_tree
 msgid "Company's Structure"
-msgstr ""
+msgstr "Virksomhedens struktur"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -206,7 +205,7 @@
 #. module: base
 #: view:res.partner:0
 msgid "Search Partner"
-msgstr ""
+msgstr "Søg kontakt"
 
 #. module: base
 #: code:addons/base/res/res_user.py:132
@@ -223,7 +222,7 @@
 #. module: base
 #: field:ir.actions.report.xml,multi:0
 msgid "On multiple doc."
-msgstr ""
+msgstr "På flere dokumenter"
 
 #. module: base
 #: field:ir.module.category,module_nr:0
@@ -241,6 +240,8 @@
 msgstr "Max. størrelse"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Kontakt navn"
@@ -269,7 +270,7 @@
 msgstr "Wizard navn"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr ""
@@ -277,7 +278,7 @@
 #. module: base
 #: field:res.partner,credit_limit:0
 msgid "Credit Limit"
-msgstr ""
+msgstr "Kreditgrænse"
 
 #. module: base
 #: field:ir.model.data,date_update:0
@@ -313,7 +314,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Gruppe"
 
@@ -357,7 +357,7 @@
 msgstr "Nederlandske Antiller"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -372,7 +372,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Greek / Ελληνικά"
-msgstr ""
+msgstr "Græsk / Greek"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -424,7 +424,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr ""
@@ -470,7 +470,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr ""
@@ -483,7 +483,7 @@
 #. module: base
 #: view:res.config.users:0
 msgid "New User"
-msgstr ""
+msgstr "Ny bruger"
 
 #. module: base
 #: view:base.language.export:0
@@ -492,6 +492,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr ""
 
@@ -525,10 +526,11 @@
 #: view:res.config:0
 #: view:res.config.installer:0
 msgid "description"
-msgstr ""
+msgstr "Beskrivelse"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr ""
 
@@ -563,7 +565,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Swedish / svenska"
-msgstr ""
+msgstr "Svensk / Swedish"
 
 #. module: base
 #: model:res.country,name:base.rs
@@ -584,7 +586,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Sekvenser"
 
@@ -601,7 +602,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Albanian / Shqip"
-msgstr ""
+msgstr "Albanien"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_crm_config_opportunity
@@ -641,7 +642,7 @@
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "XML Report"
-msgstr ""
+msgstr "XML rapport"
 
 #. module: base
 #: model:res.country,name:base.es
@@ -651,7 +652,7 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_translation_export
 msgid "Import / Export"
-msgstr ""
+msgstr "Import / Eksport"
 
 #. module: base
 #: help:ir.actions.act_window,domain:0
@@ -681,7 +682,7 @@
 #: field:res.partner,mobile:0
 #: field:res.partner.address,mobile:0
 msgid "Mobile"
-msgstr ""
+msgstr "Mobil"
 
 #. module: base
 #: model:res.country,name:base.om
@@ -692,7 +693,7 @@
 #: model:ir.actions.act_window,name:base.action_payterm_form
 #: model:ir.model,name:base.model_res_payterm
 msgid "Payment term"
-msgstr ""
+msgstr "Betalingsbetingelse"
 
 #. module: base
 #: model:res.country,name:base.nu
@@ -751,7 +752,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr ""
@@ -772,6 +772,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -788,7 +789,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -806,7 +807,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr ""
@@ -840,7 +841,7 @@
 msgstr "Overgange"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -859,7 +860,7 @@
 #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form
 #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract
 msgid "Contracts"
-msgstr ""
+msgstr "Kontrakter"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -884,12 +885,12 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Chinese (HK)"
-msgstr ""
+msgstr "Kinesisk (HK)"
 
 #. module: base
 #: model:res.country,name:base.ba
 msgid "Bosnia-Herzegovina"
-msgstr ""
+msgstr "Bosnien-Hercegovina"
 
 #. module: base
 #: view:base.language.export:0
@@ -914,6 +915,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr "Hjemmeside"
@@ -931,7 +933,7 @@
 #. module: base
 #: field:base.module.import,module_name:0
 msgid "Module Name"
-msgstr ""
+msgstr "Modulnavn"
 
 #. module: base
 #: model:res.country,name:base.mh
@@ -939,7 +941,7 @@
 msgstr "Marshalløerne"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr ""
@@ -956,7 +958,7 @@
 msgstr "Søg"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -972,7 +974,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr ""
@@ -990,7 +992,7 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_hr_dasboard
 msgid "Dashboard"
-msgstr ""
+msgstr "Oversigt"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_purchase_root
@@ -1011,7 +1013,7 @@
 #: view:ir.module.module:0
 #: report:ir.module.reference.graph:0
 msgid "Version"
-msgstr ""
+msgstr "Version"
 
 #. module: base
 #: view:ir.model.access:0
@@ -1032,6 +1034,7 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1124,7 +1127,7 @@
 msgstr "Ved oprettelse"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1133,7 +1136,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr "Log ind"
@@ -1255,8 +1257,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr " (kopi)"
@@ -1313,6 +1315,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1334,7 +1337,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr ""
@@ -1345,8 +1348,9 @@
 msgstr "Malavi"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr ""
@@ -1382,7 +1386,7 @@
 #. module: base
 #: model:res.country,name:base.fi
 msgid "Finland"
-msgstr ""
+msgstr "Finland"
 
 #. module: base
 #: selection:ir.actions.act_window,view_type:0
@@ -1407,7 +1411,7 @@
 #. module: base
 #: view:base.language.export:0
 msgid "https://help.launchpad.net/Translations"
-msgstr ""
+msgstr "https://help.launchpad.net/Translations"
 
 #. module: base
 #: field:ir.actions.act_window,view_mode:0
@@ -1430,7 +1434,7 @@
 #. module: base
 #: view:res.log:0
 msgid "Logs"
-msgstr ""
+msgstr "Logfiler"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -1476,7 +1480,7 @@
 msgstr "Bahama"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1536,9 +1540,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr "Grupper"
@@ -1579,7 +1581,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1613,7 +1615,7 @@
 #: selection:ir.translation,type:0
 #: field:multi_company.default,field_id:0
 msgid "Field"
-msgstr ""
+msgstr "Felt"
 
 #. module: base
 #: view:ir.rule:0
@@ -1623,14 +1625,12 @@
 #. module: base
 #: model:res.country,name:base.fo
 msgid "Faroe Islands"
-msgstr ""
+msgstr "Færøerne"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
-msgstr ""
+msgstr "Forenklet"
 
 #. module: base
 #: model:res.country,name:base.st
@@ -1640,7 +1640,7 @@
 #. module: base
 #: selection:res.partner.address,type:0
 msgid "Invoice"
-msgstr ""
+msgstr "Faktura"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -1650,15 +1650,15 @@
 #. module: base
 #: model:res.country,name:base.bb
 msgid "Barbados"
-msgstr ""
+msgstr "Barbados"
 
 #. module: base
 #: model:res.country,name:base.mg
 msgid "Madagascar"
-msgstr ""
+msgstr "Madagaskar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1674,12 +1674,12 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,name:0
 msgid "Menu"
-msgstr ""
+msgstr "Menu"
 
 #. module: base
 #: field:res.currency,rate:0
 msgid "Current Rate"
-msgstr ""
+msgstr "Aktuel kurs"
 
 #. module: base
 #: field:ir.ui.view.custom,ref_id:0
@@ -1721,7 +1721,7 @@
 #. module: base
 #: model:res.country,name:base.zw
 msgid "Zimbabwe"
-msgstr ""
+msgstr "Zimbabwe"
 
 #. module: base
 #: view:base.module.update:0
@@ -1736,7 +1736,7 @@
 #. module: base
 #: field:ir.actions.server,email:0
 msgid "Email Address"
-msgstr ""
+msgstr "E-mail adresse"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -1752,12 +1752,12 @@
 #. module: base
 #: model:res.country,name:base.tt
 msgid "Trinidad and Tobago"
-msgstr ""
+msgstr "Trinidad og Tobago"
 
 #. module: base
 #: model:res.country,name:base.lv
 msgid "Latvia"
-msgstr ""
+msgstr "Letland"
 
 #. module: base
 #: view:ir.values:0
@@ -1782,7 +1782,7 @@
 #. module: base
 #: model:res.country,name:base.py
 msgid "Paraguay"
-msgstr ""
+msgstr "Paraguay"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_act_window_close
@@ -1797,7 +1797,7 @@
 #. module: base
 #: model:res.country,name:base.lt
 msgid "Lithuania"
-msgstr ""
+msgstr "Litauen"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_partner_clear_ids
@@ -1827,15 +1827,16 @@
 #. module: base
 #: model:res.country,name:base.si
 msgid "Slovenia"
-msgstr ""
+msgstr "Slovenien"
 
 #. module: base
 #: model:res.country,name:base.pk
 msgid "Pakistan"
-msgstr ""
+msgstr "Pakistan"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr ""
@@ -1843,19 +1844,21 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_email_gateway_form
 msgid "Messages"
-msgstr ""
+msgstr "Meddelelser"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
-msgstr ""
+msgstr "Fejl!"
 
 #. module: base
 #: view:res.lang:0
@@ -1880,10 +1883,10 @@
 #. module: base
 #: model:res.country,name:base.nz
 msgid "New Zealand"
-msgstr ""
+msgstr "New Zealand"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -1927,7 +1930,7 @@
 #. module: base
 #: model:res.country,name:base.bd
 msgid "Bangladesh"
-msgstr ""
+msgstr "Bangladesh"
 
 #. module: base
 #: constraint:res.company:0
@@ -1945,7 +1948,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr ""
@@ -1953,7 +1956,7 @@
 #. module: base
 #: model:res.country,name:base.cu
 msgid "Cuba"
-msgstr ""
+msgstr "Cuba"
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_event
@@ -1963,12 +1966,12 @@
 #. module: base
 #: model:res.widget,title:base.facebook_widget
 msgid "Facebook"
-msgstr ""
+msgstr "Facebook"
 
 #. module: base
 #: model:res.country,name:base.am
 msgid "Armenia"
-msgstr ""
+msgstr "Armenien"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_property_form
@@ -1984,14 +1987,14 @@
 #. module: base
 #: model:res.country,name:base.se
 msgid "Sweden"
-msgstr ""
+msgstr "Sverige"
 
 #. module: base
 #: selection:ir.actions.act_window.view,view_mode:0
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Gantt"
-msgstr ""
+msgstr "Gantt"
 
 #. module: base
 #: view:ir.property:0
@@ -2000,9 +2003,10 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
-msgstr ""
+msgstr "Bank Kontotype"
 
 #. module: base
 #: field:base.language.export,config_logo:0
@@ -2016,10 +2020,8 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
-msgstr ""
+msgstr "Billede"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -2034,7 +2036,7 @@
 #. module: base
 #: model:res.country,name:base.at
 msgid "Austria"
-msgstr ""
+msgstr "Østrig"
 
 #. module: base
 #: selection:base.language.install,state:0
@@ -2049,7 +2051,7 @@
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Calendar"
-msgstr ""
+msgstr "Kalender"
 
 #. module: base
 #: field:res.partner.address,partner_id:0
@@ -2067,7 +2069,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2086,8 +2088,6 @@
 msgstr ""
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr ""
@@ -2143,7 +2143,7 @@
 #. module: base
 #: field:res.partner.address,birthdate:0
 msgid "Birthdate"
-msgstr ""
+msgstr "Fødselsdato"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_title_contact
@@ -2183,12 +2183,12 @@
 #. module: base
 #: model:res.country,name:base.uy
 msgid "Uruguay"
-msgstr ""
+msgstr "Uruguay"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Finnish / Suomi"
-msgstr ""
+msgstr "Finsk / Suomi"
 
 #. module: base
 #: field:ir.rule,perm_write:0
@@ -2203,7 +2203,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "German / Deutsch"
-msgstr ""
+msgstr "Tysk / Deutsch"
 
 #. module: base
 #: help:ir.actions.server,trigger_name:0
@@ -2218,7 +2218,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Portugese / Português"
-msgstr ""
+msgstr "Portugisisk / Português"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_sir
@@ -2226,7 +2226,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr ""
@@ -2245,7 +2245,7 @@
 #. module: base
 #: model:res.country,name:base.mt
 msgid "Malta"
-msgstr ""
+msgstr "Malta"
 
 #. module: base
 #: field:ir.actions.server,fields_lines:0
@@ -2259,20 +2259,20 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
-msgstr ""
+msgstr "Modul"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
 msgid "Description"
-msgstr ""
+msgstr "Beskrivelse"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_workflow_instance_form
@@ -2283,7 +2283,7 @@
 #. module: base
 #: model:res.country,name:base.aq
 msgid "Antarctica"
-msgstr ""
+msgstr "Antarktis"
 
 #. module: base
 #: field:ir.actions.report.xml,auto:0
@@ -2317,8 +2317,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr ""
 
@@ -2328,7 +2328,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr ""
@@ -2336,7 +2336,7 @@
 #. module: base
 #: view:res.payterm:0
 msgid "Payment Term"
-msgstr ""
+msgstr "Betalingsbetingelse"
 
 #. module: base
 #: selection:res.lang,direction:0
@@ -2378,13 +2378,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr ""
@@ -2417,7 +2417,7 @@
 #. module: base
 #: model:res.country,name:base.ru
 msgid "Russian Federation"
-msgstr ""
+msgstr "Rusland"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -2427,13 +2427,13 @@
 #. module: base
 #: field:res.company,name:0
 msgid "Company Name"
-msgstr ""
+msgstr "Virksomhedsnavn"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_country
 #: model:ir.ui.menu,name:base.menu_country_partner
 msgid "Countries"
-msgstr ""
+msgstr "Lande"
 
 #. module: base
 #: selection:ir.translation,type:0
@@ -2448,7 +2448,7 @@
 #. module: base
 #: view:ir.property:0
 msgid "Field Information"
-msgstr ""
+msgstr "Feltinformation"
 
 #. module: base
 #: view:ir.actions.todo:0
@@ -2464,7 +2464,7 @@
 #. module: base
 #: field:res.partner,vat:0
 msgid "VAT"
-msgstr ""
+msgstr "Moms"
 
 #. module: base
 #: view:res.lang:0
@@ -2502,7 +2502,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2510,7 +2510,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2523,7 +2523,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr ""
@@ -2545,7 +2545,7 @@
 #. module: base
 #: model:res.country,name:base.me
 msgid "Montenegro"
-msgstr ""
+msgstr "Montenegro"
 
 #. module: base
 #: view:ir.cron:0
@@ -2556,7 +2556,7 @@
 #: view:res.partner:0
 #: field:res.partner,category_id:0
 msgid "Categories"
-msgstr ""
+msgstr "Kategorier"
 
 #. module: base
 #: view:base.language.import:0
@@ -2567,7 +2567,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2576,7 +2575,7 @@
 #. module: base
 #: model:res.country,name:base.ly
 msgid "Libya"
-msgstr ""
+msgstr "Libyen"
 
 #. module: base
 #: model:res.country,name:base.cf
@@ -2586,21 +2585,21 @@
 #. module: base
 #: model:res.country,name:base.li
 msgid "Liechtenstein"
-msgstr ""
+msgstr "Liechtenstein"
 
 #. module: base
 #: model:ir.model,name:base.model_partner_sms_send
 #: view:partner.sms.send:0
 msgid "Send SMS"
-msgstr ""
+msgstr "Send SMS"
 
 #. module: base
 #: field:res.partner,ean13:0
 msgid "EAN13"
-msgstr ""
+msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr ""
@@ -2608,7 +2607,7 @@
 #. module: base
 #: model:res.country,name:base.pt
 msgid "Portugal"
-msgstr ""
+msgstr "Portugal"
 
 #. module: base
 #: sql_constraint:ir.model.data:0
@@ -2648,7 +2647,7 @@
 #: model:ir.ui.menu,name:base.menu_res_lang_act_window
 #: view:res.lang:0
 msgid "Languages"
-msgstr ""
+msgstr "Sprog"
 
 #. module: base
 #: selection:workflow.activity,join_mode:0
@@ -2659,7 +2658,7 @@
 #. module: base
 #: model:res.country,name:base.ec
 msgid "Ecuador"
-msgstr ""
+msgstr "Equador"
 
 #. module: base
 #: code:addons/base/module/wizard/base_export_language.py:52
@@ -2676,12 +2675,12 @@
 #: model:ir.ui.menu,name:base.menu_partner_form
 #: view:res.partner:0
 msgid "Customers"
-msgstr ""
+msgstr "Kunder"
 
 #. module: base
 #: model:res.country,name:base.au
 msgid "Australia"
-msgstr ""
+msgstr "Australien"
 
 #. module: base
 #: help:res.partner,lang:0
@@ -2693,7 +2692,7 @@
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "Menu :"
-msgstr ""
+msgstr "Menu:"
 
 #. module: base
 #: selection:ir.model.fields,state:0
@@ -2708,7 +2707,7 @@
 #. module: base
 #: field:ir.actions.todo,restart:0
 msgid "Restart"
-msgstr ""
+msgstr "Genstart"
 
 #. module: base
 #: field:ir.actions.report.xml,report_sxw_content:0
@@ -2776,7 +2775,7 @@
 #. module: base
 #: view:res.company:0
 msgid "Header/Footer"
-msgstr ""
+msgstr "Sidehoved/sidefod"
 
 #. module: base
 #: help:ir.actions.act_window,help:0
@@ -2827,15 +2826,16 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
-msgstr ""
+msgstr "Markedsføring"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
-msgstr ""
+msgstr "Bank konto"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -2855,17 +2855,17 @@
 #. module: base
 #: field:ir.module.module,license:0
 msgid "License"
-msgstr ""
+msgstr "Licens"
 
 #. module: base
 #: field:ir.attachment,url:0
 msgid "Url"
-msgstr ""
+msgstr "Adresse"
 
 #. module: base
 #: selection:ir.actions.todo,restart:0
 msgid "Always"
-msgstr ""
+msgstr "Altid"
 
 #. module: base
 #: selection:ir.translation,type:0
@@ -2874,9 +2874,11 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
-msgstr ""
+msgstr "Model"
 
 #. module: base
 #: view:base.language.install:0
@@ -2908,10 +2910,11 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
-msgstr ""
+msgstr "Postnummer"
 
 #. module: base
 #: view:ir.module.module:0
@@ -2930,7 +2933,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -2946,12 +2949,12 @@
 #. module: base
 #: model:res.country,name:base.bo
 msgid "Bolivia"
-msgstr ""
+msgstr "Bolivia"
 
 #. module: base
 #: model:res.country,name:base.gh
 msgid "Ghana"
-msgstr ""
+msgstr "Ghana"
 
 #. module: base
 #: field:res.lang,direction:0
@@ -2963,6 +2966,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -2973,10 +2978,10 @@
 #: view:res.groups:0
 #: field:res.groups,rule_groups:0
 msgid "Rules"
-msgstr ""
+msgstr "Regler"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3040,7 +3045,7 @@
 #: view:res.config:0
 #: view:res.config.installer:0
 msgid "Skip"
-msgstr ""
+msgstr "Spring over"
 
 #. module: base
 #: model:res.country,name:base.ls
@@ -3048,7 +3053,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr ""
@@ -3056,7 +3061,7 @@
 #. module: base
 #: model:res.country,name:base.ke
 msgid "Kenya"
-msgstr ""
+msgstr "Kenya"
 
 #. module: base
 #: view:res.partner.event:0
@@ -3079,7 +3084,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr ""
@@ -3092,17 +3097,17 @@
 #. module: base
 #: model:res.country,name:base.sm
 msgid "San Marino"
-msgstr ""
+msgstr "San Marino"
 
 #. module: base
 #: model:res.country,name:base.bm
 msgid "Bermuda"
-msgstr ""
+msgstr "Bermuda"
 
 #. module: base
 #: model:res.country,name:base.pe
 msgid "Peru"
-msgstr ""
+msgstr "Peru"
 
 #. module: base
 #: selection:ir.model.fields,on_delete:0
@@ -3115,7 +3120,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr ""
@@ -3146,7 +3152,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3162,7 +3168,7 @@
 #: view:ir.model.access:0
 #: view:ir.rule:0
 msgid "Full Access"
-msgstr ""
+msgstr "Fuld adgang"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -3171,7 +3177,7 @@
 #: view:ir.model.fields:0
 #: model:ir.ui.menu,name:base.menu_security
 msgid "Security"
-msgstr ""
+msgstr "Sikkerhed"
 
 #. module: base
 #: model:res.widget,title:base.openerp_favorites_twitter_widget
@@ -3181,14 +3187,14 @@
 #. module: base
 #: model:res.country,name:base.za
 msgid "South Africa"
-msgstr ""
+msgstr "Sydafrika"
 
 #. module: base
 #: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "Installed"
-msgstr ""
+msgstr "Installeret"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -3204,12 +3210,12 @@
 #. module: base
 #: model:res.country,name:base.sn
 msgid "Senegal"
-msgstr ""
+msgstr "Senegal"
 
 #. module: base
 #: model:res.country,name:base.hu
 msgid "Hungary"
-msgstr ""
+msgstr "Ungarn"
 
 #. module: base
 #: model:ir.model,name:base.model_res_groups
@@ -3219,7 +3225,7 @@
 #. module: base
 #: model:res.country,name:base.br
 msgid "Brazil"
-msgstr ""
+msgstr "Brasilien"
 
 #. module: base
 #: view:res.lang:0
@@ -3234,7 +3240,7 @@
 #. module: base
 #: field:ir.sequence,number_next:0
 msgid "Next Number"
-msgstr ""
+msgstr "Næste nummer"
 
 #. module: base
 #: help:workflow.transition,condition:0
@@ -3255,12 +3261,12 @@
 #. module: base
 #: model:res.country,name:base.sy
 msgid "Syria"
-msgstr ""
+msgstr "Syrien"
 
 #. module: base
 #: view:res.lang:0
 msgid "======================================================"
-msgstr ""
+msgstr "======================================================"
 
 #. module: base
 #: help:ir.actions.server,mobile:0
@@ -3288,7 +3294,7 @@
 #: field:res.partner.event,date:0
 #: field:res.request,date_sent:0
 msgid "Date"
-msgstr ""
+msgstr "Dato"
 
 #. module: base
 #: field:ir.actions.report.xml,report_sxw:0
@@ -3298,7 +3304,7 @@
 #. module: base
 #: view:ir.attachment:0
 msgid "Data"
-msgstr ""
+msgstr "Data"
 
 #. module: base
 #: field:ir.ui.menu,parent_id:0
@@ -3312,7 +3318,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3364,7 +3370,7 @@
 #. module: base
 #: model:res.country,name:base.mx
 msgid "Mexico"
-msgstr ""
+msgstr "Mexico"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_config_plugins
@@ -3384,7 +3390,7 @@
 #. module: base
 #: model:res.country,name:base.ni
 msgid "Nicaragua"
-msgstr ""
+msgstr "Nicaragua"
 
 #. module: base
 #: code:addons/orm.py:1046
@@ -3416,7 +3422,7 @@
 #. module: base
 #: model:res.country,name:base.ve
 msgid "Venezuela"
-msgstr ""
+msgstr "Venezuela"
 
 #. module: base
 #: view:res.lang:0
@@ -3426,7 +3432,7 @@
 #. module: base
 #: model:res.country,name:base.zm
 msgid "Zambia"
-msgstr ""
+msgstr "Zambia"
 
 #. module: base
 #: help:res.partner,user_id:0
@@ -3453,7 +3459,7 @@
 #. module: base
 #: model:res.country,name:base.kz
 msgid "Kazakhstan"
-msgstr ""
+msgstr "Kazakstan"
 
 #. module: base
 #: view:res.lang:0
@@ -3475,10 +3481,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3489,7 +3497,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3513,7 +3522,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3526,7 +3535,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3536,17 +3544,17 @@
 #. module: base
 #: field:ir.module.module,demo:0
 msgid "Demo data"
-msgstr ""
+msgstr "Demostrations data"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "English (UK)"
-msgstr ""
+msgstr "Engelsk (UK)"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Japanese / 日本語"
-msgstr ""
+msgstr "Japansk / 日本語"
 
 #. module: base
 #: help:workflow.transition,act_from:0
@@ -3580,7 +3588,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "English (CA)"
-msgstr ""
+msgstr "Engelsk (CA)"
 
 #. module: base
 #: model:ir.model,name:base.model_publisher_warranty_contract
@@ -3590,7 +3598,7 @@
 #. module: base
 #: model:res.country,name:base.et
 msgid "Ethiopia"
-msgstr ""
+msgstr "Etiopien"
 
 #. module: base
 #: help:res.country.state,code:0
@@ -3612,7 +3620,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr ""
@@ -3631,7 +3638,7 @@
 #. module: base
 #: view:ir.translation:0
 msgid "Translation"
-msgstr ""
+msgstr "Oversættelse"
 
 #. module: base
 #: selection:res.request,state:0
@@ -3686,14 +3693,13 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
-msgstr ""
+msgstr "Bank type"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr ""
@@ -3715,7 +3721,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3757,7 +3763,7 @@
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Hours"
-msgstr ""
+msgstr "Timer"
 
 #. module: base
 #: model:res.country,name:base.gp
@@ -3765,12 +3771,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
-msgstr ""
+msgstr "Bruger fejl!"
 
 #. module: base
 #: help:workflow.transition,signal:0
@@ -3803,18 +3809,18 @@
 #. module: base
 #: view:ir.attachment:0
 msgid "Month"
-msgstr ""
+msgstr "Måned"
 
 #. module: base
 #: model:res.country,name:base.my
 msgid "Malaysia"
-msgstr ""
+msgstr "Malaysien"
 
 #. module: base
 #: view:base.language.install:0
 #: model:ir.actions.act_window,name:base.action_view_base_language_install
 msgid "Load Official Translation"
-msgstr ""
+msgstr "Hent den officielle oversættelse"
 
 #. module: base
 #: model:ir.model,name:base.model_res_request_history
@@ -3856,6 +3862,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -3874,7 +3881,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -3893,7 +3900,7 @@
 #. module: base
 #: view:res.currency:0
 msgid "Price Accuracy"
-msgstr ""
+msgstr "Pris nøjagtighed"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -3909,7 +3916,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "French / Français"
-msgstr ""
+msgstr "Fransk / Français"
 
 #. module: base
 #: code:addons/orm.py:1049
@@ -3932,7 +3939,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -3971,7 +3978,7 @@
 #. module: base
 #: model:res.country,name:base.fj
 msgid "Fiji"
-msgstr ""
+msgstr "Fiji"
 
 #. module: base
 #: field:ir.model.fields,size:0
@@ -3981,12 +3988,12 @@
 #. module: base
 #: model:res.country,name:base.sd
 msgid "Sudan"
-msgstr ""
+msgstr "Sudan"
 
 #. module: base
 #: model:res.country,name:base.fm
 msgid "Micronesia"
-msgstr ""
+msgstr "Mikronesien"
 
 #. module: base
 #: view:res.request.history:0
@@ -3994,11 +4001,10 @@
 msgstr ""
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
-msgstr ""
+msgstr "Menuer"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4008,7 +4014,7 @@
 #. module: base
 #: model:res.country,name:base.il
 msgid "Israel"
-msgstr ""
+msgstr "Israel"
 
 #. module: base
 #: model:ir.actions.wizard,name:base.wizard_server_action_create
@@ -4025,7 +4031,7 @@
 #. module: base
 #: field:res.lang,time_format:0
 msgid "Time Format"
-msgstr ""
+msgstr "Tidsformat"
 
 #. module: base
 #: view:ir.module.module:0
@@ -4041,11 +4047,12 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
 msgid "Modules"
-msgstr ""
+msgstr "Moduler"
 
 #. module: base
 #: view:workflow.activity:0
@@ -4071,12 +4078,12 @@
 #: view:res.bank:0
 #: field:res.partner,bank_ids:0
 msgid "Banks"
-msgstr ""
+msgstr "Banker"
 
 #. module: base
 #: view:res.log:0
 msgid "Unread"
-msgstr ""
+msgstr "Ulæst"
 
 #. module: base
 #: field:ir.cron,doall:0
@@ -4094,7 +4101,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr ""
@@ -4102,12 +4108,10 @@
 #. module: base
 #: model:res.country,name:base.uk
 msgid "United Kingdom"
-msgstr ""
+msgstr "Storbritannien"
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr ""
 
@@ -4124,7 +4128,7 @@
 #. module: base
 #: model:res.country,name:base.bw
 msgid "Botswana"
-msgstr ""
+msgstr "Botswana"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_title_partner
@@ -4166,7 +4170,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4213,7 +4217,7 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_main_pm
 msgid "Project"
-msgstr ""
+msgstr "Projekt"
 
 #. module: base
 #: field:ir.ui.menu,web_icon_hover_data:0
@@ -4272,9 +4276,10 @@
 msgstr ""
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
-msgstr ""
+msgstr "Ansat"
 
 #. module: base
 #: field:ir.model.access,perm_create:0
@@ -4282,14 +4287,17 @@
 msgstr ""
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr ""
 
 #. module: base
 #: field:ir.actions.server,copy_object:0
 msgid "Copy Of"
-msgstr ""
+msgstr "Kopi af"
 
 #. module: base
 #: field:ir.model,osv_memory:0
@@ -4307,8 +4315,6 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr ""
@@ -4324,10 +4330,9 @@
 msgstr ""
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
-msgstr ""
+msgstr "Felttype"
 
 #. module: base
 #: field:res.country.state,code:0
@@ -4353,14 +4358,12 @@
 #. module: base
 #: model:res.country,name:base.vn
 msgid "Vietnam"
-msgstr ""
+msgstr "Vietnam"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
-msgstr ""
+msgstr "Signatur"
 
 #. module: base
 #: code:addons/fields.py:456
@@ -4372,7 +4375,7 @@
 #: code:addons/fields.py:664
 #, python-format
 msgid "Not Implemented"
-msgstr ""
+msgstr "Ikke implementeret"
 
 #. module: base
 #: model:ir.model,name:base.model_res_widget_user
@@ -4382,7 +4385,7 @@
 #. module: base
 #: field:res.partner.category,complete_name:0
 msgid "Full Name"
-msgstr ""
+msgstr "Fulde navn"
 
 #. module: base
 #: view:base.module.configuration:0
@@ -4395,7 +4398,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr ""
@@ -4412,8 +4415,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr ""
@@ -4427,7 +4430,7 @@
 #: view:res.partner:0
 #: field:res.partner,user_id:0
 msgid "Salesman"
-msgstr ""
+msgstr "Sælger"
 
 #. module: base
 #: field:res.partner,address:0
@@ -4436,7 +4439,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4449,7 +4452,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr ""
@@ -4462,7 +4464,7 @@
 #. module: base
 #: model:res.country,name:base.cz
 msgid "Czech Republic"
-msgstr ""
+msgstr "Tjekkiet"
 
 #. module: base
 #: view:res.widget.wizard:0
@@ -4478,7 +4480,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4486,7 +4488,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr ""
@@ -4504,7 +4506,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr ""
@@ -4527,12 +4528,12 @@
 #. module: base
 #: model:res.country,name:base.na
 msgid "Namibia"
-msgstr ""
+msgstr "Namibia"
 
 #. module: base
 #: model:res.country,name:base.mn
 msgid "Mongolia"
-msgstr ""
+msgstr "Mongoliet"
 
 #. module: base
 #: view:ir.module.module:0
@@ -4547,7 +4548,7 @@
 #. module: base
 #: model:res.country,name:base.bi
 msgid "Burundi"
-msgstr ""
+msgstr "Burundi"
 
 #. module: base
 #: view:base.language.install:0
@@ -4555,8 +4556,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr ""
 
@@ -4568,12 +4567,12 @@
 #. module: base
 #: view:res.log:0
 msgid "My Logs"
-msgstr ""
+msgstr "Mine logfiler"
 
 #. module: base
 #: model:res.country,name:base.bt
 msgid "Bhutan"
-msgstr ""
+msgstr "Bhutan"
 
 #. module: base
 #: help:ir.sequence,number_next:0
@@ -4603,7 +4602,7 @@
 #. module: base
 #: field:base.language.export,format:0
 msgid "File Format"
-msgstr ""
+msgstr "Filformat"
 
 #. module: base
 #: field:res.lang,iso_code:0
@@ -4619,7 +4618,7 @@
 #: view:res.log:0
 #: field:res.log,read:0
 msgid "Read"
-msgstr ""
+msgstr "Læst"
 
 #. module: base
 #: sql_constraint:res.country:0
@@ -4645,11 +4644,11 @@
 msgstr ""
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
-msgstr ""
+msgstr "Adgangskode"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_model_fields
@@ -4659,12 +4658,12 @@
 #: view:ir.model.fields:0
 #: model:ir.ui.menu,name:base.ir_model_model_fields
 msgid "Fields"
-msgstr ""
+msgstr "Felter"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_employee_form
 msgid "Employees"
-msgstr ""
+msgstr "Ansatte"
 
 #. module: base
 #: help:res.log,read:0
@@ -4705,12 +4704,12 @@
 #: model:ir.actions.act_window,name:base.action_partner_address_form
 #: model:ir.ui.menu,name:base.menu_partner_address_form
 msgid "Addresses"
-msgstr ""
+msgstr "Adresser"
 
 #. module: base
 #: model:res.country,name:base.mm
 msgid "Myanmar"
-msgstr ""
+msgstr "Myanmar (Burma)"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -4719,15 +4718,16 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
-msgstr ""
+msgstr "Vej"
 
 #. module: base
 #: model:res.country,name:base.yu
 msgid "Yugoslavia"
-msgstr ""
+msgstr "Jugoslavien"
 
 #. module: base
 #: field:ir.model.data,name:0
@@ -4737,12 +4737,12 @@
 #. module: base
 #: model:res.country,name:base.ca
 msgid "Canada"
-msgstr ""
+msgstr "Canada"
 
 #. module: base
 #: selection:ir.module.module.dependency,state:0
 msgid "Unknown"
-msgstr ""
+msgstr "Ukendt"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_users_my
@@ -4750,7 +4750,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr ""
@@ -4758,17 +4758,17 @@
 #. module: base
 #: field:partner.sms.send,text:0
 msgid "SMS Message"
-msgstr ""
+msgstr "SMS besked"
 
 #. module: base
 #: model:res.country,name:base.cm
 msgid "Cameroon"
-msgstr ""
+msgstr "Cameroun"
 
 #. module: base
 #: model:res.country,name:base.bf
 msgid "Burkina Faso"
-msgstr ""
+msgstr "Burkina Faso"
 
 #. module: base
 #: selection:ir.actions.todo,state:0
@@ -4813,7 +4813,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -4835,7 +4835,7 @@
 #. module: base
 #: report:ir.module.reference.graph:0
 msgid "1cm 28cm 20cm 28cm"
-msgstr ""
+msgstr "1cm 28cm 20cm 28cm"
 
 #. module: base
 #: field:ir.module.module,maintainer:0
@@ -4855,10 +4855,10 @@
 #. module: base
 #: model:ir.actions.report.xml,name:base.res_partner_address_report
 msgid "Labels"
-msgstr ""
+msgstr "Etiketter"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr ""
 
@@ -4878,7 +4878,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -4897,7 +4896,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -4920,7 +4919,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr ""
@@ -4933,7 +4931,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr ""
 
@@ -4945,7 +4942,7 @@
 #. module: base
 #: model:res.country,name:base.us
 msgid "United States"
-msgstr ""
+msgstr "USA"
 
 #. module: base
 #: view:ir.module.module:0
@@ -4970,7 +4967,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr ""
@@ -4978,7 +4975,7 @@
 #. module: base
 #: model:res.country,name:base.kw
 msgid "Kuwait"
-msgstr ""
+msgstr "Kuwait"
 
 #. module: base
 #: field:workflow.workitem,inst_id:0
@@ -5001,10 +4998,10 @@
 #. module: base
 #: model:res.country,name:base.ng
 msgid "Nigeria"
-msgstr ""
+msgstr "Nigeria"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5012,7 +5009,7 @@
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_sms_send
 msgid "SMS Send"
-msgstr ""
+msgstr "SMS sendt"
 
 #. module: base
 #: field:res.company,user_ids:0
@@ -5037,7 +5034,7 @@
 #. module: base
 #: model:res.country,name:base.hk
 msgid "Hong Kong"
-msgstr ""
+msgstr "Hong Kong"
 
 #. module: base
 #: help:ir.actions.server,name:0
@@ -5059,12 +5056,12 @@
 #. module: base
 #: model:res.country,name:base.ph
 msgid "Philippines"
-msgstr ""
+msgstr "Filippinerne"
 
 #. module: base
 #: model:res.country,name:base.ma
 msgid "Morocco"
-msgstr ""
+msgstr "Marokko"
 
 #. module: base
 #: view:res.lang:0
@@ -5084,7 +5081,7 @@
 #. module: base
 #: model:res.country,name:base.td
 msgid "Chad"
-msgstr ""
+msgstr "Tchad"
 
 #. module: base
 #: model:ir.model,name:base.model_workflow_transition
@@ -5131,7 +5128,7 @@
 #. module: base
 #: model:res.country,name:base.np
 msgid "Nepal"
-msgstr ""
+msgstr "Nepal"
 
 #. module: base
 #: code:addons/orm.py:2307
@@ -5177,14 +5174,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5204,7 +5201,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr ""
@@ -5233,12 +5230,12 @@
 #: field:base.language.export,data:0
 #: field:base.language.import,data:0
 msgid "File"
-msgstr ""
+msgstr "Fil"
 
 #. module: base
 #: view:res.config.users:0
 msgid "Add User"
-msgstr ""
+msgstr "Tilføj bruger"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install
@@ -5261,7 +5258,7 @@
 #: field:res.partner.address,is_supplier_add:0
 #: model:res.partner.category,name:base.res_partner_category_8
 msgid "Supplier"
-msgstr ""
+msgstr "Leverandør"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -5293,7 +5290,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr ""
 
@@ -5340,8 +5336,8 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr ""
@@ -5349,7 +5345,7 @@
 #. module: base
 #: model:res.country,name:base.ae
 msgid "United Arab Emirates"
-msgstr ""
+msgstr "De Forenede Arabiske Emirater"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_crm_case_job_req_main
@@ -5362,7 +5358,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5373,7 +5369,7 @@
 #: view:ir.rule:0
 #: field:ir.rule,global:0
 msgid "Global"
-msgstr ""
+msgstr "Globalt"
 
 #. module: base
 #: model:res.country,name:base.mp
@@ -5386,12 +5382,12 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr ""
@@ -5427,7 +5423,7 @@
 #: view:ir.translation:0
 #: model:ir.ui.menu,name:base.menu_translation
 msgid "Translations"
-msgstr ""
+msgstr "Oversættelser"
 
 #. module: base
 #: field:ir.sequence,padding:0
@@ -5437,12 +5433,12 @@
 #. module: base
 #: view:ir.actions.report.xml:0
 msgid "Report"
-msgstr ""
+msgstr "Rapport"
 
 #. module: base
 #: model:res.country,name:base.ua
 msgid "Ukraine"
-msgstr ""
+msgstr "Ukraine"
 
 #. module: base
 #: model:res.country,name:base.to
@@ -5450,7 +5446,6 @@
 msgstr ""
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr ""
@@ -5558,12 +5553,12 @@
 #. module: base
 #: model:res.country,name:base.dz
 msgid "Algeria"
-msgstr ""
+msgstr "Algeriet"
 
 #. module: base
 #: model:res.country,name:base.be
 msgid "Belgium"
-msgstr ""
+msgstr "Belgien"
 
 #. module: base
 #: model:ir.model,name:base.model_osv_memory_autovacuum
@@ -5575,16 +5570,15 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
-msgstr ""
+msgstr "Sprog"
 
 #. module: base
 #: model:res.country,name:base.gm
 msgid "Gambia"
-msgstr ""
+msgstr "Gambia"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_company_form
@@ -5592,11 +5586,9 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
-msgstr ""
+msgstr "Virksomheder"
 
 #. module: base
 #: view:res.lang:0
@@ -5609,13 +5601,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5634,13 +5626,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr ""
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr ""
 
@@ -5651,9 +5643,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr ""
@@ -5661,12 +5655,12 @@
 #. module: base
 #: selection:base.language.export,format:0
 msgid "PO File"
-msgstr ""
+msgstr "PO fil"
 
 #. module: base
 #: model:res.country,name:base.nt
 msgid "Neutral Zone"
-msgstr ""
+msgstr "Neutral Zone"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -5686,7 +5680,7 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_9
 msgid "Components Supplier"
-msgstr ""
+msgstr "Komponent leverandør"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_res_users
@@ -5697,7 +5691,7 @@
 #: field:res.groups,users:0
 #: view:res.users:0
 msgid "Users"
-msgstr ""
+msgstr "Brugere"
 
 #. module: base
 #: field:ir.module.module,published_version:0
@@ -5707,7 +5701,7 @@
 #. module: base
 #: model:res.country,name:base.is
 msgid "Iceland"
-msgstr ""
+msgstr "Island"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.ir_action_window
@@ -5728,7 +5722,7 @@
 #. module: base
 #: model:res.country,name:base.de
 msgid "Germany"
-msgstr ""
+msgstr "Tyskland"
 
 #. module: base
 #: view:ir.sequence:0
@@ -5738,7 +5732,7 @@
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_14
 msgid "Bad customers"
-msgstr ""
+msgstr "Dårlige kunder"
 
 #. module: base
 #: report:ir.module.reference.graph:0
@@ -5748,7 +5742,7 @@
 #. module: base
 #: model:res.country,name:base.gy
 msgid "Guyana"
-msgstr ""
+msgstr "Guyana"
 
 #. module: base
 #: help:ir.actions.act_window,view_type:0
@@ -5758,7 +5752,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -5771,10 +5765,9 @@
 #. module: base
 #: model:res.country,name:base.hn
 msgid "Honduras"
-msgstr ""
+msgstr "Honduras"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -5783,7 +5776,7 @@
 #. module: base
 #: model:res.country,name:base.eg
 msgid "Egypt"
-msgstr ""
+msgstr "Ægypten"
 
 #. module: base
 #: field:ir.rule,perm_read:0
@@ -5805,7 +5798,7 @@
 #. module: base
 #: field:base.language.import,name:0
 msgid "Language Name"
-msgstr ""
+msgstr "Sprog navn"
 
 #. module: base
 #: selection:ir.property,type:0
@@ -5818,13 +5811,12 @@
 msgstr ""
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -5863,7 +5855,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr ""
@@ -5886,7 +5878,7 @@
 #: field:res.partner,comment:0
 #: model:res.widget,title:base.note_widget
 msgid "Notes"
-msgstr ""
+msgstr "Noter"
 
 #. module: base
 #: field:ir.config_parameter,value:0
@@ -5898,9 +5890,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr ""
 
@@ -5908,10 +5898,9 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
-msgstr ""
+msgstr "Kode"
 
 #. module: base
 #: model:ir.model,name:base.model_res_config_installer
@@ -5921,20 +5910,19 @@
 #. module: base
 #: model:res.country,name:base.mc
 msgid "Monaco"
-msgstr ""
+msgstr "Monaco"
 
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Minutes"
-msgstr ""
+msgstr "Minutter"
 
 #. module: base
 #: selection:ir.translation,type:0
 msgid "Help"
-msgstr ""
+msgstr "Hjælp"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -5986,7 +5974,7 @@
 #. module: base
 #: model:res.country,name:base.fr
 msgid "France"
-msgstr ""
+msgstr "Frankrig"
 
 #. module: base
 #: model:ir.model,name:base.model_res_log
@@ -6008,7 +5996,7 @@
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Weeks"
-msgstr ""
+msgstr "Uger"
 
 #. module: base
 #: model:res.country,name:base.af
@@ -6016,10 +6004,11 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
-msgstr ""
+msgstr "Fejl!"
 
 #. module: base
 #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry
@@ -6038,16 +6027,17 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr ""
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
-msgstr ""
+msgstr "Fax"
 
 #. module: base
 #: field:res.lang,thousands_sep:0
@@ -6094,7 +6084,7 @@
 #. module: base
 #: model:res.country,name:base.pa
 msgid "Panama"
-msgstr ""
+msgstr "Panama"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_ltd
@@ -6108,7 +6098,6 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6116,7 +6105,7 @@
 #. module: base
 #: model:res.country,name:base.gi
 msgid "Gibraltar"
-msgstr ""
+msgstr "Gibraltar"
 
 #. module: base
 #: field:ir.actions.report.xml,report_name:0
@@ -6141,10 +6130,9 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
-msgstr ""
+msgstr "Brugernavn"
 
 #. module: base
 #: view:ir.sequence:0
@@ -6173,7 +6161,7 @@
 #. module: base
 #: selection:ir.cron,interval_type:0
 msgid "Months"
-msgstr ""
+msgstr "Måneder"
 
 #. module: base
 #: field:ir.actions.act_window,search_view:0
@@ -6198,7 +6186,7 @@
 #: model:ir.ui.menu,name:base.menu_sale_config_sales
 #: model:ir.ui.menu,name:base.menu_sales
 msgid "Sales"
-msgstr ""
+msgstr "Salg"
 
 #. module: base
 #: field:ir.actions.server,child_ids:0
@@ -6207,7 +6195,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr ""
 
@@ -6230,21 +6217,22 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
 msgid "City"
-msgstr ""
+msgstr "By"
 
 #. module: base
 #: model:res.country,name:base.qa
 msgid "Qatar"
-msgstr ""
+msgstr "Qatar"
 
 #. module: base
 #: model:res.country,name:base.it
 msgid "Italy"
-msgstr ""
+msgstr "Italien"
 
 #. module: base
 #: view:ir.actions.todo:0
@@ -6258,16 +6246,14 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
-msgstr ""
+msgstr "E-mail"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL-3 or later version"
-msgstr ""
+msgstr "GPL-3 eller senere version"
 
 #. module: base
 #: field:workflow.activity,action:0
@@ -6277,7 +6263,7 @@
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "English (US)"
-msgstr ""
+msgstr "Engelsk (US)"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_model_data
@@ -6299,7 +6285,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6308,17 +6294,14 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
-msgstr ""
+msgstr "Adresse"
 
 #. module: base
 #: field:ir.module.module,latest_version:0
 msgid "Installed version"
-msgstr ""
+msgstr "Installeret version"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -6328,7 +6311,7 @@
 #. module: base
 #: model:res.country,name:base.mr
 msgid "Mauritania"
-msgstr ""
+msgstr "Mauretanien"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_translation
@@ -6344,7 +6327,7 @@
 #: view:workflow.activity:0
 #: field:workflow.workitem,act_id:0
 msgid "Activity"
-msgstr ""
+msgstr "Aktivitet"
 
 #. module: base
 #: view:res.partner:0
@@ -6370,7 +6353,7 @@
 #. module: base
 #: model:res.country,name:base.cg
 msgid "Congo"
-msgstr ""
+msgstr "Congo"
 
 #. module: base
 #: view:res.lang:0
@@ -6379,13 +6362,14 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr "Standardværdi"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_tools
 msgid "Tools"
-msgstr ""
+msgstr "Værktøj"
 
 #. module: base
 #: model:res.country,name:base.kn
@@ -6393,7 +6377,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6409,9 +6393,7 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr ""
 
@@ -6427,7 +6409,7 @@
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "Not Installed"
-msgstr ""
+msgstr "Ikke installeret"
 
 #. module: base
 #: view:workflow.activity:0
@@ -6438,7 +6420,7 @@
 #. module: base
 #: field:ir.ui.menu,icon:0
 msgid "Icon"
-msgstr ""
+msgstr "Ikon"
 
 #. module: base
 #: help:ir.model.fields,model_id:0
@@ -6466,12 +6448,12 @@
 #. module: base
 #: model:res.country,name:base.ye
 msgid "Yemen"
-msgstr ""
+msgstr "Yemen"
 
 #. module: base
 #: selection:workflow.activity,split_mode:0
 msgid "Or"
-msgstr ""
+msgstr "Eller"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.res_log_act_window
@@ -6482,15 +6464,15 @@
 #. module: base
 #: model:res.country,name:base.al
 msgid "Albania"
-msgstr ""
+msgstr "Albanien"
 
 #. module: base
 #: model:res.country,name:base.ws
 msgid "Samoa"
-msgstr ""
+msgstr "Samoa"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6499,7 +6481,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6511,15 +6492,15 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr ""
@@ -6555,23 +6536,23 @@
 #. module: base
 #: model:res.country,name:base.la
 msgid "Laos"
-msgstr ""
+msgstr "Laos"
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
-msgstr ""
+msgstr "E-mail"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr ""
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6579,6 +6560,7 @@
 msgstr ""
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6593,7 +6575,7 @@
 #. module: base
 #: model:res.country,name:base.tg
 msgid "Togo"
-msgstr ""
+msgstr "Togo"
 
 #. module: base
 #: selection:ir.module.module,license:0
@@ -6603,7 +6585,7 @@
 #. module: base
 #: selection:workflow.activity,kind:0
 msgid "Stop All"
-msgstr ""
+msgstr "Stop alle"
 
 #. module: base
 #: code:addons/orm.py:412
@@ -6644,7 +6626,7 @@
 #. module: base
 #: model:res.country,name:base.ro
 msgid "Romania"
-msgstr ""
+msgstr "Rumænien"
 
 #. module: base
 #: help:ir.cron,doall:0
@@ -6675,10 +6657,9 @@
 msgstr ""
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
-msgstr ""
+msgstr "Tidszone"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_report_xml
@@ -6717,7 +6698,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6731,15 +6712,15 @@
 #. module: base
 #: model:res.country,name:base.by
 msgid "Belarus"
-msgstr ""
+msgstr "Hviderusland"
 
 #. module: base
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr ""
 
@@ -6753,12 +6734,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
-msgstr ""
+msgstr "Normal"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr ""
@@ -6777,21 +6760,22 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
 #: field:res.widget.user,user_id:0
 msgid "User"
-msgstr ""
+msgstr "Bruger"
 
 #. module: base
 #: model:res.country,name:base.pr
 msgid "Puerto Rico"
-msgstr ""
+msgstr "Puerto Rico"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -6816,7 +6800,7 @@
 #. module: base
 #: model:res.country,name:base.ch
 msgid "Switzerland"
-msgstr ""
+msgstr "Schweiz"
 
 #. module: base
 #: model:res.country,name:base.gd
@@ -6841,17 +6825,16 @@
 #. module: base
 #: view:base.language.install:0
 msgid "Load"
-msgstr ""
+msgstr "Indlæs"
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -6862,7 +6845,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr ""
@@ -6870,7 +6853,7 @@
 #. module: base
 #: model:res.country,name:base.so
 msgid "Somalia"
-msgstr ""
+msgstr "Somalia"
 
 #. module: base
 #: selection:publisher_warranty.contract,state:0
@@ -6892,7 +6875,7 @@
 #: field:res.request,act_to:0
 #: field:res.request.history,act_to:0
 msgid "To"
-msgstr ""
+msgstr "Til"
 
 #. module: base
 #: view:ir.cron:0
@@ -6901,7 +6884,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr ""
@@ -6909,15 +6892,15 @@
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL Version 2"
-msgstr ""
+msgstr "GPL Version 2"
 
 #. module: base
 #: selection:ir.module.module,license:0
 msgid "GPL Version 3"
-msgstr ""
+msgstr "GPL Version 3"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -6939,7 +6922,7 @@
 #: field:res.partner.address,is_customer_add:0
 #: model:res.partner.category,name:base.res_partner_category_0
 msgid "Customer"
-msgstr ""
+msgstr "Kunde"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -6949,7 +6932,7 @@
 #. module: base
 #: field:ir.module.module,shortdesc:0
 msgid "Short Description"
-msgstr ""
+msgstr "Kort beskrivelse"
 
 #. module: base
 #: field:ir.actions.act_window,context:0
@@ -6975,7 +6958,7 @@
 #. module: base
 #: field:res.request.history,date_sent:0
 msgid "Date sent"
-msgstr ""
+msgstr "Dato sendt"
 
 #. module: base
 #: view:ir.sequence:0
@@ -6986,7 +6969,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7002,12 +6988,13 @@
 #. module: base
 #: model:res.country,name:base.tn
 msgid "Tunisia"
-msgstr ""
+msgstr "Tunesien"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
-msgstr ""
+msgstr "Produktion"
 
 #. module: base
 #: model:res.country,name:base.km
@@ -7047,7 +7034,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7078,19 +7065,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7099,7 +7081,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7137,7 +7119,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7150,15 +7132,15 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
-msgstr ""
+msgstr "Advarsel!"
 
 #. module: base
 #: model:res.widget,title:base.google_maps_widget
 msgid "Google Maps"
-msgstr ""
+msgstr "Google Maps"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_config
@@ -7168,6 +7150,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr ""
 
@@ -7200,7 +7183,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7210,17 +7192,17 @@
 #. module: base
 #: model:res.country,name:base.tr
 msgid "Turkey"
-msgstr ""
+msgstr "Tyrkiet"
 
 #. module: base
 #: model:res.country,name:base.fk
 msgid "Falkland Islands"
-msgstr ""
+msgstr "Falklandsøerne"
 
 #. module: base
 #: model:res.country,name:base.lb
 msgid "Lebanon"
-msgstr ""
+msgstr "Libanon"
 
 #. module: base
 #: view:ir.actions.report.xml:0
@@ -7230,13 +7212,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7263,7 +7242,7 @@
 #: view:base.language.install:0
 #: model:ir.ui.menu,name:base.menu_view_base_language_install
 msgid "Load an Official Translation"
-msgstr ""
+msgstr "Hent en officiel oversættelse"
 
 #. module: base
 #: view:res.currency:0
@@ -7296,7 +7275,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr ""
@@ -7342,6 +7321,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7352,7 +7332,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7372,10 +7352,11 @@
 msgstr ""
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
-msgstr ""
+msgstr "Kategori"
 
 #. module: base
 #: view:ir.attachment:0
@@ -7388,17 +7369,17 @@
 #: field:ir.actions.server,sms:0
 #: selection:ir.actions.server,state:0
 msgid "SMS"
-msgstr ""
+msgstr "SMS"
 
 #. module: base
 #: model:res.country,name:base.cr
 msgid "Costa Rica"
-msgstr ""
+msgstr "Costa Rica"
 
 #. module: base
 #: view:workflow.activity:0
 msgid "Conditions"
-msgstr ""
+msgstr "Betingelser"
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_other_form
@@ -7410,7 +7391,7 @@
 #: model:ir.ui.menu,name:base.menu_action_currency_form
 #: view:res.currency:0
 msgid "Currencies"
-msgstr ""
+msgstr "Valutaer"
 
 #. module: base
 #: sql_constraint:res.groups:0
@@ -7435,12 +7416,12 @@
 #. module: base
 #: model:res.country,name:base.dk
 msgid "Denmark"
-msgstr ""
+msgstr "Danmark"
 
 #. module: base
 #: field:res.country,code:0
 msgid "Country Code"
-msgstr ""
+msgstr "Lande kode"
 
 #. module: base
 #: model:ir.model,name:base.model_workflow_instance
@@ -7448,7 +7429,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr ""
@@ -7459,7 +7440,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr ""
@@ -7485,10 +7466,11 @@
 #. module: base
 #: model:res.country,name:base.ee
 msgid "Estonia"
-msgstr ""
+msgstr "Estland"
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr ""
 
@@ -7506,7 +7488,7 @@
 #. module: base
 #: model:res.country,name:base.nl
 msgid "Netherlands"
-msgstr ""
+msgstr "Holland"
 
 #. module: base
 #: model:ir.ui.menu,name:base.next_id_4
@@ -7541,7 +7523,7 @@
 #: model:ir.ui.menu,name:base.menu_emails
 #: model:ir.ui.menu,name:base.menu_mail_gateway
 msgid "Emails"
-msgstr ""
+msgstr "E-mails"
 
 #. module: base
 #: model:res.country,name:base.cd
@@ -7563,7 +7545,7 @@
 #. module: base
 #: model:res.country,name:base.jp
 msgid "Japan"
-msgstr ""
+msgstr "Japan"
 
 #. module: base
 #: field:ir.cron,numbercall:0
@@ -7591,7 +7573,7 @@
 #. module: base
 #: model:res.country,name:base.gr
 msgid "Greece"
-msgstr ""
+msgstr "Grækenland"
 
 #. module: base
 #: field:res.request,trigger_date:0
@@ -7604,6 +7586,7 @@
 msgstr ""
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr ""
@@ -7643,7 +7626,7 @@
 #: view:ir.model.fields:0
 #: field:ir.model.fields,translate:0
 msgid "Translate"
-msgstr ""
+msgstr "Oversæt"
 
 #. module: base
 #: field:res.request.history,body:0
@@ -7651,12 +7634,11 @@
 msgstr ""
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
-msgstr ""
+msgstr "Send e-mail"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr ""
@@ -7692,7 +7674,7 @@
 #: model:ir.ui.menu,name:base.menu_procurement_management_supplier_name
 #: view:res.partner:0
 msgid "Suppliers"
-msgstr ""
+msgstr "Leverandører"
 
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
@@ -7723,18 +7705,20 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr ""
 
 #. module: base
 #: model:res.country,name:base.gl
 msgid "Greenland"
-msgstr ""
+msgstr "Grønland"
 
 #. module: base
 #: field:res.partner.bank,acc_number:0
 msgid "Account Number"
-msgstr ""
+msgstr "Kontonummer"
 
 #. module: base
 #: view:res.lang:0
@@ -7749,7 +7733,7 @@
 #. module: base
 #: model:res.country,name:base.cy
 msgid "Cyprus"
-msgstr ""
+msgstr "Cypern"
 
 #. module: base
 #: view:base.module.import:0
@@ -7761,16 +7745,16 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
-msgstr ""
+msgstr "Emne"
 
 #. module: base
 #: field:res.request,act_from:0
 #: field:res.request.history,act_from:0
 msgid "From"
-msgstr ""
+msgstr "Fra"
 
 #. module: base
 #: view:res.users:0
@@ -7796,7 +7780,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -7811,7 +7795,7 @@
 #. module: base
 #: model:res.country,name:base.cn
 msgid "China"
-msgstr ""
+msgstr "Kina"
 
 #. module: base
 #: code:addons/base/res/res_user.py:516
@@ -7841,7 +7825,7 @@
 #. module: base
 #: model:res.country,name:base.id
 msgid "Indonesia"
-msgstr ""
+msgstr "Indonesien"
 
 #. module: base
 #: view:base.update.translations:0
@@ -7861,7 +7845,7 @@
 #. module: base
 #: model:res.country,name:base.bg
 msgid "Bulgaria"
-msgstr ""
+msgstr "Bulgarien"
 
 #. module: base
 #: view:publisher_warranty.contract.wizard:0
@@ -7871,7 +7855,7 @@
 #. module: base
 #: model:res.country,name:base.ao
 msgid "Angola"
-msgstr ""
+msgstr "Angola"
 
 #. module: base
 #: model:res.country,name:base.tf
@@ -7886,7 +7870,7 @@
 #: field:res.currency,name:0
 #: field:res.currency.rate,currency_id:0
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 #. module: base
 #: field:res.partner.canal,name:0
@@ -7904,7 +7888,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr ""
@@ -7915,9 +7898,10 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
-msgstr ""
+msgstr "Administration"
 
 #. module: base
 #: view:base.module.update:0
@@ -7953,7 +7937,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr ""
@@ -7971,14 +7954,15 @@
 #. module: base
 #: model:res.country,name:base.ki
 msgid "Kiribati"
-msgstr ""
+msgstr "Kiribati"
 
 #. module: base
 #: model:res.country,name:base.iq
 msgid "Iraq"
-msgstr ""
+msgstr "Irak"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr ""
@@ -7986,14 +7970,14 @@
 #. module: base
 #: model:res.country,name:base.cl
 msgid "Chile"
-msgstr ""
+msgstr "Chile"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_address_book
 #: model:ir.ui.menu,name:base.menu_config_address_book
 #: model:ir.ui.menu,name:base.menu_procurement_management_supplier
 msgid "Address Book"
-msgstr ""
+msgstr "Adressebog"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_sequence_type
@@ -8003,15 +7987,15 @@
 #. module: base
 #: selection:base.language.export,format:0
 msgid "CSV File"
-msgstr ""
+msgstr "CSV fil"
 
 #. module: base
 #: field:res.company,account_no:0
 msgid "Account No."
-msgstr ""
+msgstr "Konto nummer"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr ""
@@ -8034,7 +8018,7 @@
 #. module: base
 #: model:res.country,name:base.dj
 msgid "Djibouti"
-msgstr ""
+msgstr "Djibouti"
 
 #. module: base
 #: field:ir.translation,value:0
@@ -8044,10 +8028,10 @@
 #. module: base
 #: model:res.country,name:base.ag
 msgid "Antigua and Barbuda"
-msgstr ""
+msgstr "Antigua og Barbuda"
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8057,10 +8041,9 @@
 #. module: base
 #: model:res.country,name:base.zr
 msgid "Zaire"
-msgstr ""
+msgstr "Zaire"
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8084,14 +8067,18 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr ""
 
 #. module: base
 #: view:res.request:0
 msgid "Reply"
-msgstr ""
+msgstr "Svar"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -8112,7 +8099,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8139,7 +8126,7 @@
 msgstr ""
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr ""
@@ -8166,49 +8153,51 @@
 #. module: base
 #: model:res.country,name:base.hr
 msgid "Croatia"
-msgstr ""
+msgstr "Kroatien"
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr ""
 
 #. module: base
 #: model:res.country,name:base.tm
 msgid "Turkmenistan"
-msgstr ""
+msgstr "Turkmenistan"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
-msgstr ""
+msgstr "Fejl!"
 
 #. module: base
 #: model:res.country,name:base.pm
@@ -8227,6 +8216,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr ""
@@ -8239,12 +8229,12 @@
 #. module: base
 #: model:res.country,name:base.tz
 msgid "Tanzania"
-msgstr ""
+msgstr "Tanzania"
 
 #. module: base
 #: selection:base.language.install,lang:0
 msgid "Danish / Dansk"
-msgstr ""
+msgstr "Danish / Dansk"
 
 #. module: base
 #: selection:ir.model.fields,select_level:0
@@ -8296,7 +8286,6 @@
 msgstr ""
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr ""
@@ -8309,10 +8298,9 @@
 #. module: base
 #: view:res.request:0
 msgid "Send"
-msgstr ""
+msgstr "Send"
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr ""
@@ -8370,7 +8358,7 @@
 #. module: base
 #: model:res.country,name:base.do
 msgid "Dominican Republic"
-msgstr ""
+msgstr "Den Dominikanske Republik"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -8378,7 +8366,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8388,7 +8376,7 @@
 #. module: base
 #: model:res.country,name:base.sa
 msgid "Saudi Arabia"
-msgstr ""
+msgstr "Saudi-Arabien"
 
 #. module: base
 #: help:res.partner,supplier:0
@@ -8398,6 +8386,7 @@
 msgstr ""
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr ""
@@ -8408,7 +8397,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr ""
@@ -8432,7 +8421,7 @@
 #. module: base
 #: field:ir.actions.report.xml,report_xml:0
 msgid "XML path"
-msgstr ""
+msgstr "XML sti"
 
 #. module: base
 #: selection:ir.actions.todo,restart:0
@@ -8442,12 +8431,12 @@
 #. module: base
 #: model:res.country,name:base.gn
 msgid "Guinea"
-msgstr ""
+msgstr "Guinea"
 
 #. module: base
 #: model:res.country,name:base.lu
 msgid "Luxembourg"
-msgstr ""
+msgstr "Luxembourg"
 
 #. module: base
 #: help:ir.values,key2:0
@@ -8456,7 +8445,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr ""
@@ -8484,37 +8473,36 @@
 #. module: base
 #: model:res.country,name:base.sv
 msgid "El Salvador"
-msgstr ""
+msgstr "El Salvador"
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
-msgstr ""
+msgstr "Telefon"
 
 #. module: base
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
 #: view:workflow.instance:0
 #: view:workflow.workitem:0
 msgid "Active"
-msgstr ""
+msgstr "Aktiv"
 
 #. module: base
 #: model:res.country,name:base.th
 msgid "Thailand"
-msgstr ""
+msgstr "Thailand"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_crm_config_lead
@@ -8535,7 +8523,7 @@
 #: selection:workflow.activity,join_mode:0
 #: selection:workflow.activity,split_mode:0
 msgid "And"
-msgstr ""
+msgstr "Og"
 
 #. module: base
 #: field:ir.model.fields,relation:0
@@ -8551,7 +8539,7 @@
 #. module: base
 #: model:res.country,name:base.uz
 msgid "Uzbekistan"
-msgstr ""
+msgstr "Usbekistan"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_act_window
@@ -8572,7 +8560,7 @@
 #. module: base
 #: model:res.country,name:base.tw
 msgid "Taiwan"
-msgstr ""
+msgstr "Taiwan"
 
 #. module: base
 #: model:ir.model,name:base.model_res_currency_rate
@@ -8598,6 +8586,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -8625,13 +8614,14 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr ""
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -8666,7 +8656,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -8682,7 +8672,7 @@
 #: field:base.language.export,name:0
 #: field:ir.attachment,datas_fname:0
 msgid "Filename"
-msgstr ""
+msgstr "Filnavn"
 
 #. module: base
 #: field:ir.model,access_ids:0
@@ -8693,7 +8683,7 @@
 #. module: base
 #: model:res.country,name:base.sk
 msgid "Slovak Republic"
-msgstr ""
+msgstr "Slovakiet"
 
 #. module: base
 #: model:ir.ui.menu,name:base.publisher_warranty
@@ -8708,17 +8698,17 @@
 #. module: base
 #: model:res.country,name:base.ar
 msgid "Argentina"
-msgstr ""
+msgstr "Argentina"
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr ""
 
 #. module: base
 #: model:res.country,name:base.bh
 msgid "Bahrain"
-msgstr ""
+msgstr "Bahrain"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_12
@@ -8733,14 +8723,14 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
-msgstr ""
+msgstr "Virksomhed"
 
 #. module: base
 #: view:res.users:0
@@ -8780,7 +8770,7 @@
 #. module: base
 #: model:res.country,name:base.jm
 msgid "Jamaica"
-msgstr ""
+msgstr "Jamaica"
 
 #. module: base
 #: model:ir.actions.act_window,help:base.action_partner_category_form
@@ -8797,10 +8787,11 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
-msgstr ""
+msgstr "Advarsel!"
 
 #. module: base
 #: selection:base.language.install,lang:0
@@ -8840,7 +8831,7 @@
 #. module: base
 #: model:res.country,name:base.rw
 msgid "Rwanda"
-msgstr ""
+msgstr "Rwanda"
 
 #. module: base
 #: view:ir.sequence:0
@@ -8865,7 +8856,7 @@
 #. module: base
 #: model:res.country,name:base.sg
 msgid "Singapore"
-msgstr ""
+msgstr "Singapore"
 
 #. module: base
 #: selection:ir.actions.act_window,target:0
@@ -8888,6 +8879,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -8895,7 +8887,7 @@
 #: field:res.partner.address,country_id:0
 #: field:res.partner.bank,country_id:0
 msgid "Country"
-msgstr ""
+msgstr "Land"
 
 #. module: base
 #: field:ir.model.fields,complete_name:0
@@ -8918,12 +8910,12 @@
 #. module: base
 #: field:res.partner.category,name:0
 msgid "Category Name"
-msgstr ""
+msgstr "Kategori Navn"
 
 #. module: base
 #: model:res.partner.category,name:base.res_partner_category_15
 msgid "IT sector"
-msgstr ""
+msgstr "IT sektor"
 
 #. module: base
 #: view:ir.actions.act_window:0
@@ -8955,7 +8947,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr ""
@@ -8975,7 +8967,7 @@
 #: selection:ir.ui.view,type:0
 #: selection:wizard.ir.model.menu.create.line,view_type:0
 msgid "Graph"
-msgstr ""
+msgstr "Graf"
 
 #. module: base
 #: model:ir.model,name:base.model_ir_actions_server
@@ -8994,6 +8986,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9017,7 +9011,7 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_localisation
 msgid "Localisation"
-msgstr ""
+msgstr "Lokalisering"
 
 #. module: base
 #: view:ir.actions.server:0
@@ -9031,6 +9025,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr ""
@@ -9070,7 +9065,7 @@
 #. module: base
 #: field:ir.actions.server,mobile:0
 msgid "Mobile No"
-msgstr ""
+msgstr "Mobil nr."
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_by_category
@@ -9084,7 +9079,7 @@
 #. module: base
 #: view:base.module.upgrade:0
 msgid "System Update"
-msgstr ""
+msgstr "Systemopdatering"
 
 #. module: base
 #: selection:ir.translation,type:0
@@ -9099,18 +9094,22 @@
 #. module: base
 #: model:res.country,name:base.sc
 msgid "Seychelles"
-msgstr ""
+msgstr "Seychellerne"
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
-msgstr ""
+msgstr "Bankkonti"
 
 #. module: base
 #: model:res.country,name:base.sl
 msgid "Sierra Leone"
-msgstr ""
+msgstr "Sierra Leone"
 
 #. module: base
 #: view:res.company:0
@@ -9124,12 +9123,12 @@
 msgstr ""
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
-msgstr ""
+msgstr "Konto ejer"
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr ""
@@ -9151,11 +9150,10 @@
 msgstr ""
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
-msgstr ""
+msgstr "Funktion"
 
 #. module: base
 #: view:res.widget:0
@@ -9165,12 +9163,12 @@
 #. module: base
 #: selection:ir.actions.todo,restart:0
 msgid "Never"
-msgstr ""
+msgstr "Aldrig"
 
 #. module: base
 #: selection:res.partner.address,type:0
 msgid "Delivery"
-msgstr ""
+msgstr "Levering"
 
 #. module: base
 #: model:res.partner.title,name:base.res_partner_title_pvt_ltd
@@ -9189,7 +9187,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr ""
@@ -9197,7 +9195,7 @@
 #. module: base
 #: model:res.country,name:base.kp
 msgid "North Korea"
-msgstr ""
+msgstr "Nordkorea"
 
 #. module: base
 #: selection:ir.actions.server,state:0
@@ -9240,7 +9238,7 @@
 #. module: base
 #: model:res.country,name:base.lk
 msgid "Sri Lanka"
-msgstr ""
+msgstr "Sri Lanka"
 
 #. module: base
 #: selection:base.language.install,lang:0

=== modified file 'bin/addons/base/i18n/de.po'
--- bin/addons/base/i18n/de.po	2011-03-31 06:35:10 +0000
+++ bin/addons/base/i18n/de.po	2012-05-09 12:37:21 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: OpenERP Server 5.0.4\n"
 "Report-Msgid-Bugs-To: support@openerp.com\n"
 "POT-Creation-Date: 2011-01-11 11:14+0000\n"
-"PO-Revision-Date: 2011-03-30 09:01+0000\n"
-"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
+"PO-Revision-Date: 2012-02-07 19:42+0000\n"
+"Last-Translator: Mustufa Rangwala (Open ERP) <mra@tinyerp.com>\n"
 "Language-Team: German <kde-i18n-doc@kde.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-03-31 06:35+0000\n"
-"X-Generator: Launchpad (build 12559)\n"
+"X-Launchpad-Export-Date: 2012-03-07 05:43+0000\n"
+"X-Generator: Launchpad (build 14907)\n"
 
 #. module: base
 #: view:ir.filters:0
@@ -39,10 +39,10 @@
 #. module: base
 #: selection:ir.property,type:0
 msgid "DateTime"
-msgstr "Datum Zeit"
+msgstr "Datum mit Uhrzeit"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -76,7 +76,7 @@
 #: field:workflow.transition,wkf_id:0
 #: field:workflow.workitem,wkf_id:0
 msgid "Workflow"
-msgstr "Workflow"
+msgstr "Arbeitsablauf"
 
 #. module: base
 #: view:partner.sms.send:0
@@ -114,7 +114,7 @@
 msgstr "Erstellte Ansichten"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -142,16 +142,16 @@
 #. module: base
 #: field:ir.actions.act_window,target:0
 msgid "Target Window"
-msgstr "Target Window"
+msgstr "Ziel Fenster"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
-msgstr "Warnung!"
+msgstr "Achtung!"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -162,7 +162,7 @@
 "Python Code vor, idealerweise durch ein eigenes Modul."
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr "Abhängigkeitsfehler"
@@ -178,8 +178,7 @@
 msgstr "Swasiland"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr "erstellt."
@@ -190,7 +189,7 @@
 msgstr "Holzlieferaten"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -254,6 +253,8 @@
 msgstr "Max. Groesse"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Kontakt"
@@ -284,7 +285,7 @@
 msgstr "Assistent Name"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr "Fehler bei group_by Argument"
@@ -328,7 +329,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Gruppe"
 
@@ -372,7 +372,7 @@
 msgstr "Niederländische Antillen"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -444,7 +444,7 @@
 msgstr "Plane Upgrade"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr "Der Schlüssel '%s' konnte im Auswahlfeld '%s' nicht gefunden werden."
@@ -492,7 +492,7 @@
 msgstr "Sonstige Lieferanten"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr ""
@@ -515,6 +515,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr "Beschreibung Datenmodell"
 
@@ -553,6 +554,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr "Automatische Aktionen"
 
@@ -611,7 +613,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Sequenzen"
 
@@ -782,7 +783,6 @@
 msgstr "Andorra, Fürstentum"
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr "Unterkategorien"
@@ -803,6 +803,7 @@
 msgstr "%B - Kompletter Monatsname"
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -819,7 +820,7 @@
 msgstr "Typ"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -839,7 +840,7 @@
 msgstr "Pinnwand Personalwesen"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr ""
@@ -875,7 +876,7 @@
 msgstr "Verbindungen"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -956,6 +957,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr "Website"
@@ -981,7 +983,7 @@
 msgstr "Marschall-Inseln"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr "Die Änderung des Moduls für ein Feld ist nicht zulässig."
@@ -998,7 +1000,7 @@
 msgstr "Suche"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -1020,7 +1022,7 @@
 msgstr "2. Gruppenspezifische Regeln werden mit einem UND Operator verbunden"
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr "Vorgang abgebrochen"
@@ -1080,6 +1082,7 @@
 msgstr "Es existiert keine Sprache mit dem Code \"%s\""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1183,7 +1186,7 @@
 msgstr "Bei Erzeugung"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1195,7 +1198,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr "Login"
@@ -1336,8 +1338,8 @@
 "object.cost_price"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr " (Kopie)"
@@ -1396,6 +1398,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1417,7 +1420,7 @@
 msgstr "Formel"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr "Kann den root Benutzer nicht entfernen!"
@@ -1428,8 +1431,9 @@
 msgstr "Malawi"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr "%s (copy)"
@@ -1568,7 +1572,7 @@
 msgstr "Bahamas"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1635,9 +1639,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr "Gruppen"
@@ -1684,7 +1686,7 @@
 "'calendar', etc. (Default: tree,form)"
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr "Ein Beleg wurde seit der letzten Ansicht geändert (%s:%d)"
@@ -1734,8 +1736,6 @@
 msgstr "Färöer Inseln"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr "Vereinfacht"
@@ -1766,7 +1766,7 @@
 msgstr "Madagaskar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1949,7 +1949,8 @@
 msgstr "Pakistan"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr "Fehlerhafte Objekt Architektur !"
@@ -1960,12 +1961,14 @@
 msgstr "EMail Nachrichten"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1997,7 +2000,7 @@
 msgstr "Neuseeland"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -2065,7 +2068,7 @@
 msgstr "XSL"
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr "Kann Modul '%s' nicht upgraden. Es ist gar nicht installiert."
@@ -2120,6 +2123,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr "Bankkontotyp"
@@ -2136,8 +2140,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr "Bild / Photo"
 
@@ -2187,7 +2189,7 @@
 msgstr "Personalwesen"
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2209,8 +2211,6 @@
 msgstr "Entwurf"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr "Erweitert"
@@ -2356,7 +2356,7 @@
 msgstr "Herr"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr "Es wurde keine Ansicht des Typs '%s'  für diese Struktur definiert!"
@@ -2389,15 +2389,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr "Module"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2447,8 +2447,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr "EMail senden"
 
@@ -2458,7 +2458,7 @@
 msgstr "Mayotte"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr "Bitte spezifiziere Startaktion !"
@@ -2508,13 +2508,13 @@
 msgstr "Wenn nicht definiert, dann Standardwert für neue Datensätze"
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr "Rekursive Einträge entdeckt"
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr "Fehler durch Abhängigkeiten zwischen Modulen !"
@@ -2540,8 +2540,8 @@
 "Value Added Tax number. Check the box if the partner is subjected to the "
 "VAT. Used by the VAT legal statement."
 msgstr ""
-"Umsatzsteuer Identifikationsnummer. Aktivieren Sie die Option, wenn der "
-"Partner Ust-pflichtig ist. Wird von der Ust-Voranmeldung verwendet."
+"Umsatzsteuer Identifikationsnummer. Häckchen setzen, wenn der Partner Ust-"
+"pflichtig ist. Wird von der Ust-Voranmeldung verwendet."
 
 #. module: base
 #: model:ir.model,name:base.model_maintenance_contract
@@ -2598,7 +2598,7 @@
 #. module: base
 #: field:res.partner,vat:0
 msgid "VAT"
-msgstr "USt."
+msgstr "USt-IdNr. / UID"
 
 #. module: base
 #: view:res.lang:0
@@ -2636,7 +2636,7 @@
 msgstr "Hr."
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2646,7 +2646,7 @@
 "%s"
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2662,7 +2662,7 @@
 msgstr "Nauru"
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr "Die Zertifikats-ID muss eindeutig sein!"
@@ -2709,7 +2709,6 @@
 "können Sie auf Launchpad finden."
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2742,7 +2741,7 @@
 msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr "Fehlerhafte Architektur!"
@@ -2982,13 +2981,14 @@
 msgstr "Surinam"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr "Marketing"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr "Bankkonto"
 
@@ -3029,7 +3029,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr "Standard"
 
@@ -3065,6 +3067,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -3087,7 +3090,7 @@
 msgstr "%c - Datums und Zeitangabe."
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -3123,6 +3126,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -3136,7 +3141,7 @@
 msgstr "Fallsteuerung"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3212,7 +3217,7 @@
 msgstr "Lesotho"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr "Sie können die Vorlage '%s' nicht entfernen !"
@@ -3243,7 +3248,7 @@
 msgstr "Systemkonfiguration beendet"
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr "Fehler während der Prüfung des Feldes field(s) %s: %s"
@@ -3279,7 +3284,8 @@
 msgstr "Benin"
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr "Der Wartungsvertrag wurde bereits im System registriert."
@@ -3310,7 +3316,7 @@
 msgstr "API ID"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3481,7 +3487,7 @@
 msgstr "Setze Löschberechtigung"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3665,10 +3671,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3679,7 +3687,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3704,7 +3713,7 @@
 msgstr "Montserrat"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3719,7 +3728,6 @@
 msgstr "Begriffe"
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3811,7 +3819,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr "Gruppiere nach"
@@ -3885,14 +3892,13 @@
 msgstr "USA kleinere amerikanische Überseeinseln"
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr "Bank Typ"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr "Der Name der Gruppe kann nicht mit einem \"-\" beginnen"
@@ -3914,7 +3920,7 @@
 msgstr "Gujarati / ગુજરાતી"
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3967,9 +3973,9 @@
 msgstr "Guadeloupe (Frankreich)"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr "Benutzerfehler"
@@ -4063,6 +4069,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -4081,7 +4088,7 @@
 msgstr "Währungsumrechner"
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr ""
@@ -4142,7 +4149,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -4204,7 +4211,6 @@
 msgstr "Anfrage Historie"
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4251,6 +4257,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4304,7 +4311,6 @@
 msgstr "Objekte Mapping"
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr "Konvertiere Werte zur Basiswährung (Rate)"
@@ -4316,8 +4322,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr "res_config_contents"
 
@@ -4379,7 +4383,7 @@
 msgstr "ir.attachment"
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4469,7 +4473,7 @@
 #. module: base
 #: selection:res.request,priority:0
 msgid "Low"
-msgstr "Ausreichend"
+msgstr "Niedrig"
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_audit
@@ -4492,6 +4496,7 @@
 msgstr "Auswahl des Objektes vom Modell, für das der Arbeitsfluss gilt."
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr "Mitarbeiter"
@@ -4502,7 +4507,10 @@
 msgstr "Erzeuge Zugriff"
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr "Bundesländer"
 
@@ -4527,8 +4535,6 @@
 msgstr "Britisches Territorium im Indischen Ozean"
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr "Schnittstelle"
@@ -4544,7 +4550,6 @@
 msgstr "Aktualisiere Bestätigungsdatum"
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr "Typfeld-Text"
@@ -4576,8 +4581,6 @@
 msgstr "Vietnam"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr "Signatur"
@@ -4615,7 +4618,7 @@
 msgstr "Falsch bedeutet \"für alle Benutzer\""
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr "Der Name des Moduls muss eindeutig sein!"
@@ -4632,8 +4635,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr "Nachricht"
@@ -4656,7 +4659,7 @@
 msgstr "Partner Kontakte"
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4671,7 +4674,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr "Starte Installation"
@@ -4703,7 +4705,7 @@
 "können auch manuell im Administrator Menu aufgerufen werden."
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4713,7 +4715,7 @@
 "oder dem Menü Benutzer) für eine Änderung des Passworts."
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr "Fehler bei Feldern für Kalenderansicht"
@@ -4733,7 +4735,6 @@
 "einem anderen Feld ist"
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr "Das Unternehmen, für das der Benutzer gerade angemeldet ist."
@@ -4784,8 +4785,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr "Fertig"
 
@@ -4876,8 +4875,8 @@
 msgstr "Saint Vincent & Grenadines"
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr "Passwort"
@@ -4956,6 +4955,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4987,7 +4987,7 @@
 msgstr "Einstellungen jetzt vornehmen"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr "Ungültiger Modulname in der Aktionsdefinition."
@@ -5050,7 +5050,7 @@
 msgstr "Dutch / Nederlands"
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -5098,7 +5098,7 @@
 msgstr "Etiketten"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr "EMail Versender"
 
@@ -5118,7 +5118,6 @@
 msgstr "Französisch (CH) / Français (CH)"
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -5139,7 +5138,7 @@
 "Die existierende Methode wurde für dieses Objekt nicht implementiert !"
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -5164,7 +5163,6 @@
 msgstr "base.update.translations"
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr "Oberkategorie"
@@ -5177,7 +5175,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr "Kontakt"
 
@@ -5214,7 +5211,7 @@
 msgstr "ir.server.object.lines"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr "Modul %s: ungültiges Zertifikat"
@@ -5251,7 +5248,7 @@
 msgstr "Nigeria"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5439,7 +5436,7 @@
 msgstr "Update der Module"
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
@@ -5448,7 +5445,7 @@
 "Moduleabhängigkeit nicht  erfüllt werden konnte: \"%s\""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5472,7 +5469,7 @@
 msgstr "Thailand / ภาษาไทย"
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr "Das Objekt %s existiert nicht"
@@ -5561,7 +5558,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr "Importiere Modul"
 
@@ -5608,8 +5604,8 @@
 msgstr "Iteration"
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr "Benutzer Fehler"
@@ -5630,7 +5626,7 @@
 msgstr "Reunion (franz.)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5656,12 +5652,12 @@
 msgstr "Solomoninseln"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr "ZugrifffFehler"
@@ -5720,7 +5716,6 @@
 msgstr "Tonga"
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr "Module Kategorie"
@@ -5850,7 +5845,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5867,8 +5861,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr "Unternehmen"
@@ -5884,13 +5876,13 @@
 msgstr "res.widget"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr "Modul %s existiert nicht!"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5911,13 +5903,13 @@
 msgstr "Python Code"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr "Kann die Module Datei nicht erzeugen: %s!"
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr "Der Kern von OpenERP, wird für alle Installationen gebraucht"
 
@@ -5928,9 +5920,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr "Abbrechen"
@@ -6035,7 +6029,7 @@
 msgstr "Ansicht Type: 'tree' für Listen, 'Form' für andere Ansichten"
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -6052,7 +6046,6 @@
 msgstr "Honduras"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -6097,13 +6090,12 @@
 msgstr "Felder Beschreibung"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -6142,7 +6134,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr "Basis"
@@ -6177,9 +6169,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr "Wert"
 
@@ -6187,7 +6177,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr "Kurzbezeichnung"
@@ -6213,7 +6202,6 @@
 msgstr "Hilfe"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6258,7 +6246,7 @@
 #. module: base
 #: view:ir.sequence:0
 msgid "Current Year with Century: %(year)s"
-msgstr "Aktuelles JAhr mit Jahrhundert: %(year)s"
+msgstr "Aktuelles Jahr mit Jahrhundert: %(year)s"
 
 #. module: base
 #: field:ir.exports,export_fields:0
@@ -6300,7 +6288,8 @@
 msgstr "Afghanistan"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr "Fehler !"
@@ -6322,13 +6311,14 @@
 msgstr "Art"
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr "Diese Methode existiert zwischenzeitlich nicht mehr"
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr "Fax"
@@ -6396,7 +6386,6 @@
 "validieren."
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6433,7 +6422,6 @@
 msgstr "Rechte für Daten"
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr "Benutzername"
@@ -6501,7 +6489,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr "Erledigt"
 
@@ -6524,6 +6511,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6552,9 +6540,7 @@
 msgstr "Estonian / Eesti keel"
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr "E-Mail"
 
@@ -6597,21 +6583,18 @@
 "Um die offiziellen Übersetzungen zu sehen, verwenden Sie bitte diese Links"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
 "these groups: %s."
 msgstr ""
-"Sie haben kein Leserecht für diesen Beleg (%s) ! Stellen Sie sicher, dass "
-"der Benutzer Mitglied der folgenden Gruppe ist: %s."
+"Sie haben kein Leserecht für diesen Satz (%s) ! Stellen Sie sicher, dass der "
+"Benutzer Mitglied der folgenden Gruppe ist: %s."
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr "Adresse"
 
@@ -6679,6 +6662,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr "Standard Wert"
 
@@ -6693,7 +6677,7 @@
 msgstr "St. Kitts und Nevis"
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6714,9 +6698,7 @@
 "Ansichte eingesetzt."
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr "Objekt Bezeichnung"
 
@@ -6797,7 +6779,7 @@
 msgstr "Samoa"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6808,7 +6790,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6822,15 +6803,15 @@
 msgstr "untergeordnete ID's"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr "Problem in Konfiguration 'Datensatznummer' in der Server Aktion!"
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr "ValidierungsFehler"
@@ -6873,19 +6854,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr "E-Mail:"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr "Aktionen"
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6895,6 +6876,7 @@
 "Ein Tortendiagramm kann damit nicht gezeichnet werden."
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6992,7 +6974,6 @@
 msgstr "Anschlußmodus"
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr "Zeitzone"
@@ -7034,7 +7015,7 @@
 msgstr "Pinnwand Personalleitung"
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -7056,9 +7037,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr "Aktion Bezeichnung"
 
@@ -7075,12 +7056,14 @@
 "um den Zugriff auf Anwendungen zu steuern."
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr "Normal"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr "Straße 2"
@@ -7099,10 +7082,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -7166,14 +7150,13 @@
 msgstr "Lade"
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr "Der Name des Benutzer, verwendet für Suche und Listen."
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr "Datenintegritäts Fehler"
@@ -7184,7 +7167,7 @@
 msgstr "ir.wizard.screen"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr "Die Feldlänge kann niemals kleiner als 1 sein!"
@@ -7223,7 +7206,7 @@
 msgstr "Argumente"
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr "Die Datenbank ID existiert nicht: %s : %s"
@@ -7239,7 +7222,7 @@
 msgstr "GPL Version 3"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr "Schlüssel '%s' wurde im Auswahlfeld '%s' nicht gefunden"
@@ -7308,7 +7291,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7327,6 +7313,7 @@
 msgstr "Tunesien"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr "Fertigung"
@@ -7369,7 +7356,7 @@
 msgstr "Kopiere Objekt"
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7402,19 +7389,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7423,7 +7405,7 @@
 msgstr "Objekt"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7466,7 +7448,7 @@
 " Eine negative Zahl bedeutet \"unlimitiert\""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7481,7 +7463,7 @@
 msgstr "Benutzer Referenz"
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr "Warnung !"
@@ -7499,6 +7481,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr "Konfiguration"
 
@@ -7531,7 +7514,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7561,13 +7543,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7627,7 +7606,7 @@
 msgstr "workflow.triggers"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr "Fehlerhafte Sucheinstellungen"
@@ -7675,6 +7654,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7685,7 +7665,7 @@
 msgstr "Aktion"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7708,7 +7688,8 @@
 msgstr "Felder Typen"
 
 #. module: base
-#: view:ir.module.module:0
+#: view:ir.actions.todo:0
+#: field:ir.actions.todo,category_id:0
 #: field:ir.module.module,category_id:0
 msgid "Category"
 msgstr "Kategorie"
@@ -7784,7 +7765,7 @@
 msgstr "workflow.instance"
 
 #. module: base
-#: code:addons/orm.py:278
+#: code:addons/orm.py:471
 #, python-format
 msgid "Unknown attribute %s in %s "
 msgstr "Unbekannte Attribute %s in %s "
@@ -7795,7 +7776,7 @@
 msgstr "10. %S              ==> 20"
 
 #. module: base
-#: code:addons/fields.py:106
+#: code:addons/fields.py:122
 #, python-format
 msgid "undefined get method !"
 msgstr "nicht definierte 'get' Funktion"
@@ -7826,7 +7807,8 @@
 msgstr "Estland"
 
 #. module: base
-#: model:ir.ui.menu,name:base.dashboard
+#: model:ir.module.module,shortdesc:base.module_board
+#: model:ir.ui.menu,name:base.menu_dashboard
 msgid "Dashboards"
 msgstr "Pinnwände"
 
@@ -7949,6 +7931,7 @@
 msgstr "Croatian / hrvatski jezik"
 
 #. module: base
+#: field:base.language.import,overwrite:0
 #: field:base.language.install,overwrite:0
 msgid "Overwrite Existing Terms"
 msgstr "Überschreibe existierende Begriffe"
@@ -7996,12 +7979,11 @@
 msgstr "Hauptteil Seite"
 
 #. module: base
-#: view:partner.wizard.spam:0
+#: view:partner.massmail.wizard:0
 msgid "Send Email"
 msgstr "Send Email"
 
 #. module: base
-#: field:res.config.users,menu_id:0
 #: field:res.users,menu_id:0
 msgid "Menu Action"
 msgstr "Menü Aktion"
@@ -8071,6 +8053,8 @@
 #: view:ir.model:0
 #: view:ir.rule:0
 #: view:res.groups:0
+#: model:res.groups,name:base.group_erp_manager
+#: view:res.users:0
 msgid "Access Rights"
 msgstr "Zugriffsrechte"
 
@@ -8112,7 +8096,7 @@
 
 #. module: base
 #: field:ir.actions.server,subject:0
-#: field:partner.wizard.spam,subject:0
+#: field:partner.massmail.wizard,subject:0
 #: field:res.request,name:0
 msgid "Subject"
 msgstr "Thema"
@@ -8149,7 +8133,7 @@
 "Beschaffungsdisposition."
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:219
+#: code:addons/base/ir/ir_model.py:251
 #, python-format
 msgid ""
 "The Selection Options expression is must be in the [('key','Label'), ...] "
@@ -8269,7 +8253,6 @@
 msgstr "Ltd"
 
 #. module: base
-#: field:ir.values,res_id:0
 #: field:res.log,res_id:0
 msgid "Object ID"
 msgstr "Objekt Kurzb."
@@ -8280,7 +8263,8 @@
 msgstr "Querformat"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_administration
+#: model:ir.actions.todo.category,name:base.category_administration_config
+#: model:ir.module.category,name:base.module_category_administration
 msgid "Administration"
 msgstr "Administration"
 
@@ -8318,7 +8302,6 @@
 msgstr "Symbol"
 
 #. module: base
-#: help:res.config.users,login:0
 #: help:res.users,login:0
 msgid "Used to log into the system"
 msgstr "Für die Systemanmeldung"
@@ -8344,6 +8327,7 @@
 msgstr "Irak"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_association
 #: model:ir.ui.menu,name:base.menu_association
 msgid "Association"
 msgstr "Verein"
@@ -8376,7 +8360,7 @@
 msgstr "Konto Nummer"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
+#: code:addons/base/res/res_lang.py:187
 #, python-format
 msgid "Base Language 'en_US' can not be deleted !"
 msgstr "Basis Sprache 'en_US' kann nicht gelöscht werden !"
@@ -8412,7 +8396,7 @@
 msgstr "Antigua und Barbados"
 
 #. module: base
-#: code:addons/orm.py:3166
+#: code:addons/orm.py:3669
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -8427,7 +8411,6 @@
 msgstr "Zaire"
 
 #. module: base
-#: field:ir.model.data,res_id:0
 #: field:ir.translation,res_id:0
 #: field:workflow.instance,res_id:0
 #: field:workflow.triggers,res_id:0
@@ -8451,7 +8434,11 @@
 msgstr "Aktualisiere Modulliste"
 
 #. module: base
+#: code:addons/base/res/res_users.py:755
+#: code:addons/base/res/res_users.py:892
 #: selection:res.partner.address,type:0
+#: view:res.users:0
+#, python-format
 msgid "Other"
 msgstr "Andere"
 
@@ -8479,7 +8466,7 @@
 msgstr "Autospeicherung..."
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "The osv_memory field can only be compared with = and != operator."
 msgstr ""
@@ -8507,7 +8494,7 @@
 msgstr "Regeln werden für osv.memory Objekte nicht unterstützt!"
 
 #. module: base
-#: model:ir.ui.menu,name:base.menu_event_association
+#: model:ir.module.module,shortdesc:base.module_event
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
 msgstr "Veranstaltungs Organisation"
@@ -8524,7 +8511,7 @@
 #. module: base
 #: selection:res.request,priority:0
 msgid "High"
-msgstr "Gut"
+msgstr "Hoch"
 
 #. module: base
 #: field:ir.exports.line,export_id:0
@@ -8537,7 +8524,8 @@
 msgstr "Kroatien"
 
 #. module: base
-#: help:res.bank,bic:0
+#: field:res.bank,bic:0
+#: field:res.partner.bank,bank_bic:0
 msgid "Bank Identifier Code"
 msgstr "Bank Identifikation"
 
@@ -8547,33 +8535,34 @@
 msgstr "Turkmenistan"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
-#: code:addons/base/ir/ir_actions.py:629
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
-#: code:addons/base/ir/ir_model.py:114
-#: code:addons/base/ir/ir_model.py:204
-#: code:addons/base/ir/ir_model.py:218
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_actions.py:653
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
+#: code:addons/base/ir/ir_model.py:139
+#: code:addons/base/ir/ir_model.py:236
 #: code:addons/base/ir/ir_model.py:250
-#: code:addons/base/ir/ir_model.py:255
-#: code:addons/base/ir/ir_model.py:258
-#: code:addons/base/module/module.py:215
-#: code:addons/base/module/module.py:258
-#: code:addons/base/module/module.py:262
-#: code:addons/base/module/module.py:268
-#: code:addons/base/module/module.py:303
-#: code:addons/base/module/module.py:321
-#: code:addons/base/module/module.py:336
-#: code:addons/base/module/module.py:429
-#: code:addons/base/module/module.py:531
+#: code:addons/base/ir/ir_model.py:264
+#: code:addons/base/ir/ir_model.py:282
+#: code:addons/base/ir/ir_model.py:287
+#: code:addons/base/ir/ir_model.py:290
+#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:298
+#: code:addons/base/module/module.py:302
+#: code:addons/base/module/module.py:308
+#: code:addons/base/module/module.py:390
+#: code:addons/base/module/module.py:408
+#: code:addons/base/module/module.py:423
+#: code:addons/base/module/module.py:519
+#: code:addons/base/module/module.py:622
+#: code:addons/base/publisher_warranty/publisher_warranty.py:124
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
-#: code:addons/base/res/res_currency.py:100
-#: code:addons/base/res/res_user.py:57
-#: code:addons/base/res/res_user.py:66
-#: code:addons/custom.py:558
-#: code:addons/orm.py:3199
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: code:addons/base/res/res_currency.py:190
+#: code:addons/base/res/res_users.py:86
+#: code:addons/base/res/res_users.py:95
+#: code:addons/custom.py:555
+#: code:addons/orm.py:791
+#: code:addons/orm.py:3704
 #, python-format
 msgid "Error"
 msgstr "Fehler"
@@ -8595,6 +8584,7 @@
 
 #. module: base
 #: view:base.module.update:0
+#: view:base.module.upgrade:0
 #: view:base.update.translations:0
 msgid "Update"
 msgstr "Aktualisieren"
@@ -8664,7 +8654,6 @@
 msgstr "EAN Prüfung"
 
 #. module: base
-#: sql_constraint:res.config.users:0
 #: sql_constraint:res.users:0
 msgid "You can not have two users with the same login !"
 msgstr "2 Benuzter können nicht den gleichen Login Code haben."
@@ -8680,7 +8669,6 @@
 msgstr "Sende"
 
 #. module: base
-#: field:res.config.users,menu_tips:0
 #: field:res.users,menu_tips:0
 msgid "Menu Tips"
 msgstr "Menü Tips"
@@ -8748,7 +8736,7 @@
 msgstr "Serbisch (Cyrillic) / српски"
 
 #. module: base
-#: code:addons/orm.py:2161
+#: code:addons/orm.py:2527
 #, python-format
 msgid ""
 "Invalid group_by specification: \"%s\".\n"
@@ -8772,6 +8760,7 @@
 "gesetzt wird, wird der Einkäufer diese Position nicht in Suchlisten finden."
 
 #. module: base
+#: field:ir.actions.server,trigger_obj_id:0
 #: field:ir.model.fields,relation_field:0
 msgid "Relation Field"
 msgstr "erforderliches Feld"
@@ -8782,7 +8771,7 @@
 msgstr "Ereignisse Aufzeichnungen"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_configuration.py:37
+#: code:addons/base/module/wizard/base_module_configuration.py:38
 #, python-format
 msgid "System Configuration done"
 msgstr "System Konfiguration erledigt"
@@ -8830,7 +8819,7 @@
 msgstr "Diejenige Aktion oder Button welche die Aktion triggert (auslöst)."
 
 #. module: base
-#: code:addons/base/ir/ir_ui_menu.py:285
+#: code:addons/base/ir/ir_ui_menu.py:284
 #, python-format
 msgid "Error ! You can not create recursive Menu."
 msgstr "Fehler! Sie können keine rekursiven Menüeinträge erstellen."
@@ -8865,6 +8854,7 @@
 
 #. module: base
 #: field:res.bank,phone:0
+#: field:res.company,phone:0
 #: field:res.partner,phone:0
 #: field:res.partner.address,phone:0
 msgid "Phone"
@@ -8874,12 +8864,10 @@
 #: field:ir.cron,active:0
 #: field:ir.sequence,active:0
 #: field:res.bank,active:0
-#: field:res.config.users,active:0
 #: field:res.currency,active:0
 #: field:res.lang,active:0
 #: field:res.partner,active:0
 #: field:res.partner.address,active:0
-#: field:res.partner.canal,active:0
 #: field:res.partner.category,active:0
 #: field:res.request,active:0
 #: field:res.users,active:0
@@ -8979,6 +8967,7 @@
 #: field:ir.actions.act_window,usage:0
 #: field:ir.actions.act_window_close,usage:0
 #: field:ir.actions.actions,usage:0
+#: field:ir.actions.client,usage:0
 #: field:ir.actions.report.xml,usage:0
 #: field:ir.actions.server,usage:0
 #: field:ir.actions.wizard,usage:0
@@ -9006,13 +8995,14 @@
 msgstr "Ansicht Autorefresh"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:232
+#: code:addons/base/ir/ir_model.py:264
 #, python-format
 msgid "You cannot remove the field '%s' !"
 msgstr "Sie können das Feld '%s' nicht entfernen!"
 
 #. module: base
 #: field:ir.exports,resource:0
+#: model:ir.module.module,shortdesc:base.module_resource
 #: view:ir.property:0
 #: field:ir.property,res_id:0
 msgid "Resource"
@@ -9049,7 +9039,7 @@
 "Portable Objects)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:487
+#: code:addons/base/ir/ir_model.py:534
 #, python-format
 msgid ""
 "You can not delete this document (%s) ! Be sure your user belongs to one of "
@@ -9096,7 +9086,7 @@
 msgstr "Argentinien"
 
 #. module: base
-#: field:res.groups,name:0
+#: field:res.groups,full_name:0
 msgid "Group Name"
 msgstr "Gruppe Bezeichnung"
 
@@ -9118,10 +9108,10 @@
 #: field:ir.sequence,company_id:0
 #: field:ir.values,company_id:0
 #: view:res.company:0
-#: field:res.config.users,company_id:0
 #: field:res.currency,company_id:0
 #: field:res.partner,company_id:0
 #: field:res.partner.address,company_id:0
+#: field:res.partner.bank,company_id:0
 #: view:res.users:0
 #: field:res.users,company_id:0
 msgid "Company"
@@ -9150,7 +9140,7 @@
 #. module: base
 #: view:ir.actions.todo:0
 msgid "Launch"
-msgstr "Einführung"
+msgstr "Ausführen"
 
 #. module: base
 #: field:ir.actions.act_window,limit:0
@@ -9187,7 +9177,8 @@
 msgstr "Aserbaidschan"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/ir/ir_mail_server.py:450
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid "Warning"
 msgstr "Warnung"
@@ -9285,6 +9276,7 @@
 #. module: base
 #: model:ir.model,name:base.model_res_country
 #: field:res.bank,country:0
+#: field:res.company,country_id:0
 #: view:res.country:0
 #: field:res.country.state,country_id:0
 #: field:res.partner,country:0
@@ -9359,7 +9351,7 @@
 msgstr "Porträt"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:317
+#: code:addons/base/ir/ir_model.py:357
 #, python-format
 msgid "Can only rename one column at a time!"
 msgstr "Es kann lediglich eine Spalte gleichzeitig umbenannt werden!"
@@ -9398,6 +9390,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: field:ir.actions.todo.category,wizards_ids:0
+#: model:ir.model,name:base.model_ir_actions_todo
 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
 #: model:ir.ui.menu,name:base.next_id_11
 msgid "Configuration Wizards"
@@ -9435,6 +9429,7 @@
 
 #. module: base
 #: field:ir.actions.server,condition:0
+#: view:ir.values:0
 #: field:workflow.transition,condition:0
 msgid "Condition"
 msgstr "Bedingung"
@@ -9509,7 +9504,11 @@
 msgstr "Seychellen"
 
 #. module: base
+#: model:ir.actions.act_window,name:base.action_res_partner_bank_account_form
 #: model:ir.model,name:base.model_res_partner_bank
+#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_form
+#: view:res.company:0
+#: field:res.company,bank_ids:0
 #: view:res.partner.bank:0
 msgid "Bank Accounts"
 msgstr "Bankkonten"
@@ -9531,12 +9530,12 @@
 msgstr "Turks- und Caicosinseln"
 
 #. module: base
-#: field:res.partner.bank,owner_name:0
+#: field:res.partner.bank,partner_id:0
 msgid "Account Owner"
 msgstr "Konto Inhaber"
 
 #. module: base
-#: code:addons/base/res/res_user.py:256
+#: code:addons/base/res/res_users.py:270
 #, python-format
 msgid "Company Switch Warning"
 msgstr "Unternehmenswechsel Warnhinweis"
@@ -9558,7 +9557,6 @@
 msgstr "Die nächste Nummer dieser Sequenz wir um diese Zahl erhöht."
 
 #. module: base
-#: field:ir.cron,function:0
 #: field:res.partner.address,function:0
 #: selection:workflow.activity,kind:0
 msgid "Function"
@@ -9596,7 +9594,7 @@
 msgstr "Workflow Objekte"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:261
+#: code:addons/base/res/res_partner.py:284
 #, python-format
 msgid "Partners: "
 msgstr "Partner: "

=== modified file 'bin/addons/base/i18n/el.po'
--- bin/addons/base/i18n/el.po	2011-01-20 06:12:47 +0000
+++ bin/addons/base/i18n/el.po	2012-05-09 12:37:21 +0000
@@ -6,14 +6,14 @@
 "Project-Id-Version: OpenERP Server 5.0.0\n"
 "Report-Msgid-Bugs-To: support@openerp.com\n"
 "POT-Creation-Date: 2011-01-11 11:14+0000\n"
-"PO-Revision-Date: 2011-01-19 13:31+0000\n"
-"Last-Translator: Dimitris Andavoglou <dimitrisand@gmail.com>\n"
+"PO-Revision-Date: 2012-04-12 14:31+0000\n"
+"Last-Translator: Filippos Kolyvas <fkolyvas@gmail.com>\n"
 "Language-Team: nls@hellug.gr <nls@hellug.gr>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-01-20 06:08+0000\n"
-"X-Generator: Launchpad (build 12177)\n"
+"X-Launchpad-Export-Date: 2012-04-13 06:01+0000\n"
+"X-Generator: Launchpad (build 15070)\n"
 "X-Poedit-Country: GREECE\n"
 "X-Poedit-Language: Greek\n"
 "X-Poedit-SourceCharset: utf-8\n"
@@ -43,7 +43,7 @@
 msgstr "ΗμερομηνίαΏρα"
 
 #. module: base
-#: code:addons/fields.py:534
+#: code:addons/fields.py:582
 #, python-format
 msgid ""
 "The second argument of the many2many field %s must be a SQL table !You used "
@@ -113,7 +113,7 @@
 msgstr "Δημιουργημένες Προβολές"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:485
+#: code:addons/base/ir/ir_model.py:532
 #, python-format
 msgid ""
 "You can not write in this document (%s) ! Be sure your user belongs to one "
@@ -139,13 +139,13 @@
 msgstr "Επιλεγμένο Παράθυρο"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Warning!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:304
+#: code:addons/base/ir/ir_model.py:344
 #, python-format
 msgid ""
 "Properties of base fields cannot be altered in this manner! Please modify "
@@ -153,7 +153,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:133
+#: code:addons/osv.py:129
 #, python-format
 msgid "Constraint Error"
 msgstr ""
@@ -169,8 +169,7 @@
 msgstr "Swaziland"
 
 #. module: base
-#: code:addons/orm.py:1993
-#: code:addons/orm.py:3653
+#: code:addons/orm.py:4206
 #, python-format
 msgid "created."
 msgstr ""
@@ -181,7 +180,7 @@
 msgstr "Προμηθευτές Ξύλου"
 
 #. module: base
-#: code:addons/base/module/module.py:303
+#: code:addons/base/module/module.py:390
 #, python-format
 msgid ""
 "Some installed modules depend on the module you plan to Uninstall :\n"
@@ -246,6 +245,8 @@
 msgstr "Μέγιστο Μέγεθος"
 
 #. module: base
+#: view:res.partner:0
+#: field:res.partner,subname:0
 #: field:res.partner.address,name:0
 msgid "Contact Name"
 msgstr "Όνομα Επαφής"
@@ -276,7 +277,7 @@
 msgstr "Όνομα Αυτόματου Οδηγού"
 
 #. module: base
-#: code:addons/orm.py:2160
+#: code:addons/orm.py:2526
 #, python-format
 msgid "Invalid group_by"
 msgstr ""
@@ -320,7 +321,6 @@
 #. module: base
 #: view:ir.model.access:0
 #: field:ir.model.access,group_id:0
-#: view:res.config.users:0
 msgid "Group"
 msgstr "Ομάδα"
 
@@ -364,7 +364,7 @@
 msgstr "Netherlands Antilles (Ολλανδικές Αντίλλες)"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid ""
 "You can not remove the admin user as it is used internally for resources "
@@ -435,7 +435,7 @@
 msgstr "Προγραμματισμός Αναβάθμισης"
 
 #. module: base
-#: code:addons/orm.py:838
+#: code:addons/orm.py:1390
 #, python-format
 msgid "Key/value '%s' not found in selection field '%s'"
 msgstr ""
@@ -485,7 +485,7 @@
 msgstr "Λοιποί προμηθευτές"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:255
+#: code:addons/base/ir/ir_model.py:287
 #, python-format
 msgid "Custom fields must have a name that starts with 'x_' !"
 msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !"
@@ -507,6 +507,7 @@
 
 #. module: base
 #: view:ir.model:0
+#: field:ir.model,name:0
 msgid "Model Description"
 msgstr "Περιγραφή Μοντέλου"
 
@@ -546,6 +547,7 @@
 
 #. module: base
 #: model:ir.ui.menu,name:base.menu_base_action_rule
+#: model:ir.ui.menu,name:base.menu_base_action_rule_admin
 msgid "Automated Actions"
 msgstr "Αυτοματοποιημένες ενέργειες"
 
@@ -605,7 +607,6 @@
 #: model:ir.actions.act_window,name:base.ir_sequence_form
 #: view:ir.sequence:0
 #: model:ir.ui.menu,name:base.menu_ir_sequence_form
-#: model:ir.ui.menu,name:base.next_id_5
 msgid "Sequences"
 msgstr "Ιεραρχήσεις"
 
@@ -778,7 +779,6 @@
 msgstr "Andorra, Principality of"
 
 #. module: base
-#: field:ir.module.category,child_ids:0
 #: field:res.partner.category,child_ids:0
 msgid "Child Categories"
 msgstr "Υποκατηγορίες"
@@ -799,6 +799,7 @@
 msgstr "%B - Πλήρες όνομα μήνα."
 
 #. module: base
+#: field:ir.actions.todo,type:0
 #: view:ir.attachment:0
 #: field:ir.attachment,type:0
 #: field:ir.model,state:0
@@ -815,7 +816,7 @@
 msgstr "Τύπος"
 
 #. module: base
-#: code:addons/orm.py:210
+#: code:addons/orm.py:398
 #, python-format
 msgid ""
 "Language with code \"%s\" is not defined in your system !\n"
@@ -833,7 +834,7 @@
 msgstr "Ταμπλό Διαχείρισης Ανθρώπινων Πόρων"
 
 #. module: base
-#: code:addons/base/res/res_user.py:507
+#: code:addons/base/res/res_users.py:558
 #, python-format
 msgid "Setting empty passwords is not allowed for security reasons!"
 msgstr ""
@@ -867,7 +868,7 @@
 msgstr "Ροές"
 
 #. module: base
-#: code:addons/orm.py:4020
+#: code:addons/orm.py:4615
 #, python-format
 msgid "Record #%d of %s not found, cannot copy!"
 msgstr ""
@@ -948,6 +949,7 @@
 
 #. module: base
 #: field:ir.module.module,website:0
+#: field:res.company,website:0
 #: field:res.partner,website:0
 msgid "Website"
 msgstr "Ιστοσελίδα"
@@ -973,7 +975,7 @@
 msgstr "Marshall Islands"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:328
+#: code:addons/base/ir/ir_model.py:368
 #, python-format
 msgid "Changing the model of a field is forbidden!"
 msgstr ""
@@ -990,7 +992,7 @@
 msgstr "Αναζήτηση"
 
 #. module: base
-#: code:addons/osv.py:136
+#: code:addons/osv.py:132
 #, python-format
 msgid ""
 "The operation cannot be completed, probably due to the following:\n"
@@ -1007,7 +1009,7 @@
 "Κανόνες εξειδικευμένοι κατά ομάδα συνδυάζονται με έναν λογικό τελεστή AND"
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid "Operation Canceled"
 msgstr ""
@@ -1067,6 +1069,7 @@
 msgstr "Δεν υπάρχει γλώσσα με κωδικό \"%s\""
 
 #. module: base
+#: code:addons/base/publisher_warranty/publisher_warranty.py:125
 #: code:addons/base/publisher_warranty/publisher_warranty.py:163
 #, python-format
 msgid "Error during communication with the publisher warranty server."
@@ -1166,7 +1169,7 @@
 msgstr "Κατά τη Δημιουργία"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:607
+#: code:addons/base/ir/ir_model.py:681
 #, python-format
 msgid ""
 "'%s' contains too many dots. XML ids should not contain dots ! These are "
@@ -1178,7 +1181,6 @@
 
 #. module: base
 #: field:partner.sms.send,user:0
-#: field:res.config.users,login:0
 #: field:res.users,login:0
 msgid "Login"
 msgstr "Είσοδος"
@@ -1319,8 +1321,8 @@
 "object.list_price > object.cost_price"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:155
 #: code:addons/base/res/res_company.py:66
+#: code:addons/base/res/res_partner.py:175
 #, python-format
 msgid " (copy)"
 msgstr " (αντίγραφο)"
@@ -1379,6 +1381,7 @@
 
 #. module: base
 #: field:ir.cron,priority:0
+#: field:ir.mail_server,sequence:0
 #: field:res.request,priority:0
 #: field:res.request.link,priority:0
 msgid "Priority"
@@ -1400,7 +1403,7 @@
 msgstr "Τύπος"
 
 #. module: base
-#: code:addons/base/res/res_user.py:389
+#: code:addons/base/res/res_users.py:396
 #, python-format
 msgid "Can not remove root user!"
 msgstr "Can not remove root user!"
@@ -1411,8 +1414,9 @@
 msgstr "Malawi"
 
 #. module: base
-#: code:addons/base/res/res_user.py:51
-#: code:addons/base/res/res_user.py:413
+#: code:addons/base/ir/ir_filters.py:38
+#: code:addons/base/res/res_users.py:80
+#: code:addons/base/res/res_users.py:420
 #, python-format
 msgid "%s (copy)"
 msgstr "%s (αντίγραφο)"
@@ -1550,7 +1554,7 @@
 msgstr "Bahamas"
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:250
+#: code:addons/base/res/res_partner.py:273
 #, python-format
 msgid ""
 "Couldn't generate the next id because some partners have an alphabetic id !"
@@ -1617,9 +1621,7 @@
 #: view:ir.ui.menu:0
 #: field:ir.ui.menu,groups_id:0
 #: model:ir.ui.menu,name:base.menu_action_res_groups
-#: field:res.config.users,groups_id:0
 #: view:res.groups:0
-#: view:res.users:0
 #: field:res.users,groups_id:0
 msgid "Groups"
 msgstr "Ομάδες"
@@ -1662,7 +1664,7 @@
 "'φόρμα','δέντρο','ημερολόγιο', κ.λπ. (Προεπιλογή: δέντρο, φόρμα)"
 
 #. module: base
-#: code:addons/orm.py:3147
+#: code:addons/orm.py:3615
 #, python-format
 msgid "A document was modified since you last viewed it (%s:%d)"
 msgstr ""
@@ -1712,8 +1714,6 @@
 msgstr "Faroe Islands"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Simplified"
 msgstr "Απλοποιημένη"
@@ -1744,7 +1744,7 @@
 msgstr "Madagascar"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:96
+#: code:addons/base/ir/ir_model.py:116
 #, python-format
 msgid ""
 "The Object name must start with x_ and not contain any special character !"
@@ -1930,7 +1930,8 @@
 msgstr "Pakistan"
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
+#: code:addons/orm.py:1894
 #, python-format
 msgid "Invalid Object Architecture!"
 msgstr ""
@@ -1941,12 +1942,14 @@
 msgstr "Μηνύματα"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:303
-#: code:addons/base/ir/ir_model.py:317
-#: code:addons/base/ir/ir_model.py:319
-#: code:addons/base/ir/ir_model.py:321
-#: code:addons/base/ir/ir_model.py:328
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:311
+#: code:addons/base/ir/ir_model.py:313
+#: code:addons/base/ir/ir_model.py:343
+#: code:addons/base/ir/ir_model.py:357
+#: code:addons/base/ir/ir_model.py:359
+#: code:addons/base/ir/ir_model.py:361
+#: code:addons/base/ir/ir_model.py:368
+#: code:addons/base/ir/ir_model.py:371
 #: code:addons/base/module/wizard/base_update_translations.py:38
 #, python-format
 msgid "Error!"
@@ -1978,7 +1981,7 @@
 msgstr "New Zealand"
 
 #. module: base
-#: code:addons/orm.py:3366
+#: code:addons/orm.py:3895
 #, python-format
 msgid ""
 "One of the records you are trying to modify has already been deleted "
@@ -2044,7 +2047,7 @@
 msgstr "XSL"
 
 #. module: base
-#: code:addons/base/module/module.py:322
+#: code:addons/base/module/module.py:409
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr ""
@@ -2101,6 +2104,7 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_bank_type
+#: field:res.partner.bank,state:0
 #: view:res.partner.bank.type:0
 msgid "Bank Account Type"
 msgstr "Τύπος Τραπεζικού Λογαριασμού"
@@ -2117,8 +2121,6 @@
 #: field:publisher_warranty.contract.wizard,config_logo:0
 #: field:res.config,config_logo:0
 #: field:res.config.installer,config_logo:0
-#: field:res.config.users,config_logo:0
-#: field:res.config.view,config_logo:0
 msgid "Image"
 msgstr "Εικόνα"
 
@@ -2168,7 +2170,7 @@
 msgstr "Τμήμα Ανθρωπίνων Πόρων"
 
 #. module: base
-#: code:addons/orm.py:3817
+#: code:addons/orm.py:4408
 #, python-format
 msgid ""
 "Invalid \"order\" specified. A valid \"order\" specification is a comma-"
@@ -2187,8 +2189,6 @@
 msgstr "Πρόχειρα"
 
 #. module: base
-#: selection:res.config.users,view:0
-#: selection:res.config.view,view:0
 #: selection:res.users,view:0
 msgid "Extended"
 msgstr "Εκτεταμένο"
@@ -2334,7 +2334,7 @@
 msgstr "Κύριος"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "There is no view of type '%s' defined for the structure!"
 msgstr ""
@@ -2367,15 +2367,15 @@
 #: view:ir.module.module:0
 #: field:ir.module.module.dependency,module_id:0
 #: report:ir.module.reference.graph:0
-#: field:ir.translation,module:0
 msgid "Module"
 msgstr "Άρθρωμα"
 
 #. module: base
 #: field:ir.attachment,description:0
+#: field:ir.mail_server,name:0
+#: field:ir.module.category,description:0
 #: view:ir.module.module:0
 #: field:ir.module.module,description:0
-#: field:res.partner.bank,name:0
 #: view:res.partner.event:0
 #: field:res.partner.event,description:0
 #: view:res.request:0
@@ -2425,8 +2425,8 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.action_partner_mass_mail
-#: model:ir.model,name:base.model_partner_wizard_spam
-#: view:partner.wizard.spam:0
+#: model:ir.model,name:base.model_partner_massmail_wizard
+#: view:partner.massmail.wizard:0
 msgid "Mass Mailing"
 msgstr "Ομαδική Αλληλογραφία"
 
@@ -2436,7 +2436,7 @@
 msgstr "Mayotte"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:597
+#: code:addons/base/ir/ir_actions.py:653
 #, python-format
 msgid "Please specify an action to launch !"
 msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!"
@@ -2486,13 +2486,13 @@
 msgstr "Αν δεν έχει ορισθεί, δρα ως η προεπιλεγμένη τιμή για νέους πόρους."
 
 #. module: base
-#: code:addons/orm.py:3448
+#: code:addons/orm.py:3988
 #, python-format
 msgid "Recursivity Detected."
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:262
+#: code:addons/base/module/module.py:302
 #, python-format
 msgid "Recursion error in modules dependencies !"
 msgstr "Σφάλμα στις εξαρτήσεις Αρθρωμάτων!"
@@ -2615,7 +2615,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:429
+#: code:addons/base/module/module.py:519
 #, python-format
 msgid ""
 "Can not create the module file:\n"
@@ -2625,7 +2625,7 @@
 " %s"
 
 #. module: base
-#: code:addons/orm.py:2973
+#: code:addons/orm.py:3437
 #, python-format
 msgid ""
 "Operation prohibited by access rules, or performed on an already deleted "
@@ -2638,7 +2638,7 @@
 msgstr "Nauru"
 
 #. module: base
-#: code:addons/base/module/module.py:200
+#: code:addons/base/module/module.py:240
 #, python-format
 msgid "The certificate ID of the module must be unique !"
 msgstr "Το πιστοποιητικό ταυτότητας του στοιχείου πρέπει να είναι μοναδικό !"
@@ -2685,7 +2685,6 @@
 "τις επίσημες μπορούν να βρεθούν στο launchpad."
 
 #. module: base
-#: view:ir.module.module:0
 #: selection:ir.module.module,state:0
 #: selection:ir.module.module.dependency,state:0
 msgid "To be upgraded"
@@ -2718,7 +2717,7 @@
 msgstr "EAN13"
 
 #. module: base
-#: code:addons/orm.py:1622
+#: code:addons/orm.py:2134
 #, python-format
 msgid "Invalid Architecture!"
 msgstr ""
@@ -2959,13 +2958,14 @@
 msgstr "Suriname"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_marketing
+#: model:ir.module.module,shortdesc:base.module_marketing
 #: model:ir.ui.menu,name:base.marketing_menu
 msgid "Marketing"
 msgstr "Μάρκετινγκ"
 
 #. module: base
 #: view:res.partner.bank:0
-#: model:res.partner.bank.type,name:base.bank_normal
 msgid "Bank account"
 msgstr "Τραπεζικός λογαριασμός"
 
@@ -3006,7 +3006,9 @@
 
 #. module: base
 #: field:ir.actions.server,srcmodel_id:0
+#: field:ir.model,model:0
 #: field:ir.model.fields,model_id:0
+#: view:ir.values:0
 msgid "Model"
 msgstr "Μοντέλο"
 
@@ -3042,6 +3044,7 @@
 
 #. module: base
 #: field:res.bank,zip:0
+#: field:res.company,zip:0
 #: field:res.partner.address,zip:0
 #: field:res.partner.bank,zip:0
 msgid "Zip"
@@ -3064,7 +3067,7 @@
 msgstr "%c - Ορθή εμφάνιση ημερ/νίας και ώρας"
 
 #. module: base
-#: code:addons/base/res/res_config.py:422
+#: code:addons/base/res/res_config.py:386
 #, python-format
 msgid ""
 "Your database is now fully configured.\n"
@@ -3100,6 +3103,8 @@
 #: model:ir.actions.act_window,name:base.action_ui_view
 #: field:ir.actions.act_window,view_ids:0
 #: field:ir.actions.act_window,views:0
+#: view:ir.model:0
+#: field:ir.model,view_ids:0
 #: field:ir.module.module,views_by_module:0
 #: model:ir.ui.menu,name:base.menu_action_ui_view
 #: view:ir.ui.view:0
@@ -3113,7 +3118,7 @@
 msgstr "Κανόνες"
 
 #. module: base
-#: code:addons/base/module/module.py:216
+#: code:addons/base/module/module.py:256
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -3189,7 +3194,7 @@
 msgstr "Lesotho"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:114
+#: code:addons/base/ir/ir_model.py:139
 #, python-format
 msgid "You can not remove the model '%s' !"
 msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !"
@@ -3220,7 +3225,7 @@
 msgstr "Διαμόρφωση συστήματος ολοκληρώθηκε"
 
 #. module: base
-#: code:addons/orm.py:929
+#: code:addons/orm.py:1459
 #, python-format
 msgid "Error occurred while validating the field(s) %s: %s"
 msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s"
@@ -3256,7 +3261,8 @@
 msgstr "Benin"
 
 #. module: base
-#: code:addons/base/publisher_warranty/publisher_warranty.py:281
+#: code:addons/base/publisher_warranty/publisher_warranty.py:295
+#: sql_constraint:publisher_warranty.contract:0
 #, python-format
 msgid "That contract is already registered in the system."
 msgstr ""
@@ -3287,7 +3293,7 @@
 msgstr "API ID"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:486
+#: code:addons/base/ir/ir_model.py:533
 #, python-format
 msgid ""
 "You can not create this document (%s) ! Be sure your user belongs to one of "
@@ -3458,7 +3464,7 @@
 msgstr "Αίτημα διαγραφής"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:319
+#: code:addons/base/ir/ir_model.py:359
 #, python-format
 msgid "Cannot rename column to %s, because that column already exists!"
 msgstr ""
@@ -3629,10 +3635,12 @@
 #. module: base
 #: field:ir.actions.report.xml,name:0
 #: field:ir.actions.todo,name:0
+#: field:ir.actions.todo.category,name:0
 #: field:ir.cron,name:0
 #: field:ir.model.access,name:0
 #: field:ir.model.fields,name:0
 #: field:ir.module.category,name:0
+#: view:ir.module.module:0
 #: field:ir.module.module,name:0
 #: field:ir.module.module.dependency,name:0
 #: report:ir.module.reference.graph:0
@@ -3643,7 +3651,8 @@
 #: field:ir.values,name:0
 #: field:multi_company.default,name:0
 #: field:res.bank,name:0
-#: field:res.config.view,name:0
+#: field:res.currency.rate.type,name:0
+#: field:res.groups,name:0
 #: field:res.lang,name:0
 #: field:res.partner,name:0
 #: field:res.partner.bank.type,name:0
@@ -3669,7 +3678,7 @@
 msgstr "Montserrat"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:205
+#: code:addons/base/ir/ir_model.py:237
 #, python-format
 msgid ""
 "The Selection Options expression is not a valid Pythonic expression.Please "
@@ -3682,7 +3691,6 @@
 msgstr "Ορολογία Εφαρμογής"
 
 #. module: base
-#: help:res.config.users,context_tz:0
 #: help:res.users,context_tz:0
 msgid ""
 "The user's timezone, used to perform timezone conversions between the server "
@@ -3770,7 +3778,6 @@
 #: view:ir.actions.act_window:0
 #: view:ir.actions.report.xml:0
 #: view:ir.actions.server:0
-#: view:ir.filters:0
 #: view:res.request:0
 msgid "Group By"
 msgstr "Ομαδοποίηση Ανά"
@@ -3844,14 +3851,13 @@
 msgstr "USA Minor Outlying Islands"
 
 #. module: base
-#: field:res.partner.bank,state:0
 #: field:res.partner.bank.type.field,bank_type_id:0
 msgid "Bank Type"
 msgstr "Τύπος Τράπεζας"
 
 #. module: base
-#: code:addons/base/res/res_user.py:58
-#: code:addons/base/res/res_user.py:67
+#: code:addons/base/res/res_users.py:87
+#: code:addons/base/res/res_users.py:96
 #, python-format
 msgid "The name of the group can not start with \"-\""
 msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\""
@@ -3873,7 +3879,7 @@
 msgstr "Gujarati / ગુજરાતી"
 
 #. module: base
-#: code:addons/base/module/module.py:257
+#: code:addons/base/module/module.py:297
 #, python-format
 msgid ""
 "Unable to process module \"%s\" because an external dependency is not met: %s"
@@ -3927,9 +3933,9 @@
 msgstr "Guadeloupe (French)"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:157
-#: code:addons/base/res/res_lang.py:159
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:187
+#: code:addons/base/res/res_lang.py:189
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid "User Error"
 msgstr "Σφάλμα Χρήστη"
@@ -4018,6 +4024,7 @@
 
 #. module: base
 #: model:ir.actions.act_window,name:base.act_res_partner_event
+#: model:ir.ui.menu,name:base.menu_event_association
 #: field:res.partner,events:0
 #: field:res.partner.event,name:0
 #: model:res.widget,title:base.events_widget
@@ -4036,7 +4043,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:156
+#: code:addons/orm.py:341
 #, python-format
 msgid "Wrong ID for the browse record, got %r, expected an integer."
 msgstr "Wrong ID for the browse record, got %r, expected an integer."
@@ -4094,7 +4101,7 @@
 #: view:ir.actions.actions:0
 #: field:ir.actions.todo,action_id:0
 #: field:ir.ui.menu,action:0
-#: field:ir.values,action_id:0
+#: view:ir.values:0
 #: selection:ir.values,key:0
 #: view:res.users:0
 msgid "Action"
@@ -4157,7 +4164,6 @@
 msgstr "Αίτηση Ιστορικού"
 
 #. module: base
-#: field:ir.actions.act_window,menus:0
 #: field:ir.module.module,menus_by_module:0
 #: view:res.groups:0
 msgid "Menus"
@@ -4204,6 +4210,7 @@
 #: field:base.language.export,modules:0
 #: model:ir.actions.act_window,name:base.action_module_open_categ
 #: model:ir.actions.act_window,name:base.open_module_tree
+#: field:ir.module.category,module_ids:0
 #: view:ir.module.module:0
 #: model:ir.ui.menu,name:base.menu_management
 #: model:ir.ui.menu,name:base.menu_module_tree
@@ -4257,7 +4264,6 @@
 msgstr "Χάρτης Αντικειμένων"
 
 #. module: base
-#: help:res.currency,rate:0
 #: help:res.currency.rate,rate:0
 msgid "The rate of the currency to the currency of rate 1"
 msgstr "Ισοτιμία νομίσματος"
@@ -4269,8 +4275,6 @@
 
 #. module: base
 #: view:res.config:0
-#: view:res.config.users:0
-#: view:res.config.view:0
 msgid "res_config_contents"
 msgstr "res_config_contents"
 
@@ -4331,7 +4335,7 @@
 msgstr "ir.attachment"
 
 #. module: base
-#: code:addons/orm.py:3533
+#: code:addons/orm.py:4086
 #, python-format
 msgid ""
 "You cannot perform this operation. New Record Creation is not allowed for "
@@ -4441,6 +4445,7 @@
 "εκτελεστεί."
 
 #. module: base
+#: model:res.groups,name:base.group_user
 #: field:res.partner,employee:0
 msgid "Employee"
 msgstr "Υπάλληλος"
@@ -4451,7 +4456,10 @@
 msgstr "Δημιουργία Πρόσβασης"
 
 #. module: base
+#: field:res.bank,state:0
+#: field:res.company,state_id:0
 #: field:res.partner.address,state_id:0
+#: field:res.partner.bank,state_id:0
 msgid "Fed. State"
 msgstr "Πολιτεία"
 
@@ -4476,8 +4484,6 @@
 msgstr "British Indian Ocean Territory"
 
 #. module: base
-#: field:res.config.users,view:0
-#: field:res.config.view,view:0
 #: field:res.users,view:0
 msgid "Interface"
 msgstr "Διεπαφή"
@@ -4493,7 +4499,6 @@
 msgstr ""
 
 #. module: base
-#: view:ir.model:0
 #: field:ir.model.fields,ttype:0
 msgid "Field Type"
 msgstr "Τύπος Πεδίου"
@@ -4525,8 +4530,6 @@
 msgstr "Vietnam"
 
 #. module: base
-#: field:res.config.users,signature:0
-#: view:res.users:0
 #: field:res.users,signature:0
 msgid "Signature"
 msgstr "Υπογραφή"
@@ -4564,7 +4567,7 @@
 msgstr "Τιμή False σημαίνει για κάθε χρήστη"
 
 #. module: base
-#: code:addons/base/module/module.py:198
+#: code:addons/base/module/module.py:238
 #, python-format
 msgid "The name of the module must be unique !"
 msgstr "Το όνομα του αρθρώματος πρέπει να είναι μοναδικό !"
@@ -4581,8 +4584,8 @@
 
 #. module: base
 #: field:ir.actions.server,message:0
+#: field:partner.massmail.wizard,text:0
 #: view:partner.sms.send:0
-#: field:partner.wizard.spam,text:0
 #: field:res.log,name:0
 msgid "Message"
 msgstr "Μήνυμα"
@@ -4605,7 +4608,7 @@
 msgstr "Στοιχεία"
 
 #. module: base
-#: code:addons/orm.py:3199
+#: code:addons/orm.py:3704
 #, python-format
 msgid ""
 "Unable to delete this document because it is used as a default property"
@@ -4618,7 +4621,6 @@
 
 #. module: base
 #: view:base.module.upgrade:0
-#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window
 #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
 msgid "Apply Scheduled Upgrades"
 msgstr "Εφαρμογή Προγραμματισμένων Ενημερώσεων"
@@ -4647,7 +4649,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:206
+#: code:addons/base/res/res_users.py:222
 #, python-format
 msgid ""
 "Please use the change password wizard (in User Preferences or User menu) to "
@@ -4655,7 +4657,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/orm.py:1350
+#: code:addons/orm.py:1883
 #, python-format
 msgid "Insufficient fields for Calendar View!"
 msgstr ""
@@ -4673,7 +4675,6 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,company_id:0
 #: help:res.users,company_id:0
 msgid "The company this user is currently working for."
 msgstr "Η εταιρεία για την οποία εργάζεται τώρα ο χρήστης."
@@ -4724,8 +4725,6 @@
 #: view:base.module.update:0
 #: view:publisher_warranty.contract.wizard:0
 #: view:res.request:0
-#: wizard_button:server.action.create,init,end:0
-#: wizard_button:server.action.create,step_1,end:0
 msgid "Close"
 msgstr "Κλείσιμο"
 
@@ -4817,8 +4816,8 @@
 msgstr "Saint Vincent & Grenadines"
 
 #. module: base
+#: field:ir.mail_server,smtp_pass:0
 #: field:partner.sms.send,password:0
-#: field:res.config.users,password:0
 #: field:res.users,password:0
 msgid "Password"
 msgstr "Συνθηματικό"
@@ -4893,6 +4892,7 @@
 
 #. module: base
 #: field:res.bank,street:0
+#: field:res.company,street:0
 #: field:res.partner.address,street:0
 #: field:res.partner.bank,street:0
 msgid "Street"
@@ -4924,7 +4924,7 @@
 msgstr "Αλλαγή Προτιμήσεων"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:164
+#: code:addons/base/ir/ir_actions.py:167
 #, python-format
 msgid "Invalid model name in the action definition."
 msgstr "Λανθασμένο όνομα μοντέλου στην δήλωση ενέργειας"
@@ -4987,7 +4987,7 @@
 msgstr "Dutch / Nederlands"
 
 #. module: base
-#: code:addons/base/res/res_config.py:384
+#: code:addons/base/res/res_config.py:348
 #, python-format
 msgid ""
 "\n"
@@ -5035,7 +5035,7 @@
 msgstr "Ετικέτες"
 
 #. module: base
-#: field:partner.wizard.spam,email_from:0
+#: field:partner.massmail.wizard,email_from:0
 msgid "Sender's email"
 msgstr "Εmail αποστολέα"
 
@@ -5055,7 +5055,6 @@
 msgstr "Γαλλικά (CH) / Français (CH)"
 
 #. module: base
-#: help:res.config.users,action_id:0
 #: help:res.users,action_id:0
 msgid ""
 "If specified, this action will be opened at logon for this user, in addition "
@@ -5074,7 +5073,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:336
+#: code:addons/base/module/module.py:423
 #, python-format
 msgid ""
 "You try to upgrade a module that depends on the module: %s.\n"
@@ -5100,7 +5099,6 @@
 msgstr ""
 
 #. module: base
-#: field:ir.module.category,parent_id:0
 #: field:res.partner.category,parent_id:0
 msgid "Parent Category"
 msgstr "Ανήκει στην Κατηγορία"
@@ -5113,7 +5111,6 @@
 #. module: base
 #: selection:res.partner.address,type:0
 #: selection:res.partner.title,domain:0
-#: view:res.users:0
 msgid "Contact"
 msgstr "Επαφή"
 
@@ -5150,7 +5147,7 @@
 msgstr "ir.server.object.lines"
 
 #. module: base
-#: code:addons/base/module/module.py:531
+#: code:addons/base/module/module.py:622
 #, python-format
 msgid "Module %s: Invalid Quality Certificate"
 msgstr "Άρθρωμα %s: Άκυρο Πιστοποιητικό Ποιότητας"
@@ -5187,7 +5184,7 @@
 msgstr "Nigeria"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:250
+#: code:addons/base/ir/ir_model.py:282
 #, python-format
 msgid "For selection fields, the Selection Options must be given!"
 msgstr ""
@@ -5360,14 +5357,14 @@
 msgstr "Ενημέρωση Λίστας Αρθρωμάτων"
 
 #. module: base
-#: code:addons/base/module/module.py:255
+#: code:addons/base/module/module.py:295
 #, python-format
 msgid ""
 "Unable to upgrade module \"%s\" because an external dependency is not met: %s"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_user.py:257
+#: code:addons/base/res/res_users.py:271
 #, python-format
 msgid ""
 "Please keep in mind that documents currently displayed may not be relevant "
@@ -5387,7 +5384,7 @@
 msgstr "Ταϋλανδικά / ภาษาไทย"
 
 #. module: base
-#: code:addons/orm.py:158
+#: code:addons/orm.py:343
 #, python-format
 msgid "Object %s does not exists"
 msgstr ""
@@ -5476,7 +5473,6 @@
 
 #. module: base
 #: model:ir.model,name:base.model_base_module_import
-#: model:ir.ui.menu,name:base.menu_view_base_module_import
 msgid "Import Module"
 msgstr "Εισαγωγή αρθρώματος"
 
@@ -5523,8 +5519,8 @@
 msgstr "Επανάληψη"
 
 #. module: base
-#: code:addons/orm.py:3448
-#: code:addons/orm.py:3532
+#: code:addons/orm.py:3988
+#: code:addons/orm.py:4085
 #, python-format
 msgid "UserError"
 msgstr "UserError"
@@ -5545,7 +5541,7 @@
 msgstr "Reunion (French)"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:321
+#: code:addons/base/ir/ir_model.py:361
 #, python-format
 msgid ""
 "New column name must still start with x_ , because it is a custom field!"
@@ -5569,12 +5565,12 @@
 msgstr "Solomon Islands"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:490
-#: code:addons/orm.py:1897
-#: code:addons/orm.py:2972
-#: code:addons/orm.py:3165
-#: code:addons/orm.py:3365
-#: code:addons/orm.py:3817
+#: code:addons/base/ir/ir_model.py:537
+#: code:addons/orm.py:3436
+#: code:addons/orm.py:3656
+#: code:addons/orm.py:3668
+#: code:addons/orm.py:3894
+#: code:addons/orm.py:4408
 #, python-format
 msgid "AccessError"
 msgstr "AccessError"
@@ -5633,7 +5629,6 @@
 msgstr "Tonga"
 
 #. module: base
-#: model:ir.model,name:base.model_ir_module_category
 #: view:ir.module.category:0
 msgid "Module Category"
 msgstr "Κατηγορίες Αρθρωμάτων"
@@ -5758,7 +5753,6 @@
 #: field:base.language.install,lang:0
 #: field:base.update.translations,lang:0
 #: field:ir.translation,lang:0
-#: field:res.config.users,context_lang:0
 #: field:res.partner,lang:0
 #: field:res.users,context_lang:0
 msgid "Language"
@@ -5775,8 +5769,6 @@
 #: model:ir.ui.menu,name:base.menu_action_res_company_form
 #: model:ir.ui.menu,name:base.menu_res_company_global
 #: view:res.company:0
-#: field:res.config.users,company_ids:0
-#: view:res.users:0
 #: field:res.users,company_ids:0
 msgid "Companies"
 msgstr "Εταιρείες"
@@ -5792,13 +5784,13 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:258
+#: code:addons/base/ir/ir_model.py:290
 #, python-format
 msgid "Model %s does not exist!"
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_lang.py:159
+#: code:addons/base/res/res_lang.py:189
 #, python-format
 msgid "You cannot delete the language which is User's Preferred Language !"
 msgstr ""
@@ -5818,13 +5810,13 @@
 msgstr "Python Code"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:69
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr "Αδύνατη η δημιουργία του αρχείου Αρθρώματος: %s!"
 
 #. module: base
-#: model:ir.module.module,description:base.module_meta_information
+#: model:ir.module.module,description:base.module_base
 msgid "The kernel of OpenERP, needed for all installation."
 msgstr "Ο πυρήνας του OpenERP, αναγκαίος για κάθε εγκατάσταση."
 
@@ -5835,9 +5827,11 @@
 #: view:base.module.upgrade:0
 #: view:base.update.translations:0
 #: view:partner.clear.ids:0
+#: view:partner.massmail.wizard:0
 #: view:partner.sms.send:0
-#: view:partner.wizard.spam:0
 #: view:publisher_warranty.contract.wizard:0
+#: view:res.config:0
+#: view:res.config.installer:0
 #: view:res.widget.wizard:0
 msgid "Cancel"
 msgstr "Ακύρωση"
@@ -5942,7 +5936,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/res_config.py:421
+#: code:addons/base/res/res_config.py:385
 #, python-format
 msgid "Click 'Continue' to configure the next addon..."
 msgstr ""
@@ -5960,7 +5954,6 @@
 msgstr "Honduras"
 
 #. module: base
-#: help:res.config.users,menu_tips:0
 #: help:res.users,menu_tips:0
 msgid ""
 "Check out this box if you want to always display tips on each menu action"
@@ -6005,13 +5998,12 @@
 msgstr "Περιγραφή Πεδίων"
 
 #. module: base
+#: view:ir.actions.todo:0
 #: view:ir.attachment:0
 #: view:ir.cron:0
 #: view:ir.model.access:0
 #: view:ir.model.data:0
 #: view:ir.model.fields:0
-#: view:ir.module.module:0
-#: view:ir.rule:0
 #: view:ir.ui.view:0
 #: view:ir.values:0
 #: view:res.partner:0
@@ -6050,7 +6042,7 @@
 
 #. module: base
 #: view:ir.model:0
-#: model:ir.module.module,shortdesc:base.module_meta_information
+#: model:ir.module.module,shortdesc:base.module_base
 #: field:res.currency,base:0
 msgid "Base"
 msgstr "Βάση"
@@ -6085,9 +6077,7 @@
 #: field:ir.property,value_text:0
 #: selection:ir.server.object.lines,type:0
 #: field:ir.server.object.lines,value:0
-#: view:ir.values:0
 #: field:ir.values,value:0
-#: field:ir.values,value_unpickle:0
 msgid "Value"
 msgstr "Τιμή"
 
@@ -6095,7 +6085,6 @@
 #: field:ir.sequence,code:0
 #: field:ir.sequence.type,code:0
 #: selection:ir.translation,type:0
-#: field:res.bank,code:0
 #: field:res.partner.bank.type,code:0
 msgid "Code"
 msgstr "Κωδικός"
@@ -6121,7 +6110,6 @@
 msgstr "Βοήθεια"
 
 #. module: base
-#: help:res.config.users,menu_id:0
 #: help:res.users,menu_id:0
 msgid ""
 "If specified, the action will replace the standard menu for this user."
@@ -6203,7 +6191,8 @@
 msgstr "Afghanistan, Islamic State of"
 
 #. module: base
-#: code:addons/base/module/wizard/base_module_import.py:67
+#: code:addons/base/module/wizard/base_module_import.py:60
+#: code:addons/base/module/wizard/base_module_import.py:68
 #, python-format
 msgid "Error !"
 msgstr "Σφάλμα!"
@@ -6225,13 +6214,14 @@
 msgstr "Είδος"
 
 #. module: base
-#: code:addons/orm.py:3775
+#: code:addons/orm.py:4368
 #, python-format
 msgid "This method does not exist anymore"
 msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια"
 
 #. module: base
 #: field:res.bank,fax:0
+#: field:res.company,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
 msgstr "Fax"
@@ -6297,7 +6287,6 @@
 msgstr ""
 
 #. module: base
-#: constraint:res.config.users:0
 #: constraint:res.users:0
 msgid "The chosen company is not in the allowed companies for this user"
 msgstr ""
@@ -6330,7 +6319,6 @@
 msgstr "Record Rules"
 
 #. module: base
-#: field:res.config.users,name:0
 #: field:res.users,name:0
 msgid "User Name"
 msgstr "Όνομα Χρήστη"
@@ -6396,7 +6384,6 @@
 
 #. module: base
 #: selection:ir.actions.todo,state:0
-#: view:res.config.users:0
 msgid "Done"
 msgstr "Ολοκληρωμένο"
 
@@ -6419,6 +6406,7 @@
 
 #. module: base
 #: field:res.bank,city:0
+#: field:res.company,city:0
 #: field:res.partner,city:0
 #: field:res.partner.address,city:0
 #: field:res.partner.bank,city:0
@@ -6447,9 +6435,7 @@
 msgstr "Estonian / Eesti keel"
 
 #. module: base
-#: field:res.config.users,email:0
 #: field:res.partner,email:0
-#: field:res.users,email:0
 msgid "E-mail"
 msgstr "E-mail"
 
@@ -6488,7 +6474,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:484
+#: code:addons/base/ir/ir_model.py:531
 #, python-format
 msgid ""
 "You can not read this document (%s) ! Be sure your user belongs to one of "
@@ -6497,10 +6483,7 @@
 
 #. module: base
 #: view:res.bank:0
-#: field:res.config.users,address_id:0
 #: view:res.partner.address:0
-#: view:res.users:0
-#: field:res.users,address_id:0
 msgid "Address"
 msgstr "Διεύθυνση"
 
@@ -6533,7 +6516,7 @@
 #: view:workflow.activity:0
 #: field:workflow.workitem,act_id:0
 msgid "Activity"
-msgstr "Activity"
+msgstr "Δραστηριότητα"
 
 #. module: base
 #: view:res.partner:0
@@ -6568,6 +6551,7 @@
 
 #. module: base
 #: field:ir.default,value:0
+#: view:ir.values:0
 msgid "Default Value"
 msgstr "Προεπιλεγμένη Τιμή"
 
@@ -6582,7 +6566,7 @@
 msgstr "Saint Kitts & Nevis Anguilla"
 
 #. module: base
-#: code:addons/base/res/res_currency.py:100
+#: code:addons/base/res/res_currency.py:190
 #, python-format
 msgid ""
 "No rate found \n"
@@ -6598,9 +6582,7 @@
 msgstr ""
 
 #. module: base
-#: field:ir.model,name:0
 #: field:ir.model.fields,model:0
-#: field:ir.values,model:0
 msgid "Object Name"
 msgstr "Όνομα Αντικειμένου"
 
@@ -6681,7 +6663,7 @@
 msgstr "Samoa"
 
 #. module: base
-#: code:addons/base/res/res_lang.py:161
+#: code:addons/base/res/res_lang.py:191
 #, python-format
 msgid ""
 "You cannot delete the language which is Active !\n"
@@ -6692,7 +6674,6 @@
 
 #. module: base
 #: view:base.language.install:0
-#: view:base.module.import:0
 msgid ""
 "Please be patient, this operation may take a few minutes (depending on the "
 "number of modules currently installed)..."
@@ -6706,15 +6687,15 @@
 msgstr "Child IDs"
 
 #. module: base
-#: code:addons/base/ir/ir_actions.py:713
-#: code:addons/base/ir/ir_actions.py:716
+#: code:addons/base/ir/ir_actions.py:748
+#: code:addons/base/ir/ir_actions.py:751
 #, python-format
 msgid "Problem in configuration `Record Id` in Server Action!"
 msgstr "Problem in configuration `Record Id` in Server Action!"
 
 #. module: base
-#: code:addons/orm.py:2306
-#: code:addons/orm.py:2316
+#: code:addons/orm.py:2682
+#: code:addons/orm.py:2692
 #, python-format
 msgid "ValidateError"
 msgstr "ValidateError"
@@ -6756,19 +6737,19 @@
 
 #. module: base
 #: selection:ir.actions.server,state:0
-#: field:res.config.users,user_email:0
+#: model:ir.ui.menu,name:base.menu_email
+#: field:res.company,email:0
 #: field:res.users,user_email:0
 msgid "Email"
 msgstr "Email"
 
 #. module: base
-#: field:res.config.users,action_id:0
 #: field:res.users,action_id:0
 msgid "Home Action"
 msgstr "Home Action"
 
 #. module: base
-#: code:addons/custom.py:558
+#: code:addons/custom.py:555
 #, python-format
 msgid ""
 "The sum of the data (2nd field) is null.\n"
@@ -6778,6 +6759,7 @@
 "Αδύνατη η δημιουργία κυκλικού διαγράμματος !"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_reporting
 #: model:ir.ui.menu,name:base.menu_lunch_reporting
 #: model:ir.ui.menu,name:base.menu_project_report
 #: model:ir.ui.menu,name:base.menu_report_association
@@ -6874,7 +6856,6 @@
 msgstr "Πλήρες Mode"
 
 #. module: base
-#: field:res.config.users,context_tz:0
 #: field:res.users,context_tz:0
 msgid "Timezone"
 msgstr "Ζώνη Ώρας"
@@ -6918,7 +6899,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:253
+#: code:addons/base/module/module.py:293
 #, python-format
 msgid ""
 "Unable to install module \"%s\" because an external dependency is not met: %s"
@@ -6938,9 +6919,9 @@
 #: field:ir.actions.act_window,name:0
 #: field:ir.actions.act_window_close,name:0
 #: field:ir.actions.actions,name:0
+#: field:ir.actions.client,name:0
 #: field:ir.actions.server,name:0
 #: field:ir.actions.url,name:0
-#: field:ir.filters,name:0
 msgid "Action Name"
 msgstr "Όνομα Ενέργειας"
 
@@ -6954,12 +6935,14 @@
 msgstr ""
 
 #. module: base
+#: selection:ir.module.module,complexity:0
 #: selection:res.request,priority:0
 msgid "Normal"
 msgstr "Κανονικό"
 
 #. module: base
 #: field:res.bank,street2:0
+#: field:res.company,street2:0
 #: field:res.partner.address,street2:0
 msgid "Street2"
 msgstr "Οδός 2"
@@ -6978,10 +6961,11 @@
 #. module: base
 #: view:ir.cron:0
 #: field:ir.cron,user_id:0
-#: view:ir.filters:0
 #: field:ir.filters,user_id:0
 #: field:ir.ui.view.custom,user_id:0
 #: field:ir.values,user_id:0
+#: model:res.groups,name:base.group_document_user
+#: model:res.groups,name:base.group_tool_user
 #: field:res.log,user_id:0
 #: field:res.partner.event,user_id:0
 #: view:res.users:0
@@ -7045,14 +7029,13 @@
 msgstr ""
 
 #. module: base
-#: help:res.config.users,name:0
 #: help:res.users,name:0
 msgid "The new user's real name, used for searching and most listings"
 msgstr ""
 
 #. module: base
-#: code:addons/osv.py:154
-#: code:addons/osv.py:156
+#: code:addons/osv.py:150
+#: code:addons/osv.py:152
 #, python-format
 msgid "Integrity Error"
 msgstr ""
@@ -7063,7 +7046,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:223
+#: code:addons/base/ir/ir_model.py:255
 #, python-format
 msgid "Size of the field can never be less than 1 !"
 msgstr "ο μέγεθος του πεδίου δεν μπορεί ποτέ να είναι μικρότερο του 1!"
@@ -7102,7 +7085,7 @@
 msgstr "Arguments"
 
 #. module: base
-#: code:addons/orm.py:716
+#: code:addons/orm.py:1260
 #, python-format
 msgid "Database ID doesn't exist: %s : %s"
 msgstr ""
@@ -7118,7 +7101,7 @@
 msgstr "GPL Έκδοση 3"
 
 #. module: base
-#: code:addons/orm.py:836
+#: code:addons/orm.py:1388
 #, python-format
 msgid "key '%s' not found in selection field '%s'"
 msgstr ""
@@ -7187,7 +7170,10 @@
 #: field:ir.actions.act_window.view,sequence:0
 #: field:ir.actions.server,sequence:0
 #: field:ir.actions.todo,sequence:0
+#: field:ir.actions.todo.category,sequence:0
 #: view:ir.cron:0
+#: field:ir.module.category,sequence:0
+#: field:ir.module.module,sequence:0
 #: view:ir.sequence:0
 #: field:ir.ui.menu,sequence:0
 #: view:ir.ui.view:0
@@ -7206,6 +7192,7 @@
 msgstr "Tunisia"
 
 #. module: base
+#: model:ir.module.category,name:base.module_category_manufacturing
 #: model:ir.ui.menu,name:base.menu_mrp_root
 msgid "Manufacturing"
 msgstr ""
@@ -7248,7 +7235,7 @@
 msgstr "Αντιγραφή Αντικειμένου"
 
 #. module: base
-#: code:addons/base/res/res_user.py:581
+#: code:addons/base/res/res_users.py:119
 #, python-format
 msgid ""
 "Group(s) cannot be deleted, because some user(s) still belong to them: %s !"
@@ -7279,19 +7266,14 @@
 #: field:ir.cron,model:0
 #: field:ir.default,field_tbl:0
 #: field:ir.filters,model_id:0
-#: field:ir.model,model:0
 #: view:ir.model.access:0
 #: field:ir.model.access,model_id:0
 #: view:ir.model.data:0
-#: field:ir.model.data,model:0
 #: view:ir.model.fields:0
-#: view:ir.rule:0
 #: field:ir.rule,model_id:0
 #: selection:ir.translation,type:0
 #: view:ir.ui.view:0
 #: field:ir.ui.view,model:0
-#: view:ir.values:0
-#: field:ir.values,model_id:0
 #: field:multi_company.default,object_id:0
 #: field:res.log,res_model:0
 #: field:res.request.link,object:0
@@ -7300,7 +7282,7 @@
 msgstr "Αντικείμενο"
 
 #. module: base
-#: code:addons/osv.py:151
+#: code:addons/osv.py:147
 #, python-format
 msgid ""
 "\n"
@@ -7338,7 +7320,7 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:331
+#: code:addons/base/ir/ir_model.py:371
 #, python-format
 msgid ""
 "Changing the type of a column is not yet supported. Please drop it and "
@@ -7351,7 +7333,7 @@
 msgstr "User Ref."
 
 #. module: base
-#: code:addons/base/res/res_user.py:580
+#: code:addons/base/res/res_users.py:118
 #, python-format
 msgid "Warning !"
 msgstr "Προσοχή!"
@@ -7369,6 +7351,7 @@
 #: model:ir.ui.menu,name:base.menu_marketing_config_association
 #: model:ir.ui.menu,name:base.menu_marketing_config_root
 #: view:res.company:0
+#: model:res.groups,name:base.group_system
 msgid "Configuration"
 msgstr "Ρυθμίσεις"
 
@@ -7401,7 +7384,6 @@
 #: model:ir.model,name:base.model_res_partner
 #: field:res.company,partner_id:0
 #: view:res.partner.address:0
-#: field:res.partner.bank,partner_id:0
 #: field:res.partner.event,partner_id:0
 #: selection:res.partner.title,domain:0
 #: model:res.request.link,name:base.req_link_partner
@@ -7431,13 +7413,10 @@
 
 #. module: base
 #: field:ir.actions.todo,state:0
-#: view:ir.module.module:0
 #: field:ir.module.module,state:0
 #: field:ir.module.module.dependency,state:0
 #: field:publisher_warranty.contract,state:0
-#: field:res.bank,state:0
 #: view:res.country.state:0
-#: field:res.partner.bank,state_id:0
 #: view:res.request:0
 #: field:res.request,state:0
 #: field:workflow.instance,state:0
@@ -7497,7 +7476,7 @@
 msgstr "workflow.triggers"
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:62
+#: code:addons/base/ir/ir_model.py:74
 #, python-format
 msgid "Invalid search criterions"
 msgstr "Λάθος κριτήρια αναζήτησης"
@@ -7545,6 +7524,7 @@
 #: field:ir.actions.act_window,type:0
 #: field:ir.actions.act_window_close,type:0
 #: field:ir.actions.actions,type:0
+#: field:ir.actions.client,type:0
 #: field:ir.actions.report.xml,type:0
 #: view:ir.actions.server:0
 #: field:ir.actions.server,state:0
@@ -7555,7 +7535,7 @@
 msgstr "Τύπος Ενέργειας"
 
 #. module: base
-#: code:addons/base/module/module.py:268
+#: code:addons/base/module/module.py:308
 #, python-format
 msgid ""
 "You try to install module '%s' that depends on module '%s'.\n"
@@ -7575,7 +7555,8 @@
 msgstr "Type fields"
 
