← Back to team overview

openerp-community team mailing list archive

lp:~openerp-community/openobject-server/edannenberg_frequentcronjobs into lp:openobject-server

 

Erik Dannenberg (bloopark systems) has proposed merging lp:~openerp-community/openobject-server/edannenberg_frequentcronjobs into lp:openobject-server.

Requested reviews:
  OpenERP Core Team (openerp)


See https://lists.launchpad.net/openerp-expert-framework/msg00486.html
-- 
The attached diff has been truncated due to its size.
https://code.launchpad.net/~openerp-community/openobject-server/edannenberg_frequentcronjobs/+merge/39276
Your team OpenERP Community is subscribed to branch lp:~openerp-community/openobject-server/edannenberg_frequentcronjobs.
=== modified file '.bzrignore'
--- .bzrignore	2009-12-02 10:01:14 +0000
+++ .bzrignore	2010-10-25 14:08:46 +0000
@@ -1,6 +1,10 @@
+MANIFEST
+*.patch
+*.diff
 *.pyc
 .*.swp
 .bzrignore
+openerp-server
 bin/addons/*
 bin/filestore*
 .Python

=== modified file 'MANIFEST.in'
--- MANIFEST.in	2010-10-18 21:59:29 +0000
+++ MANIFEST.in	2010-10-25 14:08:46 +0000
@@ -9,8 +9,14 @@
 include bin/gpl.txt
 include man/openerp-server.1
 include man/openerp_serverrc.5
-recursive-include pixmaps *
-recursive-include win32 *
+<<<<<<< TREE
+recursive-include pixmaps *
+recursive-include win32 *
+=======
+exclude Makefile
+recursive-include pixmaps *
+recursive-include win32 *
+>>>>>>> MERGE-SOURCE
 recursive-include doc *
 recursive-include bin *xml *xsl *sql *rml *sxw *csv *rng
 graft bin/addons

=== modified file 'bin/addons/__init__.py'
--- bin/addons/__init__.py	2010-10-21 11:01:44 +0000
+++ bin/addons/__init__.py	2010-10-25 14:08:46 +0000
@@ -24,26 +24,30 @@
 from os.path import join as opj
 import itertools
 import zipimport
-
 import osv
 import tools
 import tools.osutil
 from tools.safe_eval import safe_eval as eval
 import pooler
-
-
 import netsvc
+<<<<<<< TREE
 
+=======
+from osv import fields
+>>>>>>> MERGE-SOURCE
 import zipfile
 import release
-
 import re
 import base64
 from zipfile import PyZipFile, ZIP_DEFLATED
 from cStringIO import StringIO
+<<<<<<< TREE
 
 import logging
 
+=======
+from tools.safe_eval import safe_eval as eval
+>>>>>>> MERGE-SOURCE
 
 logger = netsvc.Logger()
 
@@ -85,7 +89,12 @@
         ## Then we get the values from the database
         cr.execute('SELECT name, id, state, demo AS dbdemo, latest_version AS installed_version'
                    '  FROM ir_module_module'
+<<<<<<< TREE
                    ' WHERE name IN %s',(tuple(additional_data),)
+=======
+                   ' WHERE name in %s',
+                    (tuple(additional_data),)
+>>>>>>> MERGE-SOURCE
                    )
 
         ## and we update the default values with values from the database
@@ -787,6 +796,7 @@
         status = {}
     cr = db.cursor()
     if cr:
+<<<<<<< TREE
         cr.execute("SELECT relname FROM pg_class WHERE relkind='r' AND relname='ir_module_module'")
         if len(cr.fetchall())==0:
             logger.notifyChannel("init", netsvc.LOG_INFO, "init db")
@@ -795,6 +805,17 @@
             tools.config['update']['all'] = 1
             if not tools.config['without_demo']:
                 tools.config["demo"]['all'] = 1
+=======
+       cr.execute("SELECT relname FROM pg_class WHERE relkind='r' AND relname='ir_module_module'")
+       if len(cr.fetchall())==0:    
+           logger.notifyChannel("init", netsvc.LOG_INFO, "init db")
+           tools.init_db(cr)
+           # in that case, force --init=all
+           tools.config["init"]["all"] = 1
+           tools.config['update']['all'] = 1
+           if not tools.config['without_demo']:
+               tools.config["demo"]['all'] = 1 
+>>>>>>> MERGE-SOURCE
     force = []
     if force_demo:
         force.append('demo')
@@ -837,8 +858,15 @@
         while True:
             loop_guardrail += 1
             if loop_guardrail > 100:
+<<<<<<< TREE
                 raise ValueError('Possible recursive module tree detected, aborting.')
             cr.execute("SELECT name from ir_module_module WHERE state IN %s" ,(tuple(STATES_TO_LOAD),))
+=======
+                raise ProgrammingError()
+            cr.execute("SELECT name from ir_module_module WHERE state in %s",
+                       (tuple(STATES_TO_LOAD),)
+                      )
+>>>>>>> MERGE-SOURCE
 
             module_list = [name for (name,) in cr.fetchall() if name not in graph]
             if not module_list:

=== modified file 'bin/addons/base/__openerp__.py'
--- bin/addons/base/__openerp__.py	2010-10-18 19:24:50 +0000
+++ bin/addons/base/__openerp__.py	2010-10-25 14:08:46 +0000
@@ -72,6 +72,7 @@
         'res/ir_property_view.xml',
         'security/base_security.xml',
         'maintenance/maintenance_view.xml',
+<<<<<<< TREE
 
         'security/ir.model.access.csv',
         'res/res_widget_view.xml',
@@ -88,6 +89,16 @@
         'test/test_context.xml',
         'test/bug_lp541545.xml',
     ],
+=======
+        'security/ir.model.access.csv'
+    ],
+    'demo_xml': [
+        'base_demo.xml', 
+        'res/partner/partner_demo.xml', 
+        'res/partner/crm_demo.xml',
+        'base_test.xml'
+    ],
+>>>>>>> MERGE-SOURCE
     'installable': True,
     'active': True,
     'certificate': '0076807797149',

=== modified file 'bin/addons/base/base_data.xml'
--- bin/addons/base/base_data.xml	2010-10-05 12:46:33 +0000
+++ bin/addons/base/base_data.xml	2010-10-25 14:08:46 +0000
@@ -1170,6 +1170,11 @@
             <field name="currency_id" ref="COP"/>
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
+        <record id="rateCOP" model="res.currency.rate">
+            <field name="rate">2933.8378</field>
+            <field name="currency_id" ref="COP"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
         
         <record id="CZK" model="res.currency">
             <field name="name">Kč</field>
@@ -1177,6 +1182,7 @@
             <field name="symbol">Kč</field>
             <field name="rounding">0.01</field>
             <field name="accuracy">4</field>
+<<<<<<< TREE
             <field name="company_id" ref="main_company"/>
         </record>
         <record id="rateCZK" model="res.currency.rate">
@@ -1185,6 +1191,15 @@
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
 
+=======
+        </record>
+        <record id="rateCZK" model="res.currency.rate">
+            <field name="rate">26.5634</field>
+            <field name="currency_id" ref="CZK"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
+        
+>>>>>>> MERGE-SOURCE
         <record id="DKK" model="res.currency">
             <field name="name">kr</field>
             <field name="code">DKK</field>
@@ -1213,6 +1228,11 @@
             <field name="currency_id" ref="HUF"/>
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
+        <record id="rateHUF" model="res.currency.rate">
+            <field name="rate">271.5621</field>
+            <field name="currency_id" ref="HUF"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
         
         <record id="IDR" model="res.currency">
             <field name="name">Rs</field>
@@ -1220,6 +1240,7 @@
             <field name="symbol">Rs</field>
             <field name="rounding">0.01</field>
             <field name="accuracy">4</field>
+<<<<<<< TREE
             <field name="company_id" ref="main_company"/>
         </record>
         <record id="rateIDR1" model="res.currency.rate">
@@ -1233,6 +1254,15 @@
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
 
+=======
+        </record>
+        <record id="rateIDR" model="res.currency.rate">
+            <field name="rate">13495.2056</field>
+            <field name="currency_id" ref="IDR"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
+        
+>>>>>>> MERGE-SOURCE
         <record id="LVL" model="res.currency">
             <field name="name">Ls</field>
             <field name="code">LVL</field>
@@ -1290,6 +1320,11 @@
             <field name="currency_id" ref="PLN"/>
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
+        <record id="ratePLN" model="res.currency.rate">
+            <field name="rate">4.1005</field>
+            <field name="currency_id" ref="PLN"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
         
         <record id="SEK" model="res.currency">
             <field name="name">kr</field>
@@ -1304,6 +1339,11 @@
             <field name="currency_id" ref="SEK"/>
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
+        <record id="rateSEK" model="res.currency.rate">
+            <field name="rate">10.3004</field>
+            <field name="currency_id" ref="SEK"/>
+            <field eval="time.strftime('%Y-01-01')" name="name"/>
+        </record>
         
         <record id="GBP" model="res.currency">
             <field name="name">GBP</field>
@@ -1334,9 +1374,14 @@
         </record>
 
         <record id="INR" model="res.currency">
+<<<<<<< TREE
             <field name="name">Rs</field>
             <field name="code">INR</field>
             <field name="symbol">Rs</field>
+=======
+            <field name="name">Rs</field>
+            <field name="code">INR</field>
+>>>>>>> MERGE-SOURCE
             <field name="rounding">0.01</field>
             <field name="accuracy">4</field>
             <field name="company_id" ref="main_company"/>
@@ -1346,6 +1391,7 @@
             <field name="currency_id" ref="INR"/>
             <field eval="time.strftime('%Y-01-01')" name="name"/>
         </record>
+<<<<<<< TREE
 
         <record id="AUD" model="res.currency">
             <field name="name">AUD</field>
@@ -1378,5 +1424,33 @@
             <field name="name">Reserve</field>
             <field name="code">RSV</field>
         </record>
+=======
+        <record id="rateINR2001" model="res.currency.rate">
+            <field name="rate">0.631</field>
+            <field name="currency_id" ref="INR"/>
+            <field name="name">2001-01-01</field>
+        </record>
+        <record id="rateINR2002" model="res.currency.rate">
+            <field name="rate">0.632</field>
+            <field name="currency_id" ref="INR"/>
+            <field name="name">2002-01-01</field>
+        </record>
+       
+        <!-- Basic Company  -->
+        <record id="main_company" model="res.company">
+            <field name="name">Tiny sprl</field>
+            <field name="partner_id" ref="main_partner"/>
+            <field name="rml_header1">Free Business Solutions</field>
+            <field name="rml_footer1">Web: http://tiny.be - Tel: (+32).81.81.37.00 - Bank: CPH 126-2013269-07</field>
+            <field name="rml_footer2">IBAN: BE74 1262 0132 6907 - SWIFT: GKCCBEBB - VAT: BE0477.472.701</field>
+            <field name="currency_id" ref="EUR"/>
+        </record>
+        
+        <assert id="main_company" model="res.company">
+            <test expr="currency_id.code == 'eur'.upper()"/>
+            <test expr="name">Tiny sprl</test>
+        </assert>
+
+>>>>>>> MERGE-SOURCE
     </data>
 </openerp>

=== added file 'bin/addons/base/base_test.xml'
--- bin/addons/base/base_test.xml	1970-01-01 00:00:00 +0000
+++ bin/addons/base/base_test.xml	2010-10-25 14:08:46 +0000
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+   	<!-- Test context attribute for unit tests -->
+    <data context="{'date': '2001-06-01'}">
+        <assert 
+        	model="res.currency"
+        	id="INR"
+        	string="Indian rupee rate in 2001">
+        	<!-- date specified in data element's context -->
+            <test expr="str(rate)">0.631</test>
+        </assert>
+        <assert 
+        	model="res.currency"
+        	id="INR"
+        	string="Indian rupee rate in 2002"
+        	context="{'date': '2002-06-01'}">
+            <test expr="str(rate)">0.632</test>
+        </assert>
+    </data>
+    
+    <!-- Test count attribute for assertions -->
+    <data>
+    	<assert
+    		model="res.currency.rate"
+    		search="[('currency_id', '=', ref('INR'))]"
+    		count="3"
+    		string="Rate entries for Indian rupee">
+    		<test expr="True"/>
+    	</assert>
+    </data>
+</openerp>

=== added file 'bin/addons/base/i18n/ar_AR.po.OTHER'
--- bin/addons/base/i18n/ar_AR.po.OTHER	1970-01-01 00:00:00 +0000
+++ bin/addons/base/i18n/ar_AR.po.OTHER	2010-10-25 14:08:46 +0000
@@ -0,0 +1,7714 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* base
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.12\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2010-09-02 13:35:10+0000\n"
+"PO-Revision-Date: 2010-09-02 13:35:10+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: base
+#: model:res.country,name:base.sh
+msgid "Saint Helena"
+msgstr "سانت هيلينا"
+
+#. module: base
+#: wizard_view:res.partner.sms_send,init:0
+msgid "SMS - Gateway: clickatell"
+msgstr "SMS - Gateway: clickatell"
+
+#. module: base
+#: view:res.lang:0
+msgid "%j - Day of the year as a decimal number [001,366]."
+msgstr "%j - Day of the year as a decimal number [001,366]."
+
+#. module: base
+#: 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 "View Architecture"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not create this kind of document! (%s)"
+msgstr "You can not create this kind of document! (%s)"
+
+#. module: base
+#: wizard_field:module.lang.import,init,code:0
+msgid "Code (eg:en__US)"
+msgstr "Code (eg:en__US)"
+
+#. module: base
+#: view:workflow:0
+#: field:workflow.activity,wkf_id:0
+#: field:workflow.instance,wkf_id:0
+msgid "Workflow"
+msgstr "Workflow"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "To browse official translations, you can visit this link: "
+msgstr "الترجمة الرسمية لتصفح ، يمكنك زيارة هذا الرابط : "
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Hungarian / Magyar"
+msgstr "المجرية / Magyar"
+
+#. module: base
+#: field:ir.actions.server,wkf_model_id:0
+msgid "Workflow On"
+msgstr "Workflow On"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Views"
+msgstr "Created Views"
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Outgoing transitions"
+msgstr "Outgoing transitions"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Yearly"
+msgstr "سنوي"
+
+#. module: base
+#: field:ir.actions.act_window,target:0
+msgid "Target Window"
+msgstr "Target Window"
+
+#. module: base
+#: model:ir.actions.todo,note:base.config_wizard_simple_view
+msgid "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+msgstr "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+
+#. module: base
+#: field:ir.rule,operand:0
+msgid "Operand"
+msgstr "Operand"
+
+#. module: base
+#: model:res.country,name:base.kr
+msgid "South Korea"
+msgstr "South Korea"
+
+#. 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 "Transitions"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_custom
+msgid "ir.ui.view.custom"
+msgstr "ir.ui.view.custom"
+
+#. module: base
+#: model:res.country,name:base.sz
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_report_custom
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.report.custom"
+msgstr "ir.actions.report.custom"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CANCEL"
+msgstr "STOCK_CANCEL"
+
+#. module: base
+#: field:ir.report.custom,sortby:0
+msgid "Sorted By"
+msgstr "Sorted By"
+
+#. module: base
+#: field:ir.sequence,number_increment:0
+msgid "Increment Number"
+msgstr "Increment Number"
+
+#. 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 "Company's Structure"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NO"
+msgstr "STOCK_NO"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, python-format
+msgid "new"
+msgstr "new"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_TOP"
+msgstr "STOCK_GOTO_TOP"
+
+#. module: base
+#: field:ir.actions.report.custom,multi:0
+#: field:ir.actions.report.xml,multi:0
+msgid "On multiple doc."
+msgstr "On multiple doc."
+
+#. module: base
+#: field:ir.module.category,module_nr:0
+msgid "Number of Modules"
+msgstr "Number of Modules"
+
+#. module: base
+#: field:res.partner.bank.type.field,size:0
+msgid "Max. Size"
+msgstr "Max. Size"
+
+#. module: base
+#: field:res.partner.address,name:0
+msgid "Contact Name"
+msgstr "Contact Name"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, 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 "Save this document to a %s file and edit it with a specific software or a text editor. The file encoding is UTF-8."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DELETE"
+msgstr "STOCK_DELETE"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password mismatch !"
+msgstr "Password mismatch !"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "This url '%s' must provide an html file with links to zip modules"
+msgstr "This url '%s' must provide an html file with links to zip modules"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "active"
+msgstr "نشط"
+
+#. module: base
+#: field:ir.actions.wizard,wiz_name:0
+msgid "Wizard Name"
+msgstr "Wizard Name"
+
+#. module: base
+#: view:res.lang:0
+msgid "%y - Year without century as a decimal number [00,99]."
+msgstr "%y - السنة بدون القرن (من 00 إلى 99)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_FIRST"
+msgstr "STOCK_GOTO_FIRST"
+
+#. module: base
+#: help:ir.rule.group,rules:0
+msgid "The rule is satisfied if at least one test is True"
+msgstr "The rule is satisfied if at least one test is True"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Get Max"
+msgstr "Get Max"
+
+#. module: base
+#: help:ir.actions.act_window,limit:0
+msgid "Default limit for the list view"
+msgstr "Default limit for the list view"
+
+#. module: base
+#: field:ir.model.data,date_update:0
+msgid "Update Date"
+msgstr "Update Date"
+
+#. module: base
+#: field:ir.actions.act_window,src_model:0
+msgid "Source Object"
+msgstr "Source Object"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: view:ir.actions.todo:0
+#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
+msgid "Config Wizard Steps"
+msgstr "Config Wizard Steps"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_sc
+msgid "ir.ui.view_sc"
+msgstr "ir.ui.view_sc"
+
+#. module: base
+#: field:ir.model.access,group_id:0
+#: field:ir.rule,rule_group:0
+msgid "Group"
+msgstr "Group"
+
+#. 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
+#: model:ir.actions.act_window,name:base.open_module_tree_uninstall
+#: model:ir.ui.menu,name:base.menu_module_tree_uninstall
+msgid "Uninstalled modules"
+msgstr "Uninstalled modules"
+
+#. module: base
+#: wizard_view:server.action.create,init:0
+#: wizard_field:server.action.create,init,type:0
+msgid "Select Action Type"
+msgstr "Select Action Type"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+msgid "Configure"
+msgstr "Configure"
+
+#. module: base
+#: model:res.country,name:base.tv
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. module: base
+#: selection:ir.model,state:0
+#: selection:ir.model.grid,state:0
+msgid "Custom Object"
+msgstr "Custom Object"
+
+#. 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 "E-Mail"
+
+#. module: base
+#: model:res.country,name:base.an
+msgid "Netherlands Antilles"
+msgstr "جزر الأنتيل الهولندية"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)"
+msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)"
+
+#. module: base
+#: model:res.country,name:base.gf
+msgid "French Guyana"
+msgstr "French Guyana"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Bosnian / bosanski jezik"
+msgstr "البوسنية/ bosanski jezik"
+
+#. 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 "If you check this, then the second time the user prints with same attachment name, it returns the previous report."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_REWIND"
+msgstr "STOCK_MEDIA_REWIND"
+
+#. module: base
+#: field:ir.actions.todo,note:0
+msgid "Text"
+msgstr "Text"
+
+#. module: base
+#: field:res.country,name:0
+msgid "Country Name"
+msgstr "Country Name"
+
+#. module: base
+#: model:res.country,name:base.co
+msgid "Colombia"
+msgstr "كولومبيا"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule Upgrade"
+msgstr "Schedule Upgrade"
+
+#. module: base
+#: field:ir.actions.report.custom,report_id:0
+msgid "Report Ref."
+msgstr "Report Ref."
+
+#. 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 "The ISO country code in two chars.\n"
+"You can use this field for quick search."
+
+#. module: base
+#: selection:workflow.activity,join_mode:0
+#: selection:workflow.activity,split_mode:0
+msgid "Xor"
+msgstr "Xor"
+
+#. module: base
+#: view:ir.values:0
+msgid "Action To Launch"
+msgstr "Action To Launch"
+
+#. module: base
+#: view:res.partner:0
+msgid "Sales & Purchases"
+msgstr "Sales & Purchases"
+
+#. module: base
+#: view:ir.actions.wizard:0
+#: field:wizard.ir.model.menu.create.line,wizard_id:0
+msgid "Wizard"
+msgstr "Wizard"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CUT"
+msgstr "STOCK_CUT"
+
+#. 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 "Wizards"
+
+#. module: base
+#: selection:res.config.view,view:0
+msgid "Extended Interface"
+msgstr "Extended Interface"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Custom fields must have a name that starts with 'x_' !"
+msgstr "Custom fields must have a name that starts with 'x_' !"
+
+#. module: base
+#: help:ir.actions.server,action_id:0
+msgid "Select the Action Window, Report, Wizard to be executed."
+msgstr "Select the Action Window, Report, Wizard to be executed."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export done"
+msgstr "Export done"
+
+#. module: base
+#: view:ir.model:0
+msgid "Model Description"
+msgstr "Model Description"
+
+#. module: base
+#: field:workflow.transition,trigger_expr_id:0
+msgid "Trigger Expression"
+msgstr "Trigger Expression"
+
+#. module: base
+#: model:res.country,name:base.jo
+msgid "Jordan"
+msgstr "الأردن"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not remove the model '%s' !"
+msgstr "You can not remove the model '%s' !"
+
+#. module: base
+#: model:res.country,name:base.er
+msgid "Eritrea"
+msgstr "إريتريا"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Configure simple view"
+msgstr "Configure simple view"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Bulgarian / български"
+msgstr "البلغارية/ български"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_actions
+msgid "ir.actions.actions"
+msgstr "ir.actions.actions"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_report_custom
+#: view:ir.report.custom:0
+msgid "Custom Report"
+msgstr "Custom Report"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Bar Chart"
+msgstr "Bar Chart"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_ERROR"
+msgstr "STOCK_DIALOG_ERROR"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_INDEX"
+msgstr "STOCK_INDEX"
+
+#. module: base
+#: model:res.country,name:base.rs
+msgid "Serbia"
+msgstr "Serbia"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard View"
+msgstr "Wizard View"
+
+#. module: base
+#: model:res.country,name:base.kh
+msgid "Cambodia, Kingdom of"
+msgstr "Cambodia, Kingdom of"
+
+#. 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 "Sequences"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_QUESTION"
+msgstr "STOCK_DIALOG_QUESTION"
+
+#. module: base
+#: model:res.country,name:base.pg
+msgid "Papua New Guinea"
+msgstr "Papua New Guinea"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_4
+msgid "Basic Partner"
+msgstr "Basic Partner"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid ","
+msgstr ","
+
+#. module: base
+#: model:res.country,name:base.es
+msgid "Spain"
+msgstr "Spain"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "You may have to reinstall some language pack."
+msgstr "You may have to reinstall some language pack."
+
+#. module: base
+#: field:res.partner.address,mobile:0
+msgid "Mobile"
+msgstr "Mobile"
+
+#. module: base
+#: model:res.country,name:base.om
+msgid "Oman"
+msgstr "Oman"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_payterm_form
+#: model:ir.model,name:base.model_res_payterm
+msgid "Payment term"
+msgstr "Payment term"
+
+#. module: base
+#: model:res.country,name:base.nu
+msgid "Niue"
+msgstr "Niue"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Work Days"
+msgstr "Work Days"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Other OSI Approved Licence"
+msgstr "Other OSI Approved Licence"
+
+#. module: base
+#: help:ir.values,action_id:0
+msgid "This field is not used, it only helps you to select the right action."
+msgstr "This field is not used, it only helps you to select the right action."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_menu_create
+#: view:wizard.ir.model.menu.create:0
+msgid "Create Menu"
+msgstr "Create Menu"
+
+#. module: base
+#: model:res.country,name:base.in
+msgid "India"
+msgstr "India"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract_module
+msgid "maintenance contract modules"
+msgstr "maintenance contract modules"
+
+#. module: base
+#: view:ir.values:0
+msgid "client_action_multi, client_action_relate"
+msgstr "client_action_multi, client_action_relate"
+
+#. module: base
+#: model:res.country,name:base.ad
+msgid "Andorra, Principality of"
+msgstr "Andorra, Principality of"
+
+#. module: base
+#: field:ir.module.category,child_ids:0
+#: field:res.partner.category,child_ids:0
+msgid "Child Categories"
+msgstr "Child Categories"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "TGZ Archive"
+msgstr "TGZ Archive"
+
+#. module: base
+#: field:res.partner.som,factor:0
+msgid "Factor"
+msgstr "Factor"
+
+#. module: base
+#: view:res.lang:0
+msgid "%B - Full month name."
+msgstr "%B - Full month name."
+
+#. module: base
+#: field:ir.actions.report.xml,report_type:0
+#: field:ir.actions.todo,type:0
+#: field:ir.server.object.lines,type:0
+#: field:ir.translation,type:0
+#: field:ir.values,key:0
+#: view:res.partner:0
+msgid "Type"
+msgstr "Type"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FILE"
+msgstr "STOCK_FILE"
+
+#. module: base
+#: model:res.country,name:base.gu
+msgid "Guam (USA)"
+msgstr "Guam (USA)"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_grid
+msgid "Objects Security Grid"
+msgstr "Objects Security Grid"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_DOWN"
+msgstr "STOCK_GO_DOWN"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_OK"
+msgstr "STOCK_OK"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+#: selection:workflow.activity,kind:0
+msgid "Dummy"
+msgstr "Dummy"
+
+#. module: base
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "Invalid XML for View Architecture!"
+
+#. module: base
+#: model:res.country,name:base.ky
+msgid "Cayman Islands"
+msgstr "Cayman Islands"
+
+#. module: base
+#: field:ir.sequence,name:0
+#: field:ir.sequence.type,name:0
+msgid "Sequence Name"
+msgstr "Sequence Name"
+
+#. module: base
+#: model:res.country,name:base.td
+msgid "Chad"
+msgstr "Chad"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Spanish (AR) / Español (AR)"
+msgstr "Spanish (AR) / Español (AR)"
+
+#. module: base
+#: model:res.country,name:base.ug
+msgid "Uganda"
+msgstr "Uganda"
+
+#. module: base
+#: model:res.country,name:base.ne
+msgid "Niger"
+msgstr "Niger"
+
+#. module: base
+#: model:res.country,name:base.ba
+msgid "Bosnia-Herzegovina"
+msgstr "Bosnia-Herzegovina"
+
+#. module: base
+#: field:ir.report.custom.fields,alignment:0
+msgid "Alignment"
+msgstr "Alignment"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid ">="
+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 "%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."
+
+#. module: base
+#: field:res.partner.event,planned_cost:0
+msgid "Planned Cost"
+msgstr "Planned Cost"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_config
+msgid "ir.model.config"
+msgstr "ir.model.config"
+
+#. module: base
+#: field:ir.module.module,website:0
+#: field:res.partner,website:0
+msgid "Website"
+msgstr "Website"
+
+#. module: base
+#: field:ir.rule.group,rules:0
+msgid "Tests"
+msgstr "Tests"
+
+#. module: base
+#: view:ir.module.repository:0
+msgid "Repository"
+msgstr "Repository"
+
+#. module: base
+#: model:res.country,name:base.gs
+msgid "S. Georgia & S. Sandwich Isls."
+msgstr "S. Georgia & S. Sandwich Isls."
+
+#. module: base
+#: field:ir.actions.url,url:0
+msgid "Action URL"
+msgstr "Action URL"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_FILL"
+msgstr "STOCK_JUSTIFY_FILL"
+
+#. module: base
+#: model:res.country,name:base.mh
+msgid "Marshall Islands"
+msgstr "Marshall Islands"
+
+#. module: base
+#: model:res.country,name:base.ht
+msgid "Haiti"
+msgstr "Haiti"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "RML"
+msgstr "RML"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_category
+#: model:ir.ui.menu,name:base.menu_partner_category_main
+msgid "Partners by Categories"
+msgstr "Partners by Categories"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Pie charts need exactly two fields"
+msgstr "Pie charts need exactly two fields"
+
+#. module: base
+#: help:wizard.module.lang.export,lang:0
+msgid "To export a new language, do not select a language."
+msgstr "To export a new language, do not select a language."
+
+#. module: base
+#: model:res.country,name:base.md
+msgid "Moldavia"
+msgstr "Moldavia"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Features"
+msgstr "Features"
+
+#. module: base
+#: field:ir.report.custom,frequency:0
+msgid "Frequency"
+msgstr "Frequency"
+
+#. module: base
+#: field:ir.report.custom.fields,fc0_op:0
+#: field:ir.report.custom.fields,fc1_op:0
+#: field:ir.report.custom.fields,fc2_op:0
+#: field:ir.report.custom.fields,fc3_op:0
+msgid "Relation"
+msgstr "Relation"
+
+#. module: base
+#: field:ir.model.access,perm_read:0
+msgid "Read Access"
+msgstr "Read Access"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports
+msgid "ir.exports"
+msgstr "ir.exports"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MISSING_IMAGE"
+msgstr "STOCK_MISSING_IMAGE"
+
+#. module: base
+#: view:res.users:0
+msgid "Define New Users"
+msgstr "Define New Users"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REMOVE"
+msgstr "STOCK_REMOVE"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "raw"
+msgstr "raw"
+
+#. 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 "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"
+
+#. module: base
+#: field:res.roles,name:0
+msgid "Role Name"
+msgstr "Role Name"
+
+#. module: base
+#: field:res.partner,user_id:0
+msgid "Dedicated Salesman"
+msgstr "Dedicated Salesman"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "-"
+msgstr "-"
+
+#. module: base
+#: field:res.payterm,name:0
+msgid "Payment Term (short name)"
+msgstr "Payment Term (short name)"
+
+#. module: base
+#: model:ir.model,name:base.model_res_bank
+#: view:res.bank:0
+#: field:res.partner.bank,bank:0
+msgid "Bank"
+msgstr "Bank"
+
+#. module: base
+#: view:res.lang:0
+msgid "Examples"
+msgstr "Examples"
+
+#. module: base
+#: field:ir.module.module,reports_by_module:0
+msgid "Reports"
+msgstr "Reports"
+
+#. module: base
+#: field:workflow,on_create:0
+msgid "On Create"
+msgstr "On Create"
+
+#. module: base
+#: wizard_view:base.module.import,init:0
+msgid "Please give your module .ZIP file to import."
+msgstr "Please give your module .ZIP file to import."
+
+#. module: base
+#: field:ir.default,value:0
+msgid "Default Value"
+msgstr "Default Value"
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,user:0
+#: field:res.users,login:0
+msgid "Login"
+msgstr "Login"
+
+#. 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 "Access all the fields related to the current object using expressions, i.e. object.partner_id.name "
+
+#. module: base
+#: view:maintenance.contract:0
+#: field:maintenance.contract,module_ids:0
+msgid "Covered Modules"
+msgstr "Covered Modules"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_COPY"
+msgstr "STOCK_COPY"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_link
+msgid "res.request.link"
+msgstr "res.request.link"
+
+#. module: base
+#: wizard_button:module.module.update,init,update:0
+msgid "Check new modules"
+msgstr "Check new modules"
+
+#. module: base
+#: model:res.country,name:base.km
+msgid "Comoros"
+msgstr "Comoros"
+
+#. 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 "Server Actions"
+
+#. module: base
+#: model:res.country,name:base.tp
+msgid "East Timor"
+msgstr "East Timor"
+
+#. 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 "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"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Simple domain setup"
+msgstr "Simple domain setup"
+
+#. module: base
+#: field:res.currency,accuracy:0
+msgid "Computational Accuracy"
+msgstr "Computational Accuracy"
+
+#. module: base
+#: model:res.country,name:base.kg
+msgid "Kyrgyz Republic (Kyrgyzstan)"
+msgstr "Kyrgyz Republic (Kyrgyzstan)"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line
+msgid "wizard.ir.model.menu.create.line"
+msgstr "wizard.ir.model.menu.create.line"
+
+#. module: base
+#: field:ir.attachment,res_id:0
+msgid "Attached ID"
+msgstr "Attached ID"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day: %(day)s"
+msgstr "Day: %(day)s"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not read this document! (%s)"
+msgstr "You can not read this document! (%s)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FIND_AND_REPLACE"
+msgstr "STOCK_FIND_AND_REPLACE"
+
+#. module: base
+#: model:res.country,name:base.mv
+msgid "Maldives"
+msgstr "Maldives"
+
+#. module: base
+#: help:ir.values,res_id:0
+msgid "Keep 0 if the action must appear on all resources."
+msgstr "Keep 0 if the action must appear on all resources."
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule
+msgid "ir.rule"
+msgstr "ir.rule"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Days"
+msgstr "Days"
+
+#. module: base
+#: field:ir.report.custom.fields,width:0
+msgid "Fixed Width"
+msgstr "Fixed Width"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-calendar"
+msgstr "terp-calendar"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_YES"
+msgstr "STOCK_YES"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_report_custom
+#: model:ir.ui.menu,name:base.menu_ir_action_report_custom
+msgid "Report Custom"
+msgstr "Report Custom"
+
+#. module: base
+#: view:res.lang:0
+msgid "7.  %H:%M:%S      ==> 18:25:20"
+msgstr "7.  %H:%M:%S      ==> 18:25:20"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_form
+#: model:ir.ui.menu,name:base.menu_base_partner
+#: model:ir.ui.menu,name:base.menu_partner_form
+#: view:res.partner:0
+msgid "Partners"
+msgstr "Partners"
+
+#. 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 "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`"
+
+#. module: base
+#: field:ir.attachment,res_model:0
+msgid "Attached Model"
+msgstr "Attached Model"
+
+#. module: base
+#: field:ir.actions.server,trigger_name:0
+msgid "Trigger Name"
+msgstr "Trigger Name"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_access
+msgid "ir.model.access"
+msgstr "ir.model.access"
+
+#. module: base
+#: field:ir.cron,priority:0
+#: field:ir.ui.view,priority:0
+#: field:res.request,priority:0
+#: field:res.request.link,priority:0
+msgid "Priority"
+msgstr "Priority"
+
+#. module: base
+#: field:workflow.transition,act_from:0
+msgid "Source Activity"
+msgstr "Source Activity"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Legend (for prefix, suffix)"
+msgstr "Legend (for prefix, suffix)"
+
+#. module: base
+#: selection:ir.server.object.lines,type:0
+msgid "Formula"
+msgstr "Formula"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Can not remove root user!"
+msgstr "Can not remove root user!"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_LEFT"
+msgstr "STOCK_JUSTIFY_LEFT"
+
+#. module: base
+#: model:res.country,name:base.mw
+msgid "Malawi"
+msgstr "Malawi"
+
+#. module: base
+#: field:res.partner.address,type:0
+msgid "Address Type"
+msgstr "Address Type"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "Auto"
+msgstr "Auto"
+
+#. module: base
+#: view:res.request:0
+msgid "End of Request"
+msgstr "End of Request"
+
+#. module: base
+#: view:res.request:0
+msgid "References"
+msgstr "References"
+
+#. 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 "%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."
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+msgid "Note that this operation may take a few minutes."
+msgstr "Note that this operation may take a few minutes."
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: 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 "Tree"
+msgstr "Tree"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "Could you check your contract information ?"
+msgstr "Could you check your contract information ?"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CLEAR"
+msgstr "STOCK_CLEAR"
+
+#. module: base
+#: help:res.users,password:0
+msgid "Keep empty if you don't want the user to be able to connect on the system."
+msgstr "Keep empty if you don't want the user to be able to connect on the system."
+
+#. module: base
+#: field:ir.actions.act_window,view_mode:0
+#: field:res.config.view,view:0
+msgid "View Mode"
+msgstr "View Mode"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Spanish / Español"
+msgstr "Spanish / Español"
+
+#. module: base
+#: field:res.company,logo:0
+msgid "Logo"
+msgstr "Logo"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PROPERTIES"
+msgstr "STOCK_PROPERTIES"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Uninstall (beta)"
+msgstr "Uninstall (beta)"
+
+#. module: base
+#: selection:ir.actions.act_window,target:0
+#: selection:ir.actions.url,target:0
+msgid "New Window"
+msgstr "New Window"
+
+#. module: base
+#: model:res.country,name:base.bs
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. module: base
+#: selection:res.partner.event,partner_type:0
+msgid "Commercial Prospect"
+msgstr "Commercial Prospect"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Couldn't generate the next id because some partners have an alphabetic id !"
+msgstr "Couldn't generate the next id because some partners have an alphabetic id !"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attachment"
+msgstr "Attachment"
+
+#. module: base
+#: model:res.country,name:base.ie
+msgid "Ireland"
+msgstr "Ireland"
+
+#. module: base
+#: wizard_field:module.module.update,update,update:0
+msgid "Number of modules updated"
+msgstr "Number of modules updated"
+
+#. module: base
+#: field:ir.actions.act_window,groups_id:0
+#: model:ir.actions.act_window,name:base.action_res_groups
+#: field:ir.actions.report.xml,groups_id:0
+#: field:ir.actions.todo,groups_id:0
+#: field:ir.actions.wizard,groups_id:0
+#: field:ir.model.fields,groups:0
+#: field:ir.rule.group,groups:0
+#: field:ir.ui.menu,groups_id:0
+#: model:ir.ui.menu,name:base.menu_action_res_groups
+#: view:res.groups:0
+#: view:res.users:0
+#: field:res.users,groups_id:0
+msgid "Groups"
+msgstr "Groups"
+
+#. module: base
+#: model:res.country,name:base.bz
+msgid "Belize"
+msgstr "Belize"
+
+#. module: base
+#: model:res.country,name:base.ge
+msgid "Georgia"
+msgstr "Georgia"
+
+#. module: base
+#: model:res.country,name:base.pl
+msgid "Poland"
+msgstr "Poland"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be removed"
+msgstr "To be removed"
+
+#. module: base
+#: field:ir.values,meta:0
+msgid "Meta Datas"
+msgstr "Meta Datas"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "This wizard will detect new terms in the application so that you can update them manually."
+msgstr "This wizard will detect new terms in the application so that you can update them manually."
+
+#. 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 "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`."
+
+#. module: base
+#: field:ir.model,name:0
+#: field:ir.model.fields,model:0
+#: field:ir.model.grid,name:0
+#: field:ir.values,model:0
+msgid "Object Name"
+msgstr "Object Name"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Field"
+msgstr "Wizard Field"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SELECT_COLOR"
+msgstr "STOCK_SELECT_COLOR"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_report_custom_fields
+msgid "ir.report.custom.fields"
+msgstr "ir.report.custom.fields"
+
+#. module: base
+#: model:res.country,name:base.st
+msgid "Saint Tome (Sao Tome) and Principe"
+msgstr "Saint Tome (Sao Tome) and Principe"
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Invoice"
+msgstr "Invoice"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REDO"
+msgstr "STOCK_REDO"
+
+#. module: base
+#: model:res.country,name:base.bb
+msgid "Barbados"
+msgstr "Barbados"
+
+#. module: base
+#: model:res.country,name:base.mg
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. module: base
+#: constraint:ir.model:0
+msgid "The Object name must start with x_ and not contain any special character !"
+msgstr "The Object name must start with x_ and not contain any special character !"
+
+#. module: base
+#: help:ir.rule.group,global:0
+msgid "Make the rule global, otherwise it needs to be put on a group"
+msgstr "Make the rule global, otherwise it needs to be put on a group"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_menu_admin
+#: field:ir.report.custom,menu_id:0
+#: view:ir.ui.menu:0
+#: field:ir.ui.menu,name:0
+msgid "Menu"
+msgstr "Menu"
+
+#. module: base
+#: field:res.currency,rate:0
+msgid "Current Rate"
+msgstr "Current Rate"
+
+#. module: base
+#: field:ir.ui.view.custom,ref_id:0
+msgid "Original View"
+msgstr "Original View"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Make sure you have no users linked with the group(s)!"
+msgstr "Make sure you have no users linked with the group(s)!"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+#: selection:ir.rule,operator:0
+msgid "in"
+msgstr "in"
+
+#. module: base
+#: field:ir.actions.url,target:0
+msgid "Action Target"
+msgstr "Action Target"
+
+#. module: base
+#: model:res.country,name:base.ai
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. module: base
+#: field:ir.model.config,password_check:0
+msgid "Confirmation"
+msgstr "Confirmation"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Enter at least one field !"
+msgstr "Enter at least one field !"
+
+#. module: base
+#: field:ir.ui.view_sc,name:0
+msgid "Shortcut Name"
+msgstr "Shortcut Name"
+
+#. module: base
+#: field:res.partner,credit_limit:0
+msgid "Credit Limit"
+msgstr "Credit Limit"
+
+#. 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 "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."
+
+#. module: base
+#: model:res.country,name:base.zw
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_export
+msgid "Import / Export"
+msgstr "Import / Export"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_user_form
+#: view:res.users:0
+msgid "Configure User"
+msgstr "Configure User"
+
+#. module: base
+#: field:ir.actions.server,email:0
+msgid "Email Address"
+msgstr "Email Address"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not write in this document! (%s)"
+msgstr "You can not write in this document! (%s)"
+
+#. module: base
+#: view:ir.actions.server:0
+#: field:workflow.activity,action_id:0
+msgid "Server Action"
+msgstr "Server Action"
+
+#. module: base
+#: model:res.country,name:base.tt
+msgid "Trinidad and Tobago"
+msgstr "Trinidad and Tobago"
+
+#. module: base
+#: model:res.country,name:base.lv
+msgid "Latvia"
+msgstr "Latvia"
+
+#. module: base
+#: view:ir.values:0
+msgid "Values"
+msgstr "Values"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mappings"
+msgstr "Field Mappings"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_custom
+msgid "Customization"
+msgstr "Customization"
+
+#. module: base
+#: model:res.country,name:base.py
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "left"
+msgstr "left"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_close
+msgid "ir.actions.act_window_close"
+msgstr "ir.actions.act_window_close"
+
+#. module: base
+#: field:ir.server.object.lines,col1:0
+msgid "Destination"
+msgstr "Destination"
+
+#. module: base
+#: model:res.country,name:base.lt
+msgid "Lithuania"
+msgstr "Lithuania"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PRINT_PREVIEW"
+msgstr "STOCK_PRINT_PREVIEW"
+
+#. module: base
+#: model:res.country,name:base.si
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. module: base
+#: view:res.partner.canal:0
+#: field:res.partner.event,canal_id:0
+msgid "Channel"
+msgstr "Channel"
+
+#. module: base
+#: view:res.lang:0
+msgid "%p - Equivalent of either AM or PM."
+msgstr "%p - Equivalent of either AM or PM."
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Actions"
+msgstr "Iteration Actions"
+
+#. module: base
+#: field:maintenance.contract,date_stop:0
+msgid "Ending Date"
+msgstr "Ending Date"
+
+#. module: base
+#: model:res.country,name:base.nz
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_7
+msgid "Openstuff.net"
+msgstr "Openstuff.net"
+
+#. module: base
+#: model:res.country,name:base.nf
+msgid "Norfolk Island"
+msgstr "Norfolk Island"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PLAY"
+msgstr "STOCK_MEDIA_PLAY"
+
+#. module: base
+#: field:ir.rule,operator:0
+msgid "Operator"
+msgstr "Operator"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "Installation Done"
+msgstr "Installation Done"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_OPEN"
+msgstr "STOCK_OPEN"
+
+#. module: base
+#: field:ir.actions.server,action_id:0
+#: selection:ir.actions.server,state:0
+msgid "Client Action"
+msgstr "Client Action"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "right"
+msgstr "right"
+
+#. module: base
+#: model:res.country,name:base.bd
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. module: base
+#: constraint:res.company:0
+msgid "Error! You can not create recursive companies."
+msgstr "Error! You can not create recursive companies."
+
+#. module: base
+#: selection:maintenance.contract,state:0
+msgid "Valid"
+msgstr "Valid"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not delete this document! (%s)"
+msgstr "You can not delete this document! (%s)"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "XSL"
+msgstr "XSL"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_other_form
+#: model:ir.ui.menu,name:base.menu_partner_other_form
+msgid "Others Partners"
+msgstr "Others Partners"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Can not upgrade module '%s'. It is not installed."
+msgstr "Can not upgrade module '%s'. It is not installed."
+
+#. module: base
+#: model:res.country,name:base.cu
+msgid "Cuba"
+msgstr "Cuba"
+
+#. module: base
+#: view:res.lang:0
+msgid "%S - Second as a decimal number [00,61]."
+msgstr "%S - Second as a decimal number [00,61]."
+
+#. module: base
+#: model:res.country,name:base.am
+msgid "Armenia"
+msgstr "Armenia"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Daily"
+msgstr "Daily"
+
+#. module: base
+#: model:res.country,name:base.se
+msgid "Sweden"
+msgstr "Sweden"
+
+#. 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 "Gantt"
+
+#. module: base
+#: view:ir.property:0
+msgid "Property"
+msgstr "Property"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type
+#: view:res.partner.bank.type:0
+msgid "Bank Account Type"
+msgstr "Bank Account Type"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-project"
+msgstr "terp-project"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Action Configuration"
+msgstr "Iteration Action Configuration"
+
+#. module: base
+#: model:res.country,name:base.at
+msgid "Austria"
+msgstr "Austria"
+
+#. 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 "Calendar"
+msgstr "Calendar"
+
+#. module: base
+#: field:workflow.activity,signal_send:0
+msgid "Signal (subflow.*)"
+msgstr "Signal (subflow.*)"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_17
+msgid "HR sector"
+msgstr "HR sector"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module_dependency
+msgid "Module dependency"
+msgstr "Module dependency"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Draft"
+msgstr "Draft"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_CENTER"
+msgstr "STOCK_JUSTIFY_CENTER"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Choose Your Mode"
+msgstr "Choose Your Mode"
+
+#. module: base
+#: field:res.company,rml_footer1:0
+msgid "Report Footer 1"
+msgstr "Report Footer 1"
+
+#. module: base
+#: field:res.company,rml_footer2:0
+msgid "Report Footer 2"
+msgstr "Report Footer 2"
+
+#. module: base
+#: view:ir.model.access:0
+#: model:ir.ui.menu,name:base.menu_security_access
+#: view:res.groups:0
+#: field:res.groups,model_access:0
+msgid "Access Controls"
+msgstr "Access Controls"
+
+#. module: base
+#: view:ir.module.module:0
+#: field:ir.module.module,dependencies_id:0
+msgid "Dependencies"
+msgstr "Dependencies"
+
+#. module: base
+#: field:res.partner,parent_id:0
+msgid "Main Company"
+msgstr "Main Company"
+
+#. module: base
+#: field:ir.report.custom.fields,bgcolor:0
+msgid "Background Color"
+msgstr "Background Color"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "If you use a formula type, use a python expression using the variable 'object'."
+msgstr "If you use a formula type, use a python expression using the variable 'object'."
+
+#. module: base
+#: field:res.partner.address,birthdate:0
+msgid "Birthdate"
+msgstr "Birthdate"
+
+#. 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 "Contact Titles"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_som
+msgid "res.partner.som"
+msgstr "res.partner.som"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_activity
+msgid "workflow.activity"
+msgstr "workflow.activity"
+
+#. module: base
+#: field:ir.model.fields,select_level:0
+msgid "Searchable"
+msgstr "Searchable"
+
+#. module: base
+#: model:res.country,name:base.uy
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. module: base
+#: view:res.partner.event:0
+msgid "Document Link"
+msgstr "Document Link"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_title
+msgid "res.partner.title"
+msgstr "res.partner.title"
+
+#. module: base
+#: field:ir.sequence,prefix:0
+msgid "Prefix"
+msgstr "Prefix"
+
+#. module: base
+#: field:ir.actions.server,loop_action:0
+msgid "Loop Action"
+msgstr "Loop Action"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "German / Deutsch"
+msgstr "German / Deutsch"
+
+#. module: base
+#: help:ir.actions.server,trigger_name:0
+msgid "Select the Signal name that is to be used as the trigger."
+msgstr "Select the Signal name that is to be used as the trigger."
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Fields Mapping"
+msgstr "Fields Mapping"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_sir
+msgid "Sir"
+msgstr "Sir"
+
+#. module: base
+#: wizard_button:module.upgrade,next,start:0
+msgid "Start Upgrade"
+msgstr "Start Upgrade"
+
+#. module: base
+#: field:ir.default,ref_id:0
+msgid "ID Ref."
+msgstr "ID Ref."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "French / Français"
+msgstr "French / Français"
+
+#. module: base
+#: model:res.country,name:base.mt
+msgid "Malta"
+msgstr "Malta"
+
+#. module: base
+#: field:ir.actions.server,fields_lines:0
+msgid "Field Mappings."
+msgstr "Field Mappings."
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module
+#: field:ir.model.data,module:0
+#: view:ir.module.module:0
+#: field:ir.module.module.dependency,module_id:0
+#: rml:ir.module.reference:0
+msgid "Module"
+msgstr "Module"
+
+#. module: base
+#: field:ir.attachment,description: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 "Description"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_attachment
+msgid "ir.attachment"
+msgstr "ir.attachment"
+
+#. module: base
+#: field:res.users,action_id:0
+msgid "Home Action"
+msgstr "Home Action"
+
+#. module: base
+#: field:res.lang,grouping:0
+msgid "Separator Format"
+msgstr "Separator Format"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export language"
+msgstr "Export language"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Unvalidated"
+msgstr "Unvalidated"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_9
+msgid "Database Structure"
+msgstr "Database Structure"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard
+#: wizard_view:res.partner.spam_send,init:0
+msgid "Mass Mailing"
+msgstr "Mass Mailing"
+
+#. module: base
+#: model:res.country,name:base.yt
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "You can also import .po files."
+msgstr "You can also import .po files."
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "Unable to find a valid contract"
+msgstr "Unable to find a valid contract"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify an action to launch !"
+msgstr "Please specify an action to launch !"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_RIGHT"
+msgstr "STOCK_JUSTIFY_RIGHT"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_function
+msgid "Function of the contact"
+msgstr "Function of the contact"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_upgrade
+#: model:ir.ui.menu,name:base.menu_module_tree_upgrade
+msgid "Modules to be installed, upgraded or removed"
+msgstr "Modules to be installed, upgraded or removed"
+
+#. module: base
+#: view:res.payterm:0
+msgid "Payment Term"
+msgstr "Payment Term"
+
+#. module: base
+#: field:ir.report.custom,footer:0
+msgid "Report Footer"
+msgstr "Report Footer"
+
+#. module: base
+#: selection:res.lang,direction:0
+msgid "Right-to-Left"
+msgstr "Right-to-Left"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "Import language"
+msgstr "Import language"
+
+#. 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 "Scheduled Actions"
+
+#. module: base
+#: field:res.partner,title:0
+#: field:res.partner.address,title:0
+#: field:res.partner.title,name:0
+msgid "Title"
+msgstr "Title"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE"
+msgstr "STOCK_SAVE"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-account"
+msgstr "terp-account"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Recursion error in modules dependencies !"
+msgstr "Recursion error in modules dependencies !"
+
+#. module: base
+#: view:ir.model:0
+msgid "Create a Menu"
+msgstr "Create a Menu"
+
+#. 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 "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_module_category_tree
+#: model:ir.ui.menu,name:base.menu_action_module_category_tree
+msgid "Categories of Modules"
+msgstr "Categories of Modules"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Ukrainian / украї́нська мо́ва"
+msgstr "Ukrainian / украї́нська мо́ва"
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Not Started"
+msgstr "Not Started"
+
+#. module: base
+#: model:res.country,name:base.ru
+msgid "Russian Federation"
+msgstr "Russian Federation"
+
+#. module: base
+#: field:res.company,name:0
+msgid "Company Name"
+msgstr "Company Name"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_roles_form
+#: model:ir.ui.menu,name:base.menu_action_res_roles_form
+#: view:res.roles:0
+#: view:res.users:0
+#: field:res.users,roles_id:0
+msgid "Roles"
+msgstr "Roles"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country
+#: model:ir.ui.menu,name:base.menu_country_partner
+msgid "Countries"
+msgstr "Countries"
+
+#. module: base
+#: view:ir.rule.group:0
+msgid "Record rules"
+msgstr "Record rules"
+
+#. module: base
+#: field:res.partner,vat:0
+msgid "VAT"
+msgstr "VAT"
+
+#. module: base
+#: view:res.lang:0
+msgid "12. %w              ==> 5 ( Friday is the 6th day)"
+msgstr "12. %w              ==> 5 ( Friday is the 6th day)"
+
+#. module: base
+#: constraint:res.partner.category:0
+msgid "Error ! You can not create recursive categories."
+msgstr "Error ! You can not create recursive categories."
+
+#. module: base
+#: view:res.lang:0
+msgid "%x - Appropriate date representation."
+msgstr "%x - Appropriate date representation."
+
+#. module: base
+#: help:ir.module.repository,filter:0
+msgid "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+msgstr "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+
+#. module: base
+#: view:res.lang:0
+msgid "%M - Minute as a decimal number [00,59]."
+msgstr "%M - Minute as a decimal number [00,59]."
+
+#. module: base
+#: model:res.country,name:base.tj
+msgid "Tajikistan"
+msgstr "Tajikistan"
+
+#. module: base
+#: help:ir.actions.report.xml,header:0
+msgid "Add or not the coporate RML header"
+msgstr "Add or not the coporate RML header"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form_action
+#: model:ir.ui.menu,name:base.menu_values_form_action
+msgid "Connect Actions To Client Events"
+msgstr "Connect Actions To Client Events"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-2 or later version"
+msgstr "GPL-2 or later version"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Prospect Contact"
+msgstr "Prospect Contact"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_wizard
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.wizard"
+msgstr "ir.actions.wizard"
+
+#. module: base
+#: model:res.country,name:base.nr
+msgid "Nauru"
+msgstr "Nauru"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_property
+msgid "ir.property"
+msgstr "ir.property"
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: 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 "Form"
+msgstr "Form"
+
+#. module: base
+#: model:res.country,name:base.me
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_QUIT"
+msgstr "STOCK_QUIT"
+
+#. module: base
+#: view:ir.cron:0
+msgid "Technical Data"
+msgstr "Technical Data"
+
+#. module: base
+#: view:res.partner:0
+#: field:res.partner,category_id:0
+msgid "Categories"
+msgstr "Categories"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be upgraded"
+msgstr "To be upgraded"
+
+#. module: base
+#: model:res.country,name:base.ly
+msgid "Libya"
+msgstr "Libya"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-purchase"
+msgstr "terp-purchase"
+
+#. module: base
+#: wizard_field:module.module.update,init,repositories:0
+msgid "Repositories"
+msgstr "Repositories"
+
+#. module: base
+#: model:res.country,name:base.cf
+msgid "Central African Republic"
+msgstr "Central African Republic"
+
+#. module: base
+#: model:res.country,name:base.li
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_ltd
+msgid "Ltd"
+msgstr "Ltd"
+
+#. module: base
+#: field:res.partner,ean13:0
+msgid "EAN13"
+msgstr "EAN13"
+
+#. module: base
+#: model:res.country,name:base.pt
+msgid "Portugal"
+msgstr "Portugal"
+
+#. module: base
+#: selection:maintenance.contract,state:0
+msgid "Unvalid"
+msgstr "Unvalid"
+
+#. module: base
+#: field:ir.module.module,certificate:0
+msgid "Quality Certificate"
+msgstr "Quality Certificate"
+
+#. module: base
+#: view:res.lang:0
+msgid "6.  %d, %m         ==> 05, 12"
+msgstr "6.  %d, %m         ==> 05, 12"
+
+#. module: base
+#: help:res.partner,customer:0
+msgid "Check this box if the partner is a customer."
+msgstr "Check this box if the partner is a customer."
+
+#. 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 "Languages"
+
+#. module: base
+#: model:res.country,name:base.pw
+msgid "Palau"
+msgstr "Palau"
+
+#. module: base
+#: model:res.country,name:base.ec
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, 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 "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."
+
+#. module: base
+#: model:res.country,name:base.au
+msgid "Australia"
+msgstr "Australia"
+
+#. 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 "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."
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Menu :"
+msgstr "Menu :"
+
+#. module: base
+#: selection:ir.model.fields,state:0
+msgid "Base Field"
+msgstr "Base Field"
+
+#. module: base
+#: wizard_view:module.module.update,update:0
+msgid "New modules"
+msgstr "New modules"
+
+#. 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 "SXW content"
+
+#. module: base
+#: view:ir.cron:0
+msgid "Action to Trigger"
+msgstr "Action to Trigger"
+
+#. module: base
+#: field:ir.report.custom.fields,fc0_operande:0
+#: field:ir.report.custom.fields,fc1_operande:0
+#: field:ir.report.custom.fields,fc2_operande:0
+#: field:ir.report.custom.fields,fc3_operande:0
+#: selection:ir.translation,type:0
+msgid "Constraint"
+msgstr "Constraint"
+
+#. module: base
+#: selection:ir.values,key:0
+#: selection:res.partner.address,type:0
+msgid "Default"
+msgstr "Default"
+
+#. module: base
+#: help:res.partner.bank,acc_number:0
+msgid "Bank account number"
+msgstr "Bank account number"
+
+#. module: base
+#: field:ir.model.fields,required:0
+#: field:res.partner.bank.type.field,required:0
+msgid "Required"
+msgstr "Required"
+
+#. module: base
+#: field:ir.model.fields,domain:0
+#: field:ir.rule,domain:0
+#: field:res.partner.title,domain:0
+msgid "Domain"
+msgstr "Domain"
+
+#. module: base
+#: field:res.request.history,name:0
+msgid "Summary"
+msgstr "Summary"
+
+#. 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 "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`"
+
+#. module: base
+#: view:res.company:0
+msgid "Header/Footer"
+msgstr "Header/Footer"
+
+#. module: base
+#: model:res.country,name:base.lb
+msgid "Lebanon"
+msgstr "Lebanon"
+
+#. module: base
+#: wizard_field:module.lang.import,init,name:0
+msgid "Language name"
+msgstr "Language name"
+
+#. module: base
+#: model:res.country,name:base.va
+msgid "Holy See (Vatican City State)"
+msgstr "Holy See (Vatican City State)"
+
+#. 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 "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price"
+
+#. module: base
+#: wizard_field:base.module.import,init,module_file:0
+msgid "Module .ZIP file"
+msgstr "Module .ZIP file"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_16
+msgid "Telecom sector"
+msgstr "Telecom sector"
+
+#. module: base
+#: field:workflow.transition,trigger_model:0
+msgid "Trigger Object"
+msgstr "Trigger Object"
+
+#. module: base
+#: selection:ir.report.custom,state:0
+msgid "Subscribed"
+msgstr "Subscribed"
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+#: wizard_view:module.upgrade,next:0
+msgid "System Upgrade"
+msgstr "System Upgrade"
+
+#. module: base
+#: field:workflow.activity,in_transitions:0
+msgid "Incoming Transitions"
+msgstr "Incoming Transitions"
+
+#. module: base
+#: model:res.country,name:base.sr
+msgid "Suriname"
+msgstr "Suriname"
+
+#. module: base
+#: field:ir.values,key2:0
+#: view:res.partner.event.type:0
+#: field:res.partner.event.type,name:0
+msgid "Event Type"
+msgstr "Event Type"
+
+#. module: base
+#: view:res.partner.bank:0
+#: model:res.partner.bank.type,name:base.bank_normal
+msgid "Bank account"
+msgstr "Bank account"
+
+#. module: base
+#: view:ir.sequence.type:0
+msgid "Sequence Type"
+msgstr "Sequence Type"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+
+#. module: base
+#: view:res.partner.address:0
+msgid "Partner Address"
+msgstr "Partner Address"
+
+#. module: base
+#: field:ir.module.module,license:0
+msgid "License"
+msgstr "License"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Invalid operation"
+msgstr "Invalid operation"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE_AS"
+msgstr "STOCK_SAVE_AS"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "SQL Constraint"
+msgstr "SQL Constraint"
+
+#. module: base
+#: field:ir.actions.server,srcmodel_id:0
+msgid "Model"
+msgstr "Model"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+
+#. 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 "View"
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Open a Window"
+msgstr "Open a Window"
+
+#. module: base
+#: model:res.country,name:base.gq
+msgid "Equatorial Guinea"
+msgstr "Equatorial Guinea"
+
+#. module: base
+#: wizard_view:base.module.import,init:0
+msgid "Module Import"
+msgstr "Module Import"
+
+#. module: base
+#: field:res.bank,zip:0
+#: field:res.partner.address,zip:0
+#: field:res.partner.bank,zip:0
+msgid "Zip"
+msgstr "Zip"
+
+#. module: base
+#: field:ir.module.module,author:0
+msgid "Author"
+msgstr "Author"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDELETE"
+msgstr "STOCK_UNDELETE"
+
+#. module: base
+#: view:res.lang:0
+msgid "%c - Appropriate date and time representation."
+msgstr "%c - Appropriate date and time representation."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Finland / Suomi"
+msgstr "Finland / Suomi"
+
+#. module: base
+#: model:res.country,name:base.bo
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. module: base
+#: model:res.country,name:base.gh
+msgid "Ghana"
+msgstr "Ghana"
+
+#. module: base
+#: field:res.lang,direction:0
+msgid "Direction"
+msgstr "Direction"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_module_update_translations
+msgid "wizard.module.update_translations"
+msgstr "wizard.module.update_translations"
+
+#. 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
+#: field:ir.module.module,views_by_module:0
+#: model:ir.ui.menu,name:base.menu_action_ui_view
+#: view:ir.ui.view:0
+#: view:wizard.ir.model.menu.create:0
+#: field:wizard.ir.model.menu.create,view_ids:0
+msgid "Views"
+msgstr "Views"
+
+#. module: base
+#: view:res.groups:0
+#: field:res.groups,rule_groups:0
+#: field:res.users,rules_id:0
+msgid "Rules"
+msgstr "Rules"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to remove a module that is installed or will be installed"
+msgstr "You try to remove a module that is installed or will be installed"
+
+#. module: base
+#: help:ir.values,key2:0
+msgid "The kind of action or button in the client side that will trigger the action."
+msgstr "The kind of action or button in the client side that will trigger the action."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PASTE"
+msgstr "STOCK_PASTE"
+
+#. module: base
+#: model:res.country,name:base.gt
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_form
+#: model:ir.ui.menu,name:base.menu_workflow
+msgid "Workflows"
+msgstr "Workflows"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_wizard_form
+#: model:ir.ui.menu,name:base.menu_config_module
+msgid "Configuration Wizard"
+msgstr "Configuration Wizard"
+
+#. module: base
+#: model:ir.model,name:base.model_res_roles
+msgid "res.roles"
+msgstr "res.roles"
+
+#. module: base
+#: help:ir.cron,priority:0
+msgid "0=Very Urgent\n"
+"10=Not urgent"
+msgstr "0=Very Urgent\n"
+"10=Not urgent"
+
+#. module: base
+#: view:res.users:0
+msgid "Skip"
+msgstr "Skip"
+
+#. 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 "Accepted Links in Requests"
+msgstr "Accepted Links in Requests"
+
+#. module: base
+#: model:res.country,name:base.ls
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.grant_menu_access
+#: model:ir.ui.menu,name:base.menu_grant_menu_access
+msgid "Grant Access To Menus"
+msgstr "Grant Access To Menus"
+
+#. module: base
+#: model:res.country,name:base.ke
+msgid "Kenya"
+msgstr "Kenya"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu."
+msgstr "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu."
+
+#. module: base
+#: model:res.country,name:base.sm
+msgid "San Marino"
+msgstr "San Marino"
+
+#. module: base
+#: model:res.country,name:base.bm
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. module: base
+#: model:res.country,name:base.pe
+msgid "Peru"
+msgstr "Peru"
+
+#. module: base
+#: selection:ir.model.fields,on_delete:0
+msgid "Set NULL"
+msgstr "Set NULL"
+
+#. module: base
+#: field:res.partner.event,som:0
+#: field:res.partner.som,name:0
+msgid "State of Mind"
+msgstr "State of Mind"
+
+#. module: base
+#: model:res.country,name:base.bj
+msgid "Benin"
+msgstr "Benin"
+
+#. module: base
+#: view:ir.rule.group:0
+msgid "The rule is satisfied if all test are True (AND)"
+msgstr "The rule is satisfied if all test are True (AND)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CONNECT"
+msgstr "STOCK_CONNECT"
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Not Searchable"
+msgstr "Not Searchable"
+
+#. module: base
+#: field:res.partner.event.type,key:0
+msgid "Key"
+msgstr "Key"
+
+#. module: base
+#: field:ir.cron,nextcall:0
+msgid "Next Call Date"
+msgstr "Next Call Date"
+
+#. module: base
+#: field:res.company,rml_header:0
+msgid "RML Header"
+msgstr "RML Header"
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,app_id:0
+msgid "API ID"
+msgstr "API ID"
+
+#. module: base
+#: model:res.country,name:base.mu
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. module: base
+#: wizard_view:module.module.update,init:0
+msgid "Scan for new modules"
+msgstr "Scan for new modules"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_repository
+msgid "Module Repository"
+msgstr "Module Repository"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_security
+msgid "Security"
+msgstr "Security"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Using a relation field which uses an unknown object"
+msgstr "Using a relation field which uses an unknown object"
+
+#. module: base
+#: model:res.country,name:base.za
+msgid "South Africa"
+msgstr "South Africa"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_module_lang_export
+msgid "wizard.module.lang.export"
+msgstr "wizard.module.lang.export"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "Installed"
+msgstr "Installed"
+
+#. module: base
+#: model:res.country,name:base.sn
+msgid "Senegal"
+msgstr "Senegal"
+
+#. module: base
+#: model:res.country,name:base.hu
+msgid "Hungary"
+msgstr "Hungary"
+
+#. module: base
+#: model:ir.model,name:base.model_res_groups
+msgid "res.groups"
+msgstr "res.groups"
+
+#. module: base
+#: model:res.country,name:base.br
+msgid "Brazil"
+msgstr "Brazil"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Affero GPL-3"
+msgstr "Affero GPL-3"
+
+#. module: base
+#: field:ir.sequence,number_next:0
+msgid "Next Number"
+msgstr "Next Number"
+
+#. module: base
+#: view:res.currency:0
+#: field:res.currency,rate_ids:0
+msgid "Rates"
+msgstr "Rates"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Albanian / Shqipëri"
+msgstr "Albanian / Shqipëri"
+
+#. module: base
+#: model:res.country,name:base.sy
+msgid "Syria"
+msgstr "Syria"
+
+#. module: base
+#: view:res.lang:0
+msgid "======================================================"
+msgstr "======================================================"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child2:0
+msgid "Field child2"
+msgstr "Field child2"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child3:0
+msgid "Field child3"
+msgstr "Field child3"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child0:0
+msgid "Field child0"
+msgstr "Field child0"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child1:0
+msgid "Field child1"
+msgstr "Field child1"
+
+#. module: base
+#: field:ir.model.fields,selection:0
+msgid "Field Selection"
+msgstr "Field Selection"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "draft"
+msgstr "draft"
+
+#. module: base
+#: 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 "Date"
+
+#. module: base
+#: field:ir.actions.report.xml,report_sxw:0
+msgid "SXW path"
+msgstr "SXW path"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Data"
+msgstr "Data"
+
+#. module: base
+#: view:res.users:0
+msgid "Groups are used to defined access rights on each screen and menu."
+msgstr "Groups are used to defined access rights on each screen and menu."
+
+#. module: base
+#: field:ir.ui.menu,parent_id:0
+#: field:wizard.ir.model.menu.create,menu_id:0
+msgid "Parent Menu"
+msgstr "Parent Menu"
+
+#. module: base
+#: help:ir.actions.act_window.view,multi:0
+#: help:ir.actions.report.custom,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 "If set to true, the action will not be displayed on the right toolbar of a form view."
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attached To"
+msgstr "Attached To"
+
+#. module: base
+#: field:res.lang,decimal_point:0
+msgid "Decimal Separator"
+msgstr "Decimal Separator"
+
+#. module: base
+#: view:res.partner:0
+#: view:res.request:0
+#: field:res.request,history:0
+msgid "History"
+msgstr "History"
+
+#. module: base
+#: field:ir.attachment,create_uid:0
+msgid "Creator"
+msgstr "Creator"
+
+#. module: base
+#: model:res.country,name:base.mx
+msgid "Mexico"
+msgstr "Mexico"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Swedish / svenska"
+msgstr "Swedish / svenska"
+
+#. module: base
+#: field:res.company,child_ids:0
+msgid "Child Companies"
+msgstr "Child Companies"
+
+#. module: base
+#: model:ir.model,name:base.model_res_users
+msgid "res.users"
+msgstr "res.users"
+
+#. module: base
+#: model:res.country,name:base.ni
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. module: base
+#: view:res.partner.event:0
+msgid "General Description"
+msgstr "General Description"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Sale Opportunity"
+msgstr "Sale Opportunity"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "Maintenance contract added !"
+msgstr "Maintenance contract added !"
+
+#. module: base
+#: field:ir.rule,field_id:0
+#: selection:ir.translation,type:0
+msgid "Field"
+msgstr "Field"
+
+#. module: base
+#: model:res.country,name:base.ve
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. module: base
+#: view:res.lang:0
+msgid "9.  %j              ==> 340"
+msgstr "9.  %j              ==> 340"
+
+#. module: base
+#: model:res.country,name:base.zm
+msgid "Zambia"
+msgstr "Zambia"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_report_xml
+#: model:ir.ui.menu,name:base.menu_ir_action_report_xml
+msgid "Report Xml"
+msgstr "Report Xml"
+
+#. module: base
+#: help:res.partner,user_id:0
+msgid "The internal user that is in charge of communicating with this partner if any."
+msgstr "The internal user that is in charge of communicating with this partner if any."
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Upgrade"
+msgstr "Cancel Upgrade"
+
+#. module: base
+#: model:res.country,name:base.ci
+msgid "Ivory Coast (Cote D'Ivoire)"
+msgstr "Ivory Coast (Cote D'Ivoire)"
+
+#. module: base
+#: model:res.country,name:base.kz
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+
+#. module: base
+#: field:ir.actions.report.xml,name:0
+#: field:ir.actions.todo,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
+#: field:ir.module.module,name:0
+#: field:ir.module.module.dependency,name:0
+#: rml:ir.module.reference:0
+#: field:ir.module.repository,name:0
+#: field:ir.property,name:0
+#: field:ir.report.custom.fields,name:0
+#: field:ir.rule.group,name:0
+#: field:ir.values,name:0
+#: field:maintenance.contract.module,name:0
+#: field:res.bank,name:0
+#: field:res.config.view,name:0
+#: field:res.lang,name:0
+#: field:res.partner,name:0
+#: field:res.partner.bank.type,name:0
+#: field:res.request.link,name:0
+#: field:res.users,name:0
+#: field:workflow,name:0
+#: field:workflow.activity,name:0
+msgid "Name"
+msgstr "Name"
+
+#. module: base
+#: model:res.country,name:base.ms
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_app
+msgid "Application Terms"
+msgstr "Application Terms"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Calculate Average"
+msgstr "Calculate Average"
+
+#. module: base
+#: field:ir.module.module,demo:0
+msgid "Demo data"
+msgstr "Demo data"
+
+#. 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 "Instances"
+
+#. module: base
+#: model:res.country,name:base.aq
+msgid "Antarctica"
+msgstr "Antarctica"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_3
+msgid "Starter Partner"
+msgstr "Starter Partner"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_view
+msgid "ir.actions.act_window.view"
+msgstr "ir.actions.act_window.view"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Web"
+msgstr "Web"
+
+#. module: base
+#: field:res.partner.event,planned_revenue:0
+msgid "Planned Revenue"
+msgstr "Planned Revenue"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "You have to import a .CSV file wich is encoded in UTF-8.  Please check that the first line of your file is one of the following:"
+msgstr "You have to import a .CSV file wich is encoded in UTF-8.  Please check that the first line of your file is one of the following:"
+
+#. module: base
+#: model:res.country,name:base.et
+msgid "Ethiopia"
+msgstr "Ethiopia"
+
+#. module: base
+#: view:res.lang:0
+msgid "%H - Hour (24-hour clock) as a decimal number [00,23]."
+msgstr "%H - Hour (24-hour clock) as a decimal number [00,23]."
+
+#. module: base
+#: view:res.roles:0
+msgid "Role"
+msgstr "Role"
+
+#. module: base
+#: help:res.country.state,code:0
+msgid "The state code in three chars.\n"
+""
+msgstr "The state code in three chars.\n"
+""
+
+#. module: base
+#: model:res.country,name:base.sj
+msgid "Svalbard and Jan Mayen Islands"
+msgstr "Svalbard and Jan Mayen Islands"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Test"
+msgstr "Test"
+
+#. module: base
+#: field:ir.report.custom.fields,groupby:0
+msgid "Group By"
+msgstr "Group By"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, 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\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_WARNING"
+msgstr "STOCK_DIALOG_WARNING"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_IN"
+msgstr "STOCK_ZOOM_IN"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "closed"
+msgstr "closed"
+
+#. module: base
+#: selection:wizard.module.lang.export,state:0
+msgid "get"
+msgstr "get"
+
+#. module: base
+#: help:ir.model.fields,on_delete:0
+msgid "On delete property for many2one fields"
+msgstr "On delete property for many2one fields"
+
+#. module: base
+#: field:ir.actions.server,write_id:0
+msgid "Write Id"
+msgstr "Write Id"
+
+#. module: base
+#: field:ir.actions.act_window,domain:0
+msgid "Domain Value"
+msgstr "Domain Value"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ITALIC"
+msgstr "STOCK_ITALIC"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "SMS Configuration"
+msgstr "SMS Configuration"
+
+#. 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 "Access Controls List"
+
+#. module: base
+#: model:res.country,name:base.um
+msgid "USA Minor Outlying Islands"
+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 "Bank Type"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "The name of the group can not start with \"-\""
+msgstr "The name of the group can not start with \"-\""
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)."
+msgstr "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)."
+
+#. module: base
+#: view:ir.ui.view_sc:0
+#: field:res.partner.title,shortcut:0
+msgid "Shortcut"
+msgstr "Shortcut"
+
+#. module: base
+#: field:ir.model.data,date_init:0
+msgid "Init Date"
+msgstr "Init Date"
+
+#. module: base
+#: field:workflow.activity,flow_start:0
+msgid "Flow Start"
+msgstr "Flow Start"
+
+#. module: base
+#: view:ir.model:0
+#: view:ir.model.fields:0
+msgid "Security on Groups"
+msgstr "Security on Groups"
+
+#. module: base
+#: view:res.partner.bank:0
+msgid "Bank Account Owner"
+msgstr "Bank Account Owner"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form
+#: model:ir.ui.menu,name:base.menu_values_form
+msgid "Client Actions Connections"
+msgstr "Client Actions Connections"
+
+#. module: base
+#: field:ir.ui.view_sc,resource:0
+msgid "Resource Name"
+msgstr "Resource Name"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Hours"
+msgstr "Hours"
+
+#. module: base
+#: model:res.country,name:base.gp
+msgid "Guadeloupe (French)"
+msgstr "Guadeloupe (French)"
+
+#. module: base
+#: field:ir.report.custom.fields,cumulate:0
+msgid "Accumulate"
+msgstr "Accumulate"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Tree can only be used in tabular reports"
+msgstr "Tree can only be used in tabular reports"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Directory"
+msgstr "Directory"
+
+#. module: base
+#: field:wizard.ir.model.menu.create,name:0
+msgid "Menu Name"
+msgstr "Menu Name"
+
+#. module: base
+#: field:ir.report.custom,title:0
+msgid "Report Title"
+msgstr "Report Title"
+
+#. module: base
+#: field:ir.report.custom.fields,fontcolor:0
+msgid "Font color"
+msgstr "Font color"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SORT_DESCENDING"
+msgstr "STOCK_SORT_DESCENDING"
+
+#. module: base
+#: model:res.country,name:base.my
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_history
+msgid "res.request.history"
+msgstr "res.request.history"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Client Action Configuration"
+msgstr "Client Action Configuration"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_address_form
+#: model:ir.model,name:base.model_res_partner_address
+#: model:ir.ui.menu,name:base.menu_partner_address_form
+#: view:res.partner.address:0
+msgid "Partner Addresses"
+msgstr "Partner Addresses"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Indonesian / Bahasa Indonesia"
+msgstr "Indonesian / Bahasa Indonesia"
+
+#. module: base
+#: model:res.country,name:base.cv
+msgid "Cape Verde"
+msgstr "Cape Verde"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Some installed modules depend on the module you plan to Uninstall :\n %s"
+msgstr "Some installed modules depend on the module you plan to Uninstall :\n %s"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_res_partner_event
+#: field:res.partner,events:0
+#: field:res.partner.event,name:0
+msgid "Events"
+msgstr "Events"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_roles
+#: model:ir.ui.menu,name:base.menu_action_res_roles
+msgid "Roles Structure"
+msgstr "Roles Structure"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_url
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.url"
+msgstr "ir.actions.url"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_STOP"
+msgstr "STOCK_MEDIA_STOP"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DND_MULTIPLE"
+msgstr "STOCK_DND_MULTIPLE"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_addess_tree
+#: view:res.partner:0
+msgid "Partner Contacts"
+msgstr "Partner Contacts"
+
+#. module: base
+#: wizard_field:module.module.update,update,add:0
+msgid "Number of modules added"
+msgstr "Number of modules added"
+
+#. module: base
+#: field:workflow.transition,role_id:0
+msgid "Role Required"
+msgstr "Role Required"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Menus"
+msgstr "Created Menus"
+
+#. module: base
+#: field:workflow.triggers,workitem_id:0
+msgid "Workitem"
+msgstr "Workitem"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_AUTHENTICATION"
+msgstr "STOCK_DIALOG_AUTHENTICATION"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_OUT"
+msgstr "STOCK_ZOOM_OUT"
+
+#. 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
+#: selection:ir.values,key:0
+msgid "Action"
+msgstr "Action"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Email Configuration"
+msgstr "Email Configuration"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_cron
+msgid "ir.cron"
+msgstr "ir.cron"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Current Year without Century: %(y)s"
+msgstr "Current Year without Century: %(y)s"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-mrp"
+msgstr "terp-mrp"
+
+#. module: base
+#: field:ir.actions.server,trigger_obj_id:0
+msgid "Trigger On"
+msgstr "Trigger On"
+
+#. module: base
+#: model:res.country,name:base.fj
+msgid "Fiji"
+msgstr "Fiji"
+
+#. module: base
+#: field:ir.model.fields,size:0
+msgid "Size"
+msgstr "Size"
+
+#. module: base
+#: model:res.country,name:base.sd
+msgid "Sudan"
+msgstr "Sudan"
+
+#. module: base
+#: view:res.lang:0
+msgid "%m - Month as a decimal number [01,12]."
+msgstr "%m - Month as a decimal number [01,12]."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export Data"
+msgstr "Export Data"
+
+#. module: base
+#: model:res.country,name:base.fm
+msgid "Micronesia"
+msgstr "Micronesia"
+
+#. module: base
+#: view:res.request.history:0
+msgid "Request History"
+msgstr "Request History"
+
+#. module: base
+#: field:ir.module.module,menus_by_module:0
+#: view:res.groups:0
+msgid "Menus"
+msgstr "Menus"
+
+#. module: base
+#: model:res.country,name:base.il
+msgid "Israel"
+msgstr "Israel"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_server_action_create
+msgid "Create Action"
+msgstr "Create Action"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "html"
+msgstr "html"
+
+#. module: base
+#: field:res.lang,time_format:0
+msgid "Time Format"
+msgstr "Time Format"
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+msgid "Your system will be upgraded."
+msgstr "Your system will be upgraded."
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Defined Reports"
+msgstr "Defined Reports"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-tools"
+msgstr "terp-tools"
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "Report xml"
+msgstr "Report xml"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_module_open_categ
+#: model:ir.actions.act_window,name:base.open_module_tree
+#: view:ir.module.module:0
+#: model:ir.ui.menu,name:base.menu_module_tree
+#: field:wizard.module.lang.export,modules:0
+msgid "Modules"
+msgstr "Modules"
+
+#. module: base
+#: selection:workflow.activity,kind:0
+#: field:workflow.activity,subflow_id:0
+#: field:workflow.workitem,subflow_id:0
+msgid "Subflow"
+msgstr "Subflow"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDO"
+msgstr "STOCK_UNDO"
+
+#. module: base
+#: field:workflow.transition,signal:0
+msgid "Signal (button Name)"
+msgstr "Signal (button Name)"
+
+#. 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 "Banks"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-sale"
+msgstr "terp-sale"
+
+#. module: base
+#: view:res.lang:0
+msgid "%d - Day of the month as a decimal number [01,31]."
+msgstr "%d - Day of the month as a decimal number [01,31]."
+
+#. module: base
+#: view:res.lang:0
+msgid "%I - Hour (12-hour clock) as a decimal number [01,12]."
+msgstr "%I - Hour (12-hour clock) as a decimal number [01,12]."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Romanian / limba română"
+msgstr "Romanian / limba română"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ADD"
+msgstr "STOCK_ADD"
+
+#. module: base
+#: field:ir.cron,doall:0
+msgid "Repeat Missed"
+msgstr "Repeat Missed"
+
+#. module: base
+#: help:ir.actions.server,state:0
+msgid "Type of the Action that is to be executed"
+msgstr "Type of the Action that is to be executed"
+
+#. module: base
+#: field:ir.server.object.lines,server_id:0
+msgid "Object Mapping"
+msgstr "Object 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 "The rate of the currency to the currency of rate 1"
+
+#. module: base
+#: model:res.country,name:base.uk
+msgid "United Kingdom"
+msgstr "United Kingdom"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Create / Write"
+msgstr "Create / Write"
+
+#. module: base
+#: help:res.partner.category,active:0
+msgid "The active field allows you to hide the category without removing it."
+msgstr "The active field allows you to hide the category without removing it."
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Object:"
+msgstr "Object:"
+
+#. module: base
+#: model:res.country,name:base.bw
+msgid "Botswana"
+msgstr "Botswana"
+
+#. 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 "Partner Titles"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+msgid "Service"
+msgstr "Service"
+
+#. module: base
+#: help:ir.actions.act_window,auto_refresh:0
+msgid "Add an auto-refresh on the view"
+msgstr "Add an auto-refresh on the view"
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+#: wizard_field:module.upgrade,next,module_download:0
+msgid "Modules to download"
+msgstr "Modules to download"
+
+#. 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 "Workitems"
+
+#. module: base
+#: field:wizard.module.lang.export,advice:0
+msgid "Advice"
+msgstr "Advice"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Lithuanian / Lietuvių kalba"
+msgstr "Lithuanian / Lietuvių kalba"
+
+#. 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 "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."
+
+#. module: base
+#: field:ir.ui.view,inherit_id:0
+msgid "Inherited View"
+msgstr "Inherited View"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_translation
+msgid "ir.translation"
+msgstr "ir.translation"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule_group
+msgid "ir.rule.group"
+msgstr "ir.rule.group"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_install
+#: model:ir.ui.menu,name:base.menu_module_tree_install
+msgid "Installed modules"
+msgstr "Installed modules"
+
+#. module: base
+#: model:res.country,name:base.lc
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract
+#: view:maintenance.contract:0
+msgid "Maintenance Contract"
+msgstr "Maintenance Contract"
+
+#. module: base
+#: help:ir.actions.server,trigger_obj_id:0
+msgid "Select the object from the model on which the workflow will executed."
+msgstr "Select the object from the model on which the workflow will executed."
+
+#. module: base
+#: field:ir.model,state:0
+#: field:ir.model.fields,state:0
+#: field:ir.model.grid,state:0
+msgid "Manually Created"
+msgstr "Manually Created"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Calculate Count"
+msgstr "Calculate Count"
+
+#. module: base
+#: field:ir.model.access,perm_create:0
+msgid "Create Access"
+msgstr "Create Access"
+
+#. module: base
+#: field:res.partner.address,state_id:0
+msgid "Fed. State"
+msgstr "Fed. State"
+
+#. module: base
+#: model:res.country,name:base.io
+msgid "British Indian Ocean Territory"
+msgstr "British Indian Ocean Territory"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mapping"
+msgstr "Field Mapping"
+
+#. module: base
+#: field:maintenance.contract,date_start:0
+msgid "Starting Date"
+msgstr "Starting Date"
+
+#. module: base
+#: view:ir.model:0
+#: field:ir.model.fields,ttype:0
+msgid "Field Type"
+msgstr "Field Type"
+
+#. module: base
+#: field:res.country.state,code:0
+msgid "State Code"
+msgstr "State Code"
+
+#. module: base
+#: field:ir.model.fields,on_delete:0
+msgid "On delete"
+msgstr "On delete"
+
+#. module: base
+#: selection:res.lang,direction:0
+msgid "Left-to-Right"
+msgstr "Left-to-Right"
+
+#. module: base
+#: field:res.lang,translatable:0
+msgid "Translatable"
+msgstr "Translatable"
+
+#. module: base
+#: model:res.country,name:base.vn
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. module: base
+#: field:res.users,signature:0
+msgid "Signature"
+msgstr "Signature"
+
+#. module: base
+#: field:res.partner.category,complete_name:0
+msgid "Full Name"
+msgstr "Full Name"
+
+#. module: base
+#: model:res.country,name:base.mz
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. module: base
+#: field:ir.actions.server,message:0
+#: wizard_field:res.partner.spam_send,init,text:0
+msgid "Message"
+msgstr "Message"
+
+#. module: base
+#: field:ir.actions.act_window.view,multi:0
+msgid "On Multiple Doc."
+msgstr "On Multiple Doc."
+
+#. module: base
+#: field:res.partner,address:0
+#: view:res.partner.address:0
+msgid "Contacts"
+msgstr "Contacts"
+
+#. module: base
+#: model:res.country,name:base.fo
+msgid "Faroe Islands"
+msgstr "Faroe Islands"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_upgrade
+#: model:ir.ui.menu,name:base.menu_wizard_upgrade
+msgid "Apply Scheduled Upgrades"
+msgstr "Apply Scheduled Upgrades"
+
+#. module: base
+#: model:ir.ui.menu,name:base.maintenance
+msgid "Maintenance"
+msgstr "Maintenance"
+
+#. module: base
+#: model:res.country,name:base.mp
+msgid "Northern Mariana Islands"
+msgstr "Northern Mariana Islands"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "module,type,name,res_id,src,value"
+msgstr "module,type,name,res_id,src,value"
+
+#. module: base
+#: rml:ir.module.reference:0
+#: field:maintenance.contract.module,version:0
+msgid "Version"
+msgstr "Version"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create
+msgid "wizard.ir.model.menu.create"
+msgstr "wizard.ir.model.menu.create"
+
+#. module: base
+#: view:workflow.transition:0
+msgid "Transition"
+msgstr "Transition"
+
+#. module: base
+#: field:ir.actions.todo,active:0
+#: field:ir.cron,active:0
+#: field:ir.module.repository,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.canal,active:0
+#: field:res.partner.category,active:0
+#: field:res.partner.event.type,active:0
+#: field:res.request,active:0
+#: field:res.users,active:0
+msgid "Active"
+msgstr "Active"
+
+#. module: base
+#: model:res.country,name:base.na
+msgid "Namibia"
+msgstr "Namibia"
+
+#. module: base
+#: model:res.country,name:base.mn
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#: code:addons/base/ir/ir_model.py:0
+#: code:addons/base/maintenance/maintenance.py:0
+#: code:addons/base/module/module.py:0
+#: code:addons/base/res/res_currency.py:0
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Error"
+msgstr "Error"
+
+#. module: base
+#: view:res.partner.som:0
+msgid "Partner State of Mind"
+msgstr "Partner State of Mind"
+
+#. module: base
+#: selection:ir.ui.view,type:0
+msgid "mdx"
+msgstr "mdx"
+
+#. module: base
+#: model:res.country,name:base.bi
+msgid "Burundi"
+msgstr "Burundi"
+
+#. module: base
+#: wizard_button:base.module.import,import,open_window:0
+#: wizard_button:module.upgrade,end,end:0
+#: wizard_button:module.upgrade,start,end:0
+#: wizard_button:server.action.create,init,end:0
+#: wizard_button:server.action.create,step_1,end:0
+#: view:wizard.module.lang.export:0
+msgid "Close"
+msgstr "Close"
+
+#. module: base
+#: model:res.country,name:base.bt
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_11
+msgid "Textile Suppliers"
+msgstr "Textile Suppliers"
+
+#. module: base
+#: selection:ir.actions.url,target:0
+msgid "This Window"
+msgstr "This Window"
+
+#. module: base
+#: field:wizard.module.lang.export,format:0
+msgid "File Format"
+msgstr "File Format"
+
+#. module: base
+#: model:ir.model,name:base.model_res_config_view
+msgid "res.config.view"
+msgstr "res.config.view"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_INDENT"
+msgstr "STOCK_INDENT"
+
+#. module: base
+#: view:workflow.workitem:0
+msgid "Workflow Workitems"
+msgstr "Workflow Workitems"
+
+#. module: base
+#: model:res.country,name:base.vc
+msgid "Saint Vincent & Grenadines"
+msgstr "Saint Vincent & Grenadines"
+
+#. module: base
+#: field:ir.model.config,password:0
+#: field:maintenance.contract,password:0
+#: field:maintenance.contract.wizard,password:0
+#: wizard_field:res.partner.sms_send,init,password:0
+#: field:res.users,password:0
+msgid "Password"
+msgstr "Password"
+
+#. 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
+#: field:ir.model.grid,field_id:0
+#: field:ir.property,fields_id:0
+#: field:ir.report.custom,fields_child0:0
+#: model:ir.ui.menu,name:base.ir_model_model_fields
+msgid "Fields"
+msgstr "Fields"
+
+#. module: base
+#: wizard_view:base.module.import,import:0
+msgid "Module successfully imported !"
+msgstr "Module successfully imported !"
+
+#. module: base
+#: model:res.country,name:base.mk
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. module: base
+#: field:res.company,rml_header2:0
+msgid "RML Internal Header"
+msgstr "RML Internal Header"
+
+#. module: base
+#: selection:ir.report.custom,print_format:0
+msgid "a4"
+msgstr "a4"
+
+#. module: base
+#: view:ir.rule.group:0
+msgid "Multiple rules on same objects are joined using operator OR"
+msgstr "Multiple rules on same objects are joined using operator OR"
+
+#. module: base
+#: model:res.partner.bank.type.field,name:base.bank_normal_field
+msgid "acc_number"
+msgstr "acc_number"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_partner_address_form
+msgid "Addresses"
+msgstr "Addresses"
+
+#. module: base
+#: model:res.country,name:base.mm
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Chinese (CN) / 简体中文"
+msgstr "Chinese (CN) / 简体中文"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_NEXT"
+msgstr "STOCK_MEDIA_NEXT"
+
+#. module: base
+#: field:res.bank,street:0
+#: field:res.partner.address,street:0
+#: field:res.partner.bank,street:0
+msgid "Street"
+msgstr "Street"
+
+#. module: base
+#: model:res.country,name:base.yu
+msgid "Yugoslavia"
+msgstr "Yugoslavia"
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+msgid "Note that this operation my take a few minutes."
+msgstr "Note that this operation my take a few minutes."
+
+#. module: base
+#: field:ir.model.data,name:0
+msgid "XML Identifier"
+msgstr "XML Identifier"
+
+#. module: base
+#: model:res.country,name:base.ca
+msgid "Canada"
+msgstr "Canada"
+
+#. module: base
+#: field:ir.actions.report.xml,report_name:0
+msgid "Internal Name"
+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 "Change My Preferences"
+
+#. module: base
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Invalid model name in the action definition."
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,text:0
+msgid "SMS Message"
+msgstr "SMS Message"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_EDIT"
+msgstr "STOCK_EDIT"
+
+#. module: base
+#: model:res.country,name:base.cm
+msgid "Cameroon"
+msgstr "Cameroon"
+
+#. module: base
+#: model:res.country,name:base.bf
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_FORWARD"
+msgstr "STOCK_MEDIA_FORWARD"
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Skipped"
+msgstr "Skipped"
+
+#. module: base
+#: selection:ir.model.fields,state:0
+msgid "Custom Field"
+msgstr "Custom Field"
+
+#. module: base
+#: model:res.country,name:base.cc
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) Islands"
+
+#. module: base
+#: field:workflow.instance,uid:0
+msgid "User ID"
+msgstr "User ID"
+
+#. module: base
+#: view:res.lang:0
+msgid "11. %U or %W       ==> 48 (49th week)"
+msgstr "11. %U or %W       ==> 48 (49th week)"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type_field
+msgid "Bank type fields"
+msgstr "Bank type fields"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "type,name,res_id,src,value"
+msgstr "type,name,res_id,src,value"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Dutch / Nederlands"
+msgstr "Dutch / Nederlands"
+
+#. module: base
+#: wizard_view:server.action.create,step_1:0
+#: wizard_field:server.action.create,step_1,report:0
+msgid "Select Report"
+msgstr "Select Report"
+
+#. module: base
+#: field:ir.report.custom.fields,fc1_condition:0
+#: field:ir.report.custom.fields,fc2_condition:0
+#: field:ir.report.custom.fields,fc3_condition:0
+msgid "condition"
+msgstr "condition"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "1cm 28cm 20cm 28cm"
+msgstr "1cm 28cm 20cm 28cm"
+
+#. module: base
+#: field:ir.sequence,suffix:0
+msgid "Suffix"
+msgstr "Suffix"
+
+#. module: base
+#: model:res.country,name:base.mo
+msgid "Macau"
+msgstr "Macau"
+
+#. module: base
+#: model:ir.actions.report.xml,name:base.res_partner_address_report
+msgid "Labels"
+msgstr "Labels"
+
+#. module: base
+#: wizard_field:res.partner.spam_send,init,from:0
+msgid "Sender's email"
+msgstr "Sender's email"
+
+#. module: base
+#: field:ir.default,field_name:0
+msgid "Object Field"
+msgstr "Object Field"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NEW"
+msgstr "STOCK_NEW"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "None"
+msgstr "None"
+
+#. module: base
+#: view:ir.report.custom.fields:0
+msgid "Report Fields"
+msgstr "Report Fields"
+
+#. module: base
+#: field:workflow.transition,act_to:0
+msgid "Destination Activity"
+msgstr "Destination Activity"
+
+#. module: base
+#: view:ir.values:0
+msgid "Connect Events to Actions"
+msgstr "Connect Events to Actions"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ABOUT"
+msgstr "STOCK_ABOUT"
+
+#. module: base
+#: field:ir.module.category,parent_id:0
+#: field:res.partner.category,parent_id:0
+msgid "Parent Category"
+msgstr "Parent Category"
+
+#. module: base
+#: model:res.country,name:base.fi
+msgid "Finland"
+msgstr "Finland"
+
+#. module: base
+#: selection:res.partner.address,type:0
+#: selection:res.partner.title,domain:0
+msgid "Contact"
+msgstr "Contact"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_menu
+msgid "ir.ui.menu"
+msgstr "ir.ui.menu"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Uninstall"
+msgstr "Cancel Uninstall"
+
+#. module: base
+#: model:ir.model,name:base.model_res_currency_rate
+msgid "Currency Rate"
+msgstr "Currency Rate"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_server_object_lines
+msgid "ir.server.object.lines"
+msgstr "ir.server.object.lines"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Module %s: Invalid Quality Certificate"
+msgstr "Module %s: Invalid Quality Certificate"
+
+#. module: base
+#: model:res.country,name:base.kw
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. module: base
+#: field:workflow.workitem,inst_id:0
+msgid "Instance"
+msgstr "Instance"
+
+#. 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 "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."
+
+#. module: base
+#: model:res.country,name:base.ng
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_event
+msgid "res.partner.event"
+msgstr "res.partner.event"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDERLINE"
+msgstr "STOCK_UNDERLINE"
+
+#. module: base
+#: view:ir.values:0
+msgid "Values for Event Type"
+msgstr "Values for Event Type"
+
+#. module: base
+#: model:res.country,name:base.zr
+msgid "Zaire"
+msgstr "Zaire"
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Always Searchable"
+msgstr "Always Searchable"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CLOSE"
+msgstr "STOCK_CLOSE"
+
+#. module: base
+#: model:res.country,name:base.hk
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. module: base
+#: help:ir.actions.server,name:0
+msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices"
+msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_100"
+msgstr "STOCK_ZOOM_100"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_BOLD"
+msgstr "STOCK_BOLD"
+
+#. module: base
+#: model:res.country,name:base.ph
+msgid "Philippines"
+msgstr "Philippines"
+
+#. module: base
+#: model:res.country,name:base.ma
+msgid "Morocco"
+msgstr "Morocco"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-graph"
+msgstr "terp-graph"
+
+#. module: base
+#: view:res.lang:0
+msgid "2.  %a ,%A         ==> Fri, Friday"
+msgstr "2.  %a ,%A         ==> Fri, Friday"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes."
+msgstr "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes."
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_event_type
+#: model:ir.ui.menu,name:base.next_id_14
+#: view:res.partner.event:0
+msgid "Partner Events"
+msgstr "Partner Events"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_transition
+msgid "workflow.transition"
+msgstr "workflow.transition"
+
+#. module: base
+#: view:res.lang:0
+msgid "%a - Abbreviated weekday name."
+msgstr "%a - Abbreviated weekday name."
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Introspection report on objects"
+msgstr "Introspection report on objects"
+
+#. module: base
+#: model:res.country,name:base.pf
+msgid "Polynesia (French)"
+msgstr "Polynesia (French)"
+
+#. module: base
+#: model:res.country,name:base.dm
+msgid "Dominica"
+msgstr "Dominica"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard
+#: wizard_button:res.partner.sms_send,init,send:0
+msgid "Send SMS"
+msgstr "Send SMS"
+
+#. module: base
+#: model:res.country,name:base.np
+msgid "Nepal"
+msgstr "Nepal"
+
+#. module: base
+#: field:res.partner.event,event_ical_id:0
+msgid "iCal id"
+msgstr "iCal id"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_function_form
+#: model:ir.ui.menu,name:base.menu_partner_function_form
+#: view:res.partner.function:0
+msgid "Partner Functions"
+msgstr "Partner Functions"
+
+#. module: base
+#: wizard_view:res.partner.sms_send,init:0
+msgid "Bulk SMS send"
+msgstr "Bulk SMS send"
+
+#. module: base
+#: view:res.lang:0
+msgid "%Y - Year with century as a decimal number."
+msgstr "%Y - Year with century as a decimal number."
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Pie Chart"
+msgstr "Pie Chart"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Seconde: %(sec)s"
+msgstr "Seconde: %(sec)s"
+
+#. module: base
+#: selection:ir.translation,type:0
+#: field:res.bank,code:0
+#: field:res.currency,code:0
+#: field:res.lang,code:0
+#: field:res.partner,ref:0
+#: field:res.partner.bank.type,code:0
+#: field:res.partner.function,code:0
+msgid "Code"
+msgstr "Code"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Can not create the module file:\n %s"
+msgstr "Can not create the module file:\n %s"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_update
+#: model:ir.ui.menu,name:base.menu_module_update
+msgid "Update Modules List"
+msgstr "Update Modules List"
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Continue"
+msgstr "Continue"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_property_form
+#: model:ir.ui.menu,name:base.menu_ir_property_form
+msgid "Default Properties"
+msgstr "Default Properties"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Slovenian / slovenščina"
+msgstr "Slovenian / slovenščina"
+
+#. module: base
+#: field:ir.actions.report.xml,attachment_use:0
+msgid "Reload from Attachment"
+msgstr "Reload from Attachment"
+
+#. module: base
+#: model:res.country,name:base.bv
+msgid "Bouvet Island"
+msgstr "Bouvet Island"
+
+#. module: base
+#: field:ir.report.custom,print_orientation:0
+msgid "Print orientation"
+msgstr "Print orientation"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_wizard_lang_export
+#: model:ir.ui.menu,name:base.menu_wizard_lang_export
+msgid "Export a Translation File"
+msgstr "Export a Translation File"
+
+#. module: base
+#: field:ir.attachment,name:0
+msgid "Attachment Name"
+msgstr "Attachment Name"
+
+#. module: base
+#: wizard_field:module.lang.import,init,data:0
+#: field:wizard.module.lang.export,data:0
+msgid "File"
+msgstr "File"
+
+#. module: base
+#: view:res.users:0
+msgid "Add User"
+msgstr "Add User"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_configuration_wizard
+msgid "ir.actions.configuration.wizard"
+msgstr "ir.actions.configuration.wizard"
+
+#. module: base
+#: view:res.lang:0
+msgid "%b - Abbreviated month name."
+msgstr "%b - Abbreviated month name."
+
+#. module: base
+#: field:res.partner,supplier:0
+#: model:res.partner.category,name:base.res_partner_category_8
+msgid "Supplier"
+msgstr "Supplier"
+
+#. module: base
+#: view:ir.actions.server:0
+#: selection:ir.actions.server,state:0
+msgid "Multi Actions"
+msgstr "Multi Actions"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "_Close"
+msgstr "_Close"
+
+#. module: base
+#: selection:maintenance.contract,kind:0
+msgid "Full"
+msgstr "Full"
+
+#. module: base
+#: model:res.country,name:base.as
+msgid "American Samoa"
+msgstr "American Samoa"
+
+#. 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 "Objects"
+
+#. module: base
+#: view:res.request.link:0
+msgid "Request Link"
+msgstr "Request Link"
+
+#. module: base
+#: field:ir.module.module,url:0
+#: field:ir.module.repository,url:0
+msgid "URL"
+msgstr "URL"
+
+#. module: base
+#: help:res.country,name:0
+msgid "The full name of the country."
+msgstr "The full name of the country."
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Iteration"
+msgstr "Iteration"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-stock"
+msgstr "terp-stock"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify the Partner Email address !"
+msgstr "Please specify the Partner Email address !"
+
+#. module: base
+#: model:res.country,name:base.ae
+msgid "United Arab Emirates"
+msgstr "United Arab Emirates"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_RECORD"
+msgstr "STOCK_MEDIA_RECORD"
+
+#. module: base
+#: model:res.country,name:base.re
+msgid "Reunion (French)"
+msgstr "Reunion (French)"
+
+#. module: base
+#: field:ir.rule.group,global:0
+msgid "Global"
+msgstr "Global"
+
+#. module: base
+#: model:res.country,name:base.cz
+msgid "Czech Republic"
+msgstr "Czech Republic"
+
+#. module: base
+#: model:res.country,name:base.sb
+msgid "Solomon Islands"
+msgstr "Solomon Islands"
+
+#. module: base
+#: view:res.lang:0
+msgid "8.  %I:%M:%S %p  ==> 06:25:20 PM"
+msgstr "8.  %I:%M:%S %p  ==> 06:25:20 PM"
+
+#. module: base
+#: view:ir.translation:0
+#: model:ir.ui.menu,name:base.menu_translation
+msgid "Translations"
+msgstr "Translations"
+
+#. module: base
+#: field:ir.sequence,padding:0
+msgid "Number padding"
+msgstr "Number padding"
+
+#. module: base
+#: model:res.country,name:base.ua
+msgid "Ukraine"
+msgstr "Ukraine"
+
+#. module: base
+#: model:res.country,name:base.to
+msgid "Tonga"
+msgstr "Tonga"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_category
+#: view:ir.module.category:0
+msgid "Module Category"
+msgstr "Module Category"
+
+#. module: base
+#: model:res.country,name:base.us
+msgid "United States"
+msgstr "United States"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Reference Guide"
+msgstr "Reference Guide"
+
+#. module: base
+#: model:res.country,name:base.ml
+msgid "Mali"
+msgstr "Mali"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNINDENT"
+msgstr "STOCK_UNINDENT"
+
+#. module: base
+#: field:ir.cron,interval_number:0
+msgid "Interval Number"
+msgstr "Interval Number"
+
+#. module: base
+#: selection:maintenance.contract,kind:0
+msgid "Partial"
+msgstr "Partial"
+
+#. module: base
+#: model:res.country,name:base.tk
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. module: base
+#: field:ir.actions.report.xml,report_xsl:0
+msgid "XSL path"
+msgstr "XSL path"
+
+#. module: base
+#: model:res.country,name:base.bn
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. module: base
+#: 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 "View Type"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_2
+msgid "User Interface"
+msgstr "User Interface"
+
+#. module: base
+#: field:res.partner,child_ids:0
+#: field:res.request,ref_partner_id:0
+msgid "Partner Ref."
+msgstr "Partner Ref."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_INFO"
+msgstr "STOCK_DIALOG_INFO"
+
+#. module: base
+#: field:ir.attachment,create_date:0
+msgid "Date Created"
+msgstr "Date Created"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_todo
+msgid "ir.actions.todo"
+msgstr "ir.actions.todo"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Get file"
+msgstr "Get file"
+
+#. module: base
+#: wizard_view:module.module.update,init:0
+msgid "This function will check for new modules in the 'addons' path and on module repositories:"
+msgstr "This function will check for new modules in the 'addons' path and on module repositories:"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_BACK"
+msgstr "STOCK_GO_BACK"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "AccessError"
+msgstr "AccessError"
+
+#. module: base
+#: model:res.country,name:base.dz
+msgid "Algeria"
+msgstr "Algeria"
+
+#. module: base
+#: model:res.country,name:base.be
+msgid "Belgium"
+msgstr "Belgium"
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Security (Groups)"
+msgstr "Security (Groups)"
+
+#. module: base
+#: field:ir.translation,lang:0
+#: wizard_field:module.lang.install,init,lang:0
+#: field:res.partner,lang:0
+#: field:res.users,context_lang:0
+#: field:wizard.module.lang.export,lang:0
+#: field:wizard.module.update_translations,lang:0
+msgid "Language"
+msgstr "Language"
+
+#. module: base
+#: model:res.country,name:base.gm
+msgid "Gambia"
+msgstr "Gambia"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_company_form
+#: model:ir.ui.menu,name:base.menu_action_res_company_form
+#: view:res.company:0
+msgid "Companies"
+msgstr "Companies"
+
+#. module: base
+#: view:ir.actions.server:0
+#: field:ir.actions.server,code:0
+#: selection:ir.actions.server,state:0
+msgid "Python Code"
+msgstr "Python Code"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_module_import.py:0
+#, python-format
+msgid "Can not create the module file: %s !"
+msgstr "Can not create the module file: %s !"
+
+#. module: base
+#: model:ir.module.module,description:base.module_meta_information
+msgid "The kernel of OpenERP, needed for all installation."
+msgstr "The kernel of OpenERP, needed for all installation."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_customer_form
+#: model:ir.ui.menu,name:base.menu_partner_customer_form
+msgid "Customers Partners"
+msgstr "Customers Partners"
+
+#. module: base
+#: wizard_button:base.module.import,init,end:0
+#: selection:ir.actions.todo,state:0
+#: wizard_button:module.lang.import,init,end:0
+#: wizard_button:module.lang.install,init,end:0
+#: wizard_button:module.module.update,init,end:0
+#: wizard_button:module.upgrade,next,end:0
+#: wizard_button:res.partner.sms_send,init,end:0
+#: wizard_button:res.partner.spam_send,init,end:0
+#: view:wizard.ir.model.menu.create:0
+#: view:wizard.module.lang.export:0
+#: view:wizard.module.update_translations:0
+msgid "Cancel"
+msgstr "Cancel"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "PO File"
+msgstr "PO File"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SPELL_CHECK"
+msgstr "STOCK_SPELL_CHECK"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_9
+msgid "Components Supplier"
+msgstr "Components Supplier"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_users
+#: field:ir.actions.todo,users_id:0
+#: field:ir.default,uid:0
+#: field:ir.rule.group,users: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
+#: field:res.roles,users:0
+#: view:res.users:0
+msgid "Users"
+msgstr "Users"
+
+#. module: base
+#: field:ir.module.module,published_version:0
+msgid "Published Version"
+msgstr "Published Version"
+
+#. module: base
+#: model:res.country,name:base.is
+msgid "Iceland"
+msgstr "Iceland"
+
+#. module: base
+#: view:res.users:0
+msgid "Roles are used to defined available actions, provided by workflows."
+msgstr "Roles are used to defined available actions, provided by workflows."
+
+#. module: base
+#: model:res.country,name:base.de
+msgid "Germany"
+msgstr "Germany"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Week of the year: %(woy)s"
+msgstr "Week of the year: %(woy)s"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_14
+msgid "Bad customers"
+msgstr "Bad customers"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_HARDDISK"
+msgstr "STOCK_HARDDISK"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Reports :"
+msgstr "Reports :"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_APPLY"
+msgstr "STOCK_APPLY"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_maintenance_contract_form
+#: model:ir.ui.menu,name:base.menu_maintenance_contract
+msgid "Your Maintenance Contracts"
+msgstr "Your Maintenance Contracts"
+
+#. module: base
+#: view:res.users:0
+msgid "Please note that you will have to logout and relog if you change your password."
+msgstr "Please note that you will have to logout and relog if you change your password."
+
+#. module: base
+#: model:res.country,name:base.gy
+msgid "Guyana"
+msgstr "Guyana"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Portugese (BR) / português (BR)"
+msgstr "Portugese (BR) / português (BR)"
+
+#. module: base
+#: field:ir.actions.server,record_id:0
+msgid "Create Id"
+msgstr "Create Id"
+
+#. module: base
+#: model:res.country,name:base.hn
+msgid "Honduras"
+msgstr "Honduras"
+
+#. module: base
+#: model:res.country,name:base.eg
+msgid "Egypt"
+msgstr "Egypt"
+
+#. module: base
+#: help:ir.actions.server,model_id:0
+msgid "Select the object on which the action will work (read, write, create)."
+msgstr "Select the object on which the action will work (read, write, create)."
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify server option --email-from !"
+msgstr "Please specify server option --email-from !"
+
+#. module: base
+#: view:ir.model:0
+msgid "Fields Description"
+msgstr "Fields Description"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CDROM"
+msgstr "STOCK_CDROM"
+
+#. module: base
+#: field:ir.model.fields,readonly:0
+#: field:res.partner.bank.type.field,readonly:0
+msgid "Readonly"
+msgstr "Readonly"
+
+#. module: base
+#: field:res.partner.event,type:0
+msgid "Type of Event"
+msgstr "Type of Event"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_sequence_type
+#: model:ir.ui.menu,name:base.menu_ir_sequence_type
+msgid "Sequence Types"
+msgstr "Sequence Types"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be installed"
+msgstr "To be installed"
+
+#. module: base
+#: model:ir.module.module,shortdesc:base.module_meta_information
+msgid "Base"
+msgstr "Base"
+
+#. module: base
+#: model:res.country,name:base.lr
+msgid "Liberia"
+msgstr "Liberia"
+
+#. module: base
+#: view:ir.attachment:0
+#: view:ir.model:0
+#: view:res.groups:0
+#: view:res.partner:0
+#: field:res.partner,comment:0
+#: field:res.partner.function,ref:0
+msgid "Notes"
+msgstr "Notes"
+
+#. module: base
+#: field:ir.property,value:0
+#: selection:ir.server.object.lines,type:0
+#: field:ir.server.object.lines,value:0
+#: field:ir.values,value:0
+#: field:ir.values,value_unpickle:0
+msgid "Value"
+msgstr "Value"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "Update Translations"
+msgstr "Update Translations"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Set"
+msgstr "Set"
+
+#. module: base
+#: model:res.country,name:base.mc
+msgid "Monaco"
+msgstr "Monaco"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Minutes"
+msgstr "Minutes"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "The modules have been upgraded / installed !"
+msgstr "The modules have been upgraded / installed !"
+
+#. module: base
+#: selection:ir.translation,type:0
+#: view:wizard.module.lang.export:0
+msgid "Help"
+msgstr "Help"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view
+msgid "ir.ui.view"
+msgstr "ir.ui.view"
+
+#. module: base
+#: wizard_button:server.action.create,step_1,create:0
+msgid "Create"
+msgstr "Create"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Current Year with Century: %(year)s"
+msgstr "Current Year with Century: %(year)s"
+
+#. module: base
+#: field:ir.exports,export_fields:0
+msgid "Export ID"
+msgstr "Export ID"
+
+#. module: base
+#: model:res.country,name:base.fr
+msgid "France"
+msgstr "France"
+
+#. module: base
+#: field:workflow.activity,flow_stop:0
+msgid "Flow Stop"
+msgstr "Flow Stop"
+
+#. module: base
+#: model:res.country,name:base.ar
+msgid "Argentina"
+msgstr "Argentina"
+
+#. module: base
+#: model:res.country,name:base.af
+msgid "Afghanistan, Islamic State of"
+msgstr "Afghanistan, Islamic State of"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_module_import.py:0
+#, python-format
+msgid "Error !"
+msgstr "Error !"
+
+#. module: base
+#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry
+msgid "country_id"
+msgstr "country_id"
+
+#. module: base
+#: field:ir.cron,interval_type:0
+msgid "Interval Unit"
+msgstr "Interval Unit"
+
+#. module: base
+#: field:maintenance.contract,kind:0
+#: field:workflow.activity,kind:0
+msgid "Kind"
+msgstr "Kind"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "Manual"
+msgstr "Manual"
+
+#. module: base
+#: field:res.bank,fax:0
+#: field:res.partner.address,fax:0
+msgid "Fax"
+msgstr "Fax"
+
+#. module: base
+#: field:res.lang,thousands_sep:0
+msgid "Thousands Separator"
+msgstr "Thousands Separator"
+
+#. module: base
+#: field:res.request,create_date:0
+msgid "Created Date"
+msgstr "Created Date"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Line Plot"
+msgstr "Line Plot"
+
+#. 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 "Select the action that will be executed. Loop action will not be avaliable inside loop."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Chinese (TW) / 正體字"
+msgstr "Chinese (TW) / 正體字"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_UP"
+msgstr "STOCK_GO_UP"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request
+msgid "res.request"
+msgstr "res.request"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "pdf"
+msgstr "pdf"
+
+#. module: base
+#: field:ir.default,company_id:0
+#: field:ir.property,company_id:0
+#: field:ir.values,company_id:0
+#: view:res.company:0
+#: field:res.users,company_id:0
+msgid "Company"
+msgstr "Company"
+
+#. module: base
+#: field:ir.attachment,datas:0
+msgid "File Content"
+msgstr "File Content"
+
+#. module: base
+#: model:res.country,name:base.pa
+msgid "Panama"
+msgstr "Panama"
+
+#. module: base
+#: selection:ir.report.custom,state:0
+msgid "Unsubscribed"
+msgstr "Unsubscribed"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Preview"
+msgstr "Preview"
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Skip Step"
+msgstr "Skip Step"
+
+#. module: base
+#: model:res.country,name:base.pn
+msgid "Pitcairn Island"
+msgstr "Pitcairn Island"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_partner_event_type-act
+#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act
+msgid "Active Partner Events"
+msgstr "Active Partner Events"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_rule
+#: model:ir.ui.menu,name:base.menu_action_rule
+msgid "Record Rules"
+msgstr "Record Rules"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day of the year: %(doy)s"
+msgstr "Day of the year: %(doy)s"
+
+#. module: base
+#: model:res.country,name:base.nt
+msgid "Neutral Zone"
+msgstr "Neutral Zone"
+
+#. module: base
+#: view:ir.model:0
+#: view:ir.model.fields:0
+#: view:ir.property:0
+#: model:ir.ui.menu,name:base.next_id_15
+msgid "Properties"
+msgstr "Properties"
+
+#. module: base
+#: view:res.lang:0
+msgid "%A - Full weekday name."
+msgstr "%A - Full weekday name."
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Months"
+msgstr "Months"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Selection"
+msgstr "Selection"
+
+#. module: base
+#: field:ir.rule,domain_force:0
+msgid "Force Domain"
+msgstr "Force Domain"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_attachment
+#: view:ir.attachment:0
+#: model:ir.ui.menu,name:base.menu_action_attachment
+msgid "Attachments"
+msgstr "Attachments"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "_Validate"
+msgstr "_Validate"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract_wizard
+msgid "maintenance.contract.wizard"
+msgstr "maintenance.contract.wizard"
+
+#. module: base
+#: field:ir.actions.server,child_ids:0
+msgid "Other Actions"
+msgstr "Other Actions"
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Done"
+msgstr "Done"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Validated"
+msgstr "Validated"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_miss
+msgid "Miss"
+msgstr "Miss"
+
+#. module: base
+#: field:ir.model.access,perm_write:0
+msgid "Write Access"
+msgstr "Write Access"
+
+#. module: base
+#: field:res.bank,city:0
+#: field:res.partner,city:0
+#: field:res.partner.address,city:0
+#: field:res.partner.bank,city:0
+msgid "City"
+msgstr "City"
+
+#. module: base
+#: model:res.country,name:base.qa
+msgid "Qatar"
+msgstr "Qatar"
+
+#. module: base
+#: model:res.country,name:base.it
+msgid "Italy"
+msgstr "Italy"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid "<>"
+msgstr "<>"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid "<="
+msgstr "<="
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Estonian / Eesti keel"
+msgstr "Estonian / Eesti keel"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Portugese / português"
+msgstr "Portugese / português"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-3 or later version"
+msgstr "GPL-3 or later version"
+
+#. module: base
+#: field:workflow.activity,action:0
+msgid "Python Action"
+msgstr "Python Action"
+
+#. module: base
+#: field:res.partner.event,probability:0
+msgid "Probability (0.50)"
+msgstr "Probability (0.50)"
+
+#. module: base
+#: field:ir.report.custom,repeat_header:0
+msgid "Repeat Header"
+msgstr "Repeat Header"
+
+#. module: base
+#: field:res.users,address_id:0
+msgid "Address"
+msgstr "Address"
+
+#. module: base
+#: field:ir.module.module,latest_version:0
+msgid "Installed version"
+msgstr "Installed version"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_workflow_root
+msgid "Workflow Definitions"
+msgstr "Workflow Definitions"
+
+#. module: base
+#: model:res.country,name:base.mr
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.workitem,act_id:0
+msgid "Activity"
+msgstr "Activity"
+
+#. module: base
+#: field:res.company,parent_id:0
+msgid "Parent Company"
+msgstr "Parent Company"
+
+#. module: base
+#: field:res.currency.rate,rate:0
+msgid "Rate"
+msgstr "Rate"
+
+#. module: base
+#: model:res.country,name:base.cg
+msgid "Congo"
+msgstr "Congo"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports_line
+msgid "ir.exports.line"
+msgstr "ir.exports.line"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PAUSE"
+msgstr "STOCK_MEDIA_PAUSE"
+
+#. module: base
+#: model:ir.model,name:base.model_res_country_state
+msgid "Country state"
+msgstr "Country state"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_property_form_all
+#: model:ir.ui.menu,name:base.menu_ir_property_form_all
+msgid "All Properties"
+msgstr "All Properties"
+
+#. 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 "Window Actions"
+
+#. module: base
+#: model:res.country,name:base.kn
+msgid "Saint Kitts & Nevis Anguilla"
+msgstr "Saint Kitts & Nevis Anguilla"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_HOME"
+msgstr "STOCK_HOME"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_sequence
+msgid "ir.sequence"
+msgstr "ir.sequence"
+
+#. 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 "Object in which you want to create / write the object. If it is empty then refer to the Object field."
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "Not Installed"
+msgstr "Not Installed"
+
+#. module: base
+#: field:workflow.activity,out_transitions:0
+msgid "Outgoing Transitions"
+msgstr "Outgoing Transitions"
+
+#. module: base
+#: field:ir.ui.menu,icon:0
+msgid "Icon"
+msgstr "Icon"
+
+#. module: base
+#: wizard_button:module.lang.import,init,finish:0
+#: wizard_button:module.lang.install,start,end:0
+#: wizard_button:module.module.update,update,open_window:0
+msgid "Ok"
+msgstr "Ok"
+
+#. module: base
+#: model:res.country,name:base.mq
+msgid "Martinique (French)"
+msgstr "Martinique (French)"
+
+#. 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.next_id_12
+#: view:res.request:0
+msgid "Requests"
+msgstr "Requests"
+
+#. module: base
+#: model:res.country,name:base.ye
+msgid "Yemen"
+msgstr "Yemen"
+
+#. module: base
+#: selection:workflow.activity,split_mode:0
+msgid "Or"
+msgstr "Or"
+
+#. module: base
+#: model:res.country,name:base.pk
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. module: base
+#: model:res.country,name:base.al
+msgid "Albania"
+msgstr "Albania"
+
+#. module: base
+#: model:res.country,name:base.ws
+msgid "Samoa"
+msgstr "Samoa"
+
+#. module: base
+#: field:ir.ui.menu,child_id:0
+msgid "Child IDs"
+msgstr "Child IDs"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Problem in configuration `Record Id` in Server Action!"
+msgstr "Problem in configuration `Record Id` in Server Action!"
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "This error occurs on database %s"
+msgstr "This error occurs on database %s"
+
+#. module: base
+#: wizard_button:base.module.import,init,import:0
+#: model:ir.actions.wizard,name:base.wizard_base_module_import
+#: model:ir.ui.menu,name:base.menu_wizard_module_import
+msgid "Import module"
+msgstr "Import module"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DISCONNECT"
+msgstr "STOCK_DISCONNECT"
+
+#. module: base
+#: model:res.country,name:base.la
+msgid "Laos"
+msgstr "Laos"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Email"
+msgstr "Email"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_wizard_update_translations
+#: model:ir.ui.menu,name:base.menu_wizard_update_translations
+msgid "Resynchronise Terms"
+msgstr "Resynchronise Terms"
+
+#. module: base
+#: model:res.country,name:base.tg
+msgid "Togo"
+msgstr "Togo"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Other Proprietary"
+msgstr "Other Proprietary"
+
+#. module: base
+#: selection:workflow.activity,kind:0
+msgid "Stop All"
+msgstr "Stop All"
+
+#. module: base
+#: view:res.lang:0
+msgid "3.  %x ,%X         ==> 12/05/08, 18:25:20"
+msgstr "3.  %x ,%X         ==> 12/05/08, 18:25:20"
+
+#. module: base
+#: selection:ir.model.fields,on_delete:0
+msgid "Cascade"
+msgstr "Cascade"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Field %d should be a figure"
+msgstr "Field %d should be a figure"
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Next Configuration Step"
+msgstr "Next Configuration Step"
+
+#. module: base
+#: field:res.groups,comment:0
+msgid "Comment"
+msgstr "Comment"
+
+#. module: base
+#: model:res.country,name:base.ro
+msgid "Romania"
+msgstr "Romania"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PREFERENCES"
+msgstr "STOCK_PREFERENCES"
+
+#. module: base
+#: field:res.country.state,name:0
+msgid "State Name"
+msgstr "State Name"
+
+#. module: base
+#: field:workflow.activity,join_mode:0
+msgid "Join Mode"
+msgstr "Join Mode"
+
+#. module: base
+#: field:res.users,context_tz:0
+msgid "Timezone"
+msgstr "Timezone"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_LAST"
+msgstr "STOCK_GOTO_LAST"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_report_xml
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.report.xml"
+msgstr "ir.actions.report.xml"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once."
+msgstr "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once."
+
+#. module: base
+#: wizard_button:module.lang.install,init,start:0
+msgid "Start installation"
+msgstr "Start installation"
+
+#. module: base
+#: constraint:res.partner:0
+msgid "Error ! You can not create recursive associated members."
+msgstr "Error ! You can not create recursive associated members."
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_2
+msgid "OpenERP Partners"
+msgstr "OpenERP Partners"
+
+#. module: base
+#: model:res.country,name:base.by
+msgid "Belarus"
+msgstr "Belarus"
+
+#. 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.server,name:0
+#: field:ir.actions.url,name:0
+msgid "Action Name"
+msgstr "Action Name"
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "Normal"
+msgstr "Normal"
+
+#. module: base
+#: field:res.bank,street2:0
+#: field:res.partner.address,street2:0
+msgid "Street2"
+msgstr "Street2"
+
+#. module: base
+#: field:ir.cron,user_id:0
+#: field:ir.ui.view.custom,user_id:0
+#: field:ir.values,user_id:0
+#: field:res.partner.event,user_id:0
+#: view:res.users:0
+msgid "User"
+msgstr "User"
+
+#. module: base
+#: model:res.country,name:base.pr
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. module: base
+#: code:addons/base/res/res_currency.py:0
+#, python-format
+msgid "No rate found \n' \\n"
+"                    'for the currency: %s \n' \\n"
+"                    'at the date: %s"
+msgstr "No rate found \n' \\n"
+"                    'for the currency: %s \n' \\n"
+"                    'at the date: %s"
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Open Window"
+msgstr "Open Window"
+
+#. module: base
+#: field:ir.module.repository,filter:0
+msgid "Filter"
+msgstr "Filter"
+
+#. module: base
+#: model:res.country,name:base.ch
+msgid "Switzerland"
+msgstr "Switzerland"
+
+#. module: base
+#: model:res.country,name:base.gd
+msgid "Grenada"
+msgstr "Grenada"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Trigger Configuration"
+msgstr "Trigger Configuration"
+
+#. module: base
+#: selection:server.action.create,init,type:0
+msgid "Open Report"
+msgstr "Open Report"
+
+#. module: base
+#: field:res.currency,rounding:0
+msgid "Rounding factor"
+msgstr "Rounding factor"
+
+#. module: base
+#: model:ir.model,name:base.model_res_company
+msgid "res.company"
+msgstr "res.company"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "System upgrade done"
+msgstr "System upgrade done"
+
+#. module: base
+#: model:res.country,name:base.so
+msgid "Somalia"
+msgstr "Somalia"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_simple_view_form
+msgid "Configure Simple View"
+msgstr "Configure Simple View"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_13
+msgid "Important customers"
+msgstr "Important customers"
+
+#. module: base
+#: field:res.request,act_to:0
+#: field:res.request.history,act_to:0
+msgid "To"
+msgstr "To"
+
+#. module: base
+#: field:ir.cron,args:0
+msgid "Arguments"
+msgstr "Arguments"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "sxw"
+msgstr "sxw"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL Version 2"
+msgstr "GPL Version 2"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL Version 3"
+msgstr "GPL Version 3"
+
+#. module: base
+#: field:ir.actions.report.xml,auto:0
+msgid "Automatic XSL:RML"
+msgstr "Automatic XSL:RML"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Manual domain setup"
+msgstr "Manual domain setup"
+
+#. module: base
+#: field:res.partner,customer:0
+#: model:res.partner.category,name:base.res_partner_category_0
+#: selection:res.partner.event,partner_type:0
+msgid "Customer"
+msgstr "Customer"
+
+#. module: base
+#: field:ir.actions.report.custom,name:0
+#: field:ir.report.custom,name:0
+msgid "Report Name"
+msgstr "Report Name"
+
+#. module: base
+#: field:ir.module.module,shortdesc:0
+msgid "Short Description"
+msgstr "Short Description"
+
+#. module: base
+#: field:res.partner.event,partner_type:0
+msgid "Partner Relation"
+msgstr "Partner Relation"
+
+#. module: base
+#: field:ir.actions.act_window,context:0
+msgid "Context Value"
+msgstr "Context Value"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Hour 00->24: %(h24)s"
+msgstr "Hour 00->24: %(h24)s"
+
+#. module: base
+#: field:res.request.history,date_sent:0
+msgid "Date sent"
+msgstr "Date sent"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Month: %(month)s"
+msgstr "Month: %(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.module.repository,sequence:0
+#: field:ir.report.custom.fields,sequence:0
+#: view:ir.sequence:0
+#: field:ir.ui.menu,sequence:0
+#: field:ir.ui.view_sc,sequence:0
+#: field:res.partner.bank,sequence:0
+#: field:wizard.ir.model.menu.create.line,sequence:0
+msgid "Sequence"
+msgstr "Sequence"
+
+#. module: base
+#: model:res.country,name:base.tn
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. module: base
+#: field:ir.actions.wizard,name:0
+msgid "Wizard Info"
+msgstr "Wizard Info"
+
+#. module: base
+#: help:ir.cron,numbercall:0
+msgid "Number of time the function is called,\n"
+"a negative number indicates that the function will always be called"
+msgstr "Number of time the function is called,\n"
+"a negative number indicates that the function will always be called"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Install"
+msgstr "Cancel Install"
+
+#. module: base
+#: view:res.lang:0
+msgid "Legends for Date and Time Formats"
+msgstr "Legends for Date and Time Formats"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Monthly"
+msgstr "شهرياً"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_partner_som-act
+#: model:ir.ui.menu,name:base.menu_res_partner_som-act
+msgid "States of mind"
+msgstr "States of mind"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SORT_ASCENDING"
+msgstr "STOCK_SORT_ASCENDING"
+
+#. module: base
+#: view:ir.model:0
+#: view:res.groups:0
+msgid "Access Rules"
+msgstr "Access Rules"
+
+#. module: base
+#: field:ir.default,ref_table:0
+msgid "Table Ref."
+msgstr "Table Ref."
+
+#. module: base
+#: field:res.roles,parent_id:0
+msgid "Parent"
+msgstr "Parent"
+
+#. module: base
+#: field:ir.actions.act_window,res_model:0
+#: field:ir.actions.report.custom,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
+#: view:ir.model:0
+#: field:ir.model,model:0
+#: field:ir.model.access,model_id:0
+#: field:ir.model.data,model:0
+#: field:ir.model.grid,model:0
+#: field:ir.report.custom,model_id:0
+#: field:ir.rule.group,model_id:0
+#: selection:ir.translation,type:0
+#: field:ir.ui.view,model:0
+#: field:ir.values,model_id:0
+#: field:res.request.link,object:0
+#: field:wizard.ir.model.menu.create,model_id:0
+#: field:workflow.triggers,model:0
+msgid "Object"
+msgstr "Object"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_default
+msgid "ir.default"
+msgstr "ir.default"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Minute: %(min)s"
+msgstr "Minute: %(min)s"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_10
+msgid "Scheduler"
+msgstr "Scheduler"
+
+#. module: base
+#: view:res.lang:0
+msgid "%w - Weekday as a decimal number [0(Sunday),6]."
+msgstr "%w - Weekday as a decimal number [0(Sunday),6]."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export translation file"
+msgstr "Export translation file"
+
+#. module: base
+#: field:ir.ui.view_sc,user_id:0
+msgid "User Ref."
+msgstr "User Ref."
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Warning !"
+msgstr "Warning !"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_base_config
+#: model:ir.ui.menu,name:base.menu_config
+#: view:res.company:0
+msgid "Configuration"
+msgstr "Configuration"
+
+#. module: base
+#: field:ir.actions.server,expression:0
+msgid "Loop Expression"
+msgstr "Loop Expression"
+
+#. module: base
+#: selection:res.partner.event,partner_type:0
+msgid "Retailer"
+msgstr "Retailer"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Tabular"
+msgstr "Tabular"
+
+#. module: base
+#: field:ir.actions.todo,start_on:0
+msgid "Start On"
+msgstr "Start On"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_5
+msgid "Gold Partner"
+msgstr "Gold Partner"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner
+#: field:res.company,partner_id:0
+#: field:res.partner.address,partner_id:0
+#: field:res.partner.bank,partner_id:0
+#: field:res.partner.event,partner_id:0
+#: selection:res.partner.title,domain:0
+msgid "Partner"
+msgstr "Partner"
+
+#. module: base
+#: model:res.country,name:base.tr
+msgid "Turkey"
+msgstr "Turkey"
+
+#. module: base
+#: model:res.country,name:base.fk
+msgid "Falkland Islands"
+msgstr "Falkland Islands"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "odt"
+msgstr "odt"
+
+#. module: base
+#: field:ir.actions.report.custom,type:0
+#: field:ir.actions.report.xml,type:0
+#: field:ir.report.custom,type:0
+msgid "Report Type"
+msgstr "Report Type"
+
+#. module: base
+#: field:ir.actions.todo,state:0
+#: field:ir.module.module,state:0
+#: field:ir.module.module.dependency,state:0
+#: field:ir.report.custom,state:0
+#: field:maintenance.contract,state:0
+#: field:res.bank,state:0
+#: view:res.country.state:0
+#: field:res.partner.bank,state_id:0
+#: field:res.request,state:0
+#: field:workflow.instance,state:0
+#: field:workflow.workitem,state:0
+msgid "State"
+msgstr "State"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-administration"
+msgstr "terp-administration"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_translation
+#: model:ir.ui.menu,name:base.menu_action_translation
+msgid "All terms"
+msgstr "All terms"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Galician / Galego"
+msgstr "Galician / Galego"
+
+#. module: base
+#: model:res.country,name:base.no
+msgid "Norway"
+msgstr "Norway"
+
+#. module: base
+#: view:res.lang:0
+msgid "4.  %b, %B         ==> Dec, December"
+msgstr "4.  %b, %B         ==> Dec, December"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_lang_install
+#: model:ir.ui.menu,name:base.menu_wizard_lang_install
+msgid "Load an Official Translation"
+msgstr "Load an Official Translation"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_10
+msgid "Open Source Service Company"
+msgstr "Open Source Service Company"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "waiting"
+msgstr "waiting"
+
+#. module: base
+#: field:ir.attachment,link:0
+msgid "Link"
+msgstr "Link"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_triggers
+msgid "workflow.triggers"
+msgstr "workflow.triggers"
+
+#. module: base
+#: field:ir.report.custom.fields,report_id:0
+msgid "Report Ref"
+msgstr "Report Ref"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-hr"
+msgstr "terp-hr"
+
+#. 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 "If set to true, the wizard will not be displayed on the right toolbar of a form view."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DND"
+msgstr "STOCK_DND"
+
+#. module: base
+#: model:res.country,name:base.hm
+msgid "Heard and McDonald Islands"
+msgstr "Heard and McDonald Islands"
+
+#. module: base
+#: field:ir.actions.act_window,view_id:0
+msgid "View Ref."
+msgstr "View Ref."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Dutch (Belgium) / Nederlands (Belgïe)"
+msgstr "Dutch (Belgium) / Nederlands (Belgïe)"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_repository_tree
+#: view:ir.module.repository:0
+#: model:ir.ui.menu,name:base.menu_module_repository_tree
+msgid "Repository list"
+msgstr "Repository list"
+
+#. module: base
+#: field:res.company,rml_header1:0
+msgid "Report Header"
+msgstr "Report Header"
+
+#. module: base
+#: field:res.roles,child_id:0
+msgid "Children"
+msgstr "Children"
+
+#. 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.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 "Action Type"
+
+#. module: base
+#: field:res.partner.bank.type,field_ids:0
+msgid "Type fields"
+msgstr "Type fields"
+
+#. module: base
+#: field:ir.module.module,category_id:0
+msgid "Category"
+msgstr "Category"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FLOPPY"
+msgstr "STOCK_FLOPPY"
+
+#. module: base
+#: field:ir.actions.server,sms:0
+#: selection:ir.actions.server,state:0
+msgid "SMS"
+msgstr "SMS"
+
+#. module: base
+#: model:res.country,name:base.cr
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "Your can't submit bug reports due to uncovered modules: %s"
+msgstr "Your can't submit bug reports due to uncovered modules: %s"
+
+#. module: base
+#: view:ir.model:0
+#: view:res.request:0
+msgid "Status"
+msgstr "Status"
+
+#. 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 "Currencies"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Hour 00->12: %(h12)s"
+msgstr "Hour 00->12: %(h12)s"
+
+#. module: base
+#: help:res.partner.address,active:0
+msgid "Uncheck the active field to hide the contact."
+msgstr "Uncheck the active field to hide the contact."
+
+#. module: base
+#: model:res.country,name:base.dk
+msgid "Denmark"
+msgstr "Denmark"
+
+#. module: base
+#: field:res.country,code:0
+msgid "Country Code"
+msgstr "Country Code"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_instance
+msgid "workflow.instance"
+msgstr "workflow.instance"
+
+#. module: base
+#: view:res.lang:0
+msgid "10. %S              ==> 20"
+msgstr "10. %S              ==> 20"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_madam
+msgid "Madam"
+msgstr "Madam"
+
+#. module: base
+#: model:res.country,name:base.ee
+msgid "Estonia"
+msgstr "Estonia"
+
+#. module: base
+#: model:res.country,name:base.nl
+msgid "Netherlands"
+msgstr "Netherlands"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_4
+msgid "Low Level Objects"
+msgstr "Low Level Objects"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_report_custom
+msgid "ir.report.custom"
+msgstr "ir.report.custom"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Purchase Offer"
+msgstr "Purchase Offer"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_values
+msgid "ir.values"
+msgstr "ir.values"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_FIT"
+msgstr "STOCK_ZOOM_FIT"
+
+#. module: base
+#: model:res.country,name:base.cd
+msgid "Congo, The Democratic Republic of the"
+msgstr "Congo, The Democratic Republic of the"
+
+#. module: base
+#: view:res.request:0
+#: field:res.request,body:0
+#: field:res.request.history,req_id:0
+msgid "Request"
+msgstr "Request"
+
+#. module: base
+#: model:res.country,name:base.jp
+msgid "Japan"
+msgstr "Japan"
+
+#. module: base
+#: field:ir.cron,numbercall:0
+msgid "Number of Calls"
+msgstr "Number of Calls"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "Language file loaded."
+msgstr "Language file loaded."
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+#: wizard_field:module.upgrade,next,module_info:0
+msgid "Modules to update"
+msgstr "Modules to update"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action2
+msgid "Company Architecture"
+msgstr "Company Architecture"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_BOTTOM"
+msgstr "STOCK_GOTO_BOTTOM"
+
+#. 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 "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority."
+
+#. module: base
+#: field:ir.actions.report.xml,header:0
+msgid "Add RML header"
+msgstr "Add RML header"
+
+#. module: base
+#: model:res.country,name:base.gr
+msgid "Greece"
+msgstr "Greece"
+
+#. module: base
+#: field:res.request,trigger_date:0
+msgid "Trigger Date"
+msgstr "Trigger Date"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Croatian / hrvatski jezik"
+msgstr "Croatian / hrvatski jezik"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_FORWARD"
+msgstr "STOCK_GO_FORWARD"
+
+#. module: base
+#: help:ir.actions.server,code:0
+msgid "Python code to be executed"
+msgstr "Python code to be executed"
+
+#. module: base
+#: selection:ir.module.module.dependency,state:0
+msgid "Uninstallable"
+msgstr "Uninstallable"
+
+#. module: base
+#: view:res.partner.category:0
+msgid "Partner Category"
+msgstr "Partner Category"
+
+#. module: base
+#: view:ir.actions.server:0
+#: selection:ir.actions.server,state:0
+msgid "Trigger"
+msgstr "Trigger"
+
+#. module: base
+#: field:ir.model.fields,translate:0
+msgid "Translate"
+msgstr "Translate"
+
+#. module: base
+#: field:res.request.history,body:0
+msgid "Body"
+msgstr "Body"
+
+#. module: base
+#: wizard_button:res.partner.spam_send,init,send:0
+msgid "Send Email"
+msgstr "Send Email"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SELECT_FONT"
+msgstr "STOCK_SELECT_FONT"
+
+#. module: base
+#: field:res.users,menu_id:0
+msgid "Menu Action"
+msgstr "Menu Action"
+
+#. module: base
+#: selection:wizard.module.lang.export,state:0
+msgid "choose"
+msgstr "choose"
+
+#. 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 "Graph"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+msgid "<"
+msgstr "<"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "Html from html"
+msgstr "Html from html"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_low_workflow
+msgid "Workflow Items"
+msgstr "Workflow Items"
+
+#. module: base
+#: field:res.request,ref_doc2:0
+msgid "Document Ref 2"
+msgstr "Document Ref 2"
+
+#. module: base
+#: field:res.request,ref_doc1:0
+msgid "Document Ref 1"
+msgstr "Document Ref 1"
+
+#. module: base
+#: model:res.country,name:base.ga
+msgid "Gabon"
+msgstr "Gabon"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_data
+msgid "ir.model.data"
+msgstr "ir.model.data"
+
+#. module: base
+#: view:ir.model:0
+#: view:res.groups:0
+msgid "Access Rights"
+msgstr "Access Rights"
+
+#. module: base
+#: model:res.country,name:base.gl
+msgid "Greenland"
+msgstr "Greenland"
+
+#. module: base
+#: help:ir.actions.report.xml,report_rml:0
+msgid "The .rml path of the file or NULL if the content is in report_rml_content"
+msgstr "The .rml path of the file or NULL if the content is in report_rml_content"
+
+#. module: base
+#: field:res.partner.bank,acc_number:0
+msgid "Account Number"
+msgstr "Account Number"
+
+#. module: base
+#: view:res.lang:0
+msgid "1.  %c              ==> Fri Dec  5 18:25:20 2008"
+msgstr "1.  %c              ==> Fri Dec  5 18:25:20 2008"
+
+#. 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, Open ERP will compute visibility based on the related object's read access."
+msgstr "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access."
+
+#. module: base
+#: model:res.country,name:base.nc
+msgid "New Caledonia (French)"
+msgstr "New Caledonia (French)"
+
+#. module: base
+#: field:res.partner.function,name:0
+msgid "Function Name"
+msgstr "Function Name"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "_Cancel"
+msgstr "_Cancel"
+
+#. module: base
+#: model:res.country,name:base.cy
+msgid "Cyprus"
+msgstr "Cyprus"
+
+#. module: base
+#: field:ir.actions.server,subject:0
+#: wizard_field:res.partner.spam_send,init,subject:0
+#: field:res.request,name:0
+msgid "Subject"
+msgstr "Subject"
+
+#. module: base
+#: field:res.request,act_from:0
+#: field:res.request.history,act_from:0
+msgid "From"
+msgstr "From"
+
+#. module: base
+#: wizard_button:server.action.create,init,step_1:0
+msgid "Next"
+msgstr "Next"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-report"
+msgstr "terp-report"
+
+#. module: base
+#: model:res.company,overdue_msg:base.main_company
+msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department"
+msgstr "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department"
+
+#. 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 "RML content"
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Incoming transitions"
+msgstr "Incoming transitions"
+
+#. module: base
+#: model:res.country,name:base.cn
+msgid "China"
+msgstr "China"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password empty !"
+msgstr "Password empty !"
+
+#. module: base
+#: model:res.country,name:base.eh
+msgid "Western Sahara"
+msgstr "Western Sahara"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow
+msgid "workflow"
+msgstr "workflow"
+
+#. module: base
+#: model:res.country,name:base.id
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "At Once"
+msgstr "At Once"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Write Object"
+msgstr "Write Object"
+
+#. module: base
+#: model:res.country,name:base.bg
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. module: base
+#: model:res.country,name:base.ao
+msgid "Angola"
+msgstr "Angola"
+
+#. module: base
+#: model:res.country,name:base.tf
+msgid "French Southern Territories"
+msgstr "French Southern Territories"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_HELP"
+msgstr "STOCK_HELP"
+
+#. module: base
+#: model:ir.model,name:base.model_res_currency
+#: field:res.company,currency_id:0
+#: view:res.currency:0
+#: field:res.currency,name:0
+#: field:res.currency.rate,currency_id:0
+msgid "Currency"
+msgstr "Currency"
+
+#. module: base
+#: field:res.partner.canal,name:0
+msgid "Channel Name"
+msgstr "Channel Name"
+
+#. module: base
+#: view:res.lang:0
+msgid "5.  %y, %Y         ==> 08, 2008"
+msgstr "5.  %y, %Y         ==> 08, 2008"
+
+#. module: base
+#: field:ir.model.fields,model_id:0
+#: field:ir.values,res_id:0
+msgid "Object ID"
+msgstr "Object ID"
+
+#. module: base
+#: selection:ir.report.custom,print_orientation:0
+msgid "Landscape"
+msgstr "Landscape"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_administration
+msgid "Administration"
+msgstr "Administration"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid "child_of"
+msgstr "child_of"
+
+#. module: base
+#: model:res.country,name:base.ir
+msgid "Iran"
+msgstr "Iran"
+
+#. module: base
+#: field:ir.report.custom.fields,operation:0
+#: field:ir.ui.menu,icon_pict:0
+#: field:wizard.module.lang.export,state:0
+msgid "unknown"
+msgstr "unknown"
+
+#. module: base
+#: field:ir.ui.view_sc,res_id:0
+msgid "Resource Ref."
+msgstr "Resource Ref."
+
+#. module: base
+#: model:res.country,name:base.ki
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. module: base
+#: model:res.country,name:base.iq
+msgid "Iraq"
+msgstr "Iraq"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Action to Launch"
+msgstr "Action to Launch"
+
+#. module: base
+#: wizard_view:base.module.import,import:0
+#: wizard_view:base.module.import,init:0
+msgid "Module import"
+msgstr "Module import"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_supplier_form
+#: model:ir.ui.menu,name:base.menu_partner_supplier_form
+msgid "Suppliers Partners"
+msgstr "Suppliers Partners"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_sequence_type
+msgid "ir.sequence.type"
+msgstr "ir.sequence.type"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "CSV File"
+msgstr "CSV File"
+
+#. module: base
+#: selection:ir.model,state:0
+#: selection:ir.model.grid,state:0
+msgid "Base Object"
+msgstr "Base Object"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-crm"
+msgstr "terp-crm"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_STRIKETHROUGH"
+msgstr "STOCK_STRIKETHROUGH"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+msgid "(year)="
+msgstr "(year)="
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Dependencies :"
+msgstr "Dependencies :"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-partner"
+msgstr "terp-partner"
+
+#. module: base
+#: field:ir.model.fields,field_description:0
+msgid "Field Label"
+msgstr "Field Label"
+
+#. module: base
+#: model:res.country,name:base.dj
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. module: base
+#: field:ir.translation,value:0
+msgid "Translation Value"
+msgstr "Translation Value"
+
+#. module: base
+#: model:res.country,name:base.ag
+msgid "Antigua and Barbuda"
+msgstr "Antigua and Barbuda"
+
+#. module: base
+#: field:ir.actions.server,condition:0
+#: field:ir.report.custom.fields,fc0_condition:0
+#: field:workflow.transition,condition:0
+msgid "Condition"
+msgstr "Condition"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_management
+msgid "Modules Management"
+msgstr "Modules Management"
+
+#. 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 "Resource ID"
+
+#. module: base
+#: view:ir.cron:0
+#: field:ir.model,info:0
+#: field:ir.model.grid,info:0
+#: view:maintenance.contract:0
+msgid "Information"
+msgstr "Information"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts."
+msgstr "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts."
+
+#. module: base
+#: field:ir.actions.report.xml,report_rml:0
+msgid "RML path"
+msgstr "RML path"
+
+#. module: base
+#: field:ir.actions.configuration.wizard,item_id:0
+msgid "Next Configuration Wizard"
+msgstr "Next Configuration Wizard"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+#: selection:res.partner.address,type:0
+msgid "Other"
+msgstr "Other"
+
+#. module: base
+#: view:res.request:0
+msgid "Reply"
+msgstr "Reply"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Turkish / Türkçe"
+msgstr "Turkish / Türkçe"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_translation_untrans
+#: model:ir.ui.menu,name:base.menu_action_translation_untrans
+msgid "Untranslated terms"
+msgstr "Untranslated terms"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "Import New Language"
+msgstr "Import New Language"
+
+#. 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 "Activities"
+
+#. module: base
+#: field:ir.actions.act_window,auto_refresh:0
+msgid "Auto-Refresh"
+msgstr "Auto-Refresh"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+#: selection:ir.rule,operator:0
+msgid "="
+msgstr "="
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Second field should be figures"
+msgstr "Second field should be figures"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_model_grid_security
+#: model:ir.ui.menu,name:base.menu_ir_access_grid
+msgid "Access Controls Grid"
+msgstr "Access Controls Grid"
+
+#. 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
+msgid "Actions"
+msgstr "Actions"
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "High"
+msgstr "High"
+
+#. module: base
+#: field:ir.exports.line,export_id:0
+msgid "Export"
+msgstr "Export"
+
+#. module: base
+#: help:res.bank,bic:0
+msgid "Bank Identifier Code"
+msgstr "Bank Identifier Code"
+
+#. module: base
+#: model:res.country,name:base.tm
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. module: base
+#: model:res.country,name:base.pm
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre and Miquelon"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Latvian / Latviešu valoda"
+msgstr "Latvian / Latviešu valoda"
+
+#. module: base
+#: field:res.partner.event,document:0
+msgid "Document"
+msgstr "Document"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REFRESH"
+msgstr "STOCK_REFRESH"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_STOP"
+msgstr "STOCK_STOP"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "Update"
+msgstr "Update"
+
+#. module: base
+#: model:ir.actions.report.xml,name:base.ir_module_reference_print
+msgid "Technical guide"
+msgstr "Technical guide"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CONVERT"
+msgstr "STOCK_CONVERT"
+
+#. module: base
+#: model:res.country,name:base.tz
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Danish / Dansk"
+msgstr "Danish / Dansk"
+
+#. module: base
+#: model:res.country,name:base.cx
+msgid "Christmas Island"
+msgstr "Christmas Island"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Other Actions Configuration"
+msgstr "Other Actions Configuration"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_EXECUTE"
+msgstr "STOCK_EXECUTE"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Model %s Does not Exist !\" % vals['relation']))\n"
+"\n"
+"            if self.pool.get(vals['model']):\n"
+"                self.pool.get(vals['model']).__init__(self.pool, cr)\n"
+"                #Added context to _auto_init for special treatment to custom field for select_level\n"
+"                ctx = context.copy()\n"
+"                ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0"
+msgstr "Model %s Does not Exist !\" % vals['relation']))\n"
+"\n"
+"            if self.pool.get(vals['model']):\n"
+"                self.pool.get(vals['model']).__init__(self.pool, cr)\n"
+"                #Added context to _auto_init for special treatment to custom field for select_level\n"
+"                ctx = context.copy()\n"
+"                ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0"
+
+#. 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
+msgid "Channels"
+msgstr "Channels"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule for Installation"
+msgstr "Schedule for Installation"
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Advanced Search"
+msgstr "Advanced Search"
+
+#. module: base
+#: view:res.request:0
+msgid "Send"
+msgstr "Send"
+
+#. module: base
+#: field:ir.translation,src:0
+msgid "Source"
+msgstr "Source"
+
+#. module: base
+#: help:res.partner.address,partner_id:0
+msgid "Keep empty for a private address, not related to partner."
+msgstr "Keep empty for a private address, not related to partner."
+
+#. module: base
+#: model:res.country,name:base.vu
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. module: base
+#: view:res.company:0
+msgid "Internal Header/Footer"
+msgstr "Internal Header/Footer"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, python-format
+msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad."
+msgstr "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad."
+
+#. module: base
+#: wizard_button:module.upgrade,end,config:0
+#: wizard_button:module.upgrade,start,config:0
+msgid "Start configuration"
+msgstr "Start configuration"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Catalan / Català"
+msgstr "Catalan / Català"
+
+#. module: base
+#: model:res.country,name:base.do
+msgid "Dominican Republic"
+msgstr "Dominican Republic"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_COLOR_PICKER"
+msgstr "STOCK_COLOR_PICKER"
+
+#. module: base
+#: model:res.country,name:base.sa
+msgid "Saudi Arabia"
+msgstr "Saudi Arabia"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Bar charts need at least two fields"
+msgstr "Bar charts need at least two fields"
+
+#. 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 "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."
+
+#. module: base
+#: field:ir.model.fields,relation_field:0
+msgid "Relation Field"
+msgstr "Relation Field"
+
+#. module: base
+#: field:workflow.triggers,instance_id:0
+msgid "Destination Instance"
+msgstr "Destination Instance"
+
+#. module: base
+#: field:ir.actions.wizard,multi:0
+msgid "Action on Multiple Doc."
+msgstr "Action on Multiple Doc."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "https://translations.launchpad.net/openobject";
+msgstr "https://translations.launchpad.net/openobject";
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_title
+#: model:ir.ui.menu,name:base.menu_partner_title
+msgid "Titles"
+msgstr "Titles"
+
+#. module: base
+#: field:ir.actions.todo,start_date:0
+msgid "Start Date"
+msgstr "Start Date"
+
+#. module: base
+#: field:ir.actions.report.xml,report_xml:0
+msgid "XML path"
+msgstr "XML path"
+
+#. module: base
+#: model:res.country,name:base.gn
+msgid "Guinea"
+msgstr "Guinea"
+
+#. module: base
+#: model:res.country,name:base.lu
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. module: base
+#: model:ir.actions.todo,note:base.config_wizard_step_user
+msgid "Create your users.\n"
+"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n"
+"            "
+msgstr "Create your users.\n"
+"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n"
+"            "
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "Low"
+msgstr "Low"
+
+#. module: base
+#: view:ir.values:0
+msgid "tree_but_action, client_print_multi"
+msgstr "tree_but_action, client_print_multi"
+
+#. module: base
+#: model:res.country,name:base.sv
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. module: base
+#: field:res.bank,phone:0
+#: field:res.partner.address,phone:0
+msgid "Phone"
+msgstr "Phone"
+
+#. module: base
+#: field:res.groups,menu_access:0
+msgid "Access Menu"
+msgstr "Access Menu"
+
+#. module: base
+#: model:res.country,name:base.th
+msgid "Thailand"
+msgstr "Thailand"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+msgid ">"
+msgstr ">"
+
+#. module: base
+#: field:ir.model.access,perm_unlink:0
+msgid "Delete Permission"
+msgstr "Delete Permission"
+
+#. module: base
+#: selection:workflow.activity,join_mode:0
+#: selection:workflow.activity,split_mode:0
+msgid "And"
+msgstr "And"
+
+#. module: base
+#: field:ir.model.fields,relation:0
+msgid "Object Relation"
+msgstr "Object Relation"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PRINT"
+msgstr "STOCK_PRINT"
+
+#. module: base
+#: view:res.partner:0
+msgid "General"
+msgstr "General"
+
+#. module: base
+#: model:res.country,name:base.uz
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.act_window"
+msgstr "ir.actions.act_window"
+
+#. module: base
+#: model:res.country,name:base.vi
+msgid "Virgin Islands (USA)"
+msgstr "Virgin Islands (USA)"
+
+#. module: base
+#: model:res.country,name:base.tw
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. module: base
+#: view:ir.rule:0
+msgid "If you don't force the domain, it will use the simple domain setup"
+msgstr "If you don't force the domain, it will use the simple domain setup"
+
+#. module: base
+#: field:ir.report.custom,field_parent:0
+#: field:ir.ui.view,field_parent:0
+msgid "Child Field"
+msgstr "Child Field"
+
+#. 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.report.custom,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 "Action Usage"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_workitem
+msgid "workflow.workitem"
+msgstr "workflow.workitem"
+
+#. module: base
+#: selection:ir.module.module,state:0
+msgid "Not Installable"
+msgstr "Not Installable"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "View :"
+msgstr "View :"
+
+#. module: base
+#: field:ir.model.fields,view_load:0
+msgid "View Auto-Load"
+msgstr "View Auto-Load"
+
+#. module: base
+#: field:ir.module.module,installed_version:0
+msgid "Latest version"
+msgstr "Latest version"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You cannot remove the field '%s' !"
+msgstr "You cannot remove the field '%s' !"
+
+#. module: base
+#: field:ir.report.custom,print_format:0
+msgid "Print format"
+msgstr "Print format"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUMP_TO"
+msgstr "STOCK_JUMP_TO"
+
+#. module: base
+#: field:ir.actions.todo,end_date:0
+msgid "End Date"
+msgstr "End Date"
+
+#. module: base
+#: field:ir.exports,resource:0
+#: field:ir.property,res_id:0
+msgid "Resource"
+msgstr "Resource"
+
+#. module: base
+#: field:maintenance.contract,name:0
+#: field:maintenance.contract.wizard,name:0
+msgid "Contract ID"
+msgstr "Contract ID"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Persian / فارس"
+msgstr "Persian / فارس"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "center"
+msgstr "center"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country_state
+#: model:ir.ui.menu,name:base.menu_country_state_partner
+#: field:maintenance.contract.wizard,state:0
+msgid "States"
+msgstr "States"
+
+#. module: base
+#: field:ir.actions.configuration.wizard,name:0
+msgid "Next Wizard"
+msgstr "Next Wizard"
+
+#. module: base
+#: field:ir.attachment,datas_fname:0
+#: field:wizard.module.lang.export,name:0
+msgid "Filename"
+msgstr "Filename"
+
+#. module: base
+#: field:ir.model,access_ids:0
+#: field:ir.model.grid,access_ids:0
+msgid "Access"
+msgstr "Access"
+
+#. module: base
+#: model:res.country,name:base.sk
+msgid "Slovak Republic"
+msgstr "Slovak Republic"
+
+#. module: base
+#: model:res.country,name:base.aw
+msgid "Aruba"
+msgstr "Aruba"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Weeks"
+msgstr "Weeks"
+
+#. module: base
+#: field:res.groups,name:0
+msgid "Group Name"
+msgstr "Group Name"
+
+#. module: base
+#: model:res.country,name:base.bh
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_12
+msgid "Segmentation"
+msgstr "Segmentation"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FIND"
+msgstr "STOCK_FIND"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard
+#: model:ir.ui.menu,name:base.menu_maintenance_contract_add
+#: view:maintenance.contract.wizard:0
+msgid "Add Maintenance Contract"
+msgstr "Add Maintenance Contract"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam"
+msgstr "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam"
+
+#. module: base
+#: field:ir.actions.act_window,limit:0
+#: field:ir.report.custom,limitt:0
+msgid "Limit"
+msgstr "Limit"
+
+#. module: base
+#: help:ir.actions.server,wkf_model_id:0
+msgid "Workflow to be executed on this model."
+msgstr "Workflow to be executed on this model."
+
+#. module: base
+#: model:res.country,name:base.jm
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. module: base
+#: model:res.country,name:base.az
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Warning"
+msgstr "Warning"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Arabic / الْعَرَبيّة"
+msgstr "Arabic / الْعَرَبيّة"
+
+#. module: base
+#: model:res.country,name:base.gi
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. module: base
+#: model:res.country,name:base.vg
+msgid "Virgin Islands (British)"
+msgstr "Virgin Islands (British)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PREVIOUS"
+msgstr "STOCK_MEDIA_PREVIOUS"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Czech / Čeština"
+msgstr "Czech / Čeština"
+
+#. module: base
+#: model:res.country,name:base.wf
+msgid "Wallis and Futuna Islands"
+msgstr "Wallis and Futuna Islands"
+
+#. module: base
+#: model:res.country,name:base.rw
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. module: base
+#: constraint:res.partner:0
+msgid "The VAT doesn't seem to be correct."
+msgstr "The VAT doesn't seem to be correct."
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Calculate Sum"
+msgstr "Calculate Sum"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day of the week (0:Monday): %(weekday)s"
+msgstr "Day of the week (0:Monday): %(weekday)s"
+
+#. module: base
+#: model:res.country,name:base.ck
+msgid "Cook Islands"
+msgstr "Cook Islands"
+
+#. 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 "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"
+
+#. module: base
+#: field:ir.model.data,noupdate:0
+msgid "Non Updatable"
+msgstr "Non Updatable"
+
+#. module: base
+#: model:res.country,name:base.sg
+msgid "Singapore"
+msgstr "Singapore"
+
+#. module: base
+#: selection:ir.actions.act_window,target:0
+msgid "Current Window"
+msgstr "Current Window"
+
+#. module: base
+#: view:ir.values:0
+msgid "Action Source"
+msgstr "Action Source"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NETWORK"
+msgstr "STOCK_NETWORK"
+
+#. module: base
+#: model:ir.model,name:base.model_res_country
+#: field:res.bank,country:0
+#: view:res.country:0
+#: field:res.country.state,country_id:0
+#: field:res.partner,country:0
+#: field:res.partner.address,country_id:0
+#: field:res.partner.bank,country_id:0
+msgid "Country"
+msgstr "Country"
+
+#. module: base
+#: field:ir.model.fields,complete_name:0
+#: field:ir.ui.menu,complete_name:0
+msgid "Complete Name"
+msgstr "Complete Name"
+
+#. module: base
+#: view:ir.report.custom:0
+msgid "Subscribe Report"
+msgstr "Subscribe Report"
+
+#. module: base
+#: field:ir.values,object:0
+msgid "Is Object"
+msgstr "Is Object"
+
+#. module: base
+#: field:res.partner.category,name:0
+msgid "Category Name"
+msgstr "Category Name"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_15
+msgid "IT sector"
+msgstr "IT sector"
+
+#. module: base
+#: view:res.lang:0
+msgid "%X - Appropriate time representation."
+msgstr "%X - Appropriate time representation."
+
+#. module: base
+#: view:res.company:0
+msgid "Your Logo - Use a size of about 450x150 pixels."
+msgstr "Your Logo - Use a size of about 450x150 pixels."
+
+#. 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 "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."
+
+#. module: base
+#: selection:ir.report.custom,print_orientation:0
+msgid "Portrait"
+msgstr "Portrait"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Slovak Language / Slovenský jazyk"
+msgstr "Slovak Language / Slovenský jazyk"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Button"
+msgstr "Wizard Button"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIRECTORY"
+msgstr "STOCK_DIRECTORY"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_customer_form_new
+#: model:ir.ui.menu,name:base.menu_partner_customer_form_new
+msgid "New Partner"
+msgstr "New Partner"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_server
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.server"
+msgstr "ir.actions.server"
+
+#. module: base
+#: view:ir.actions.report.custom:0
+msgid "Report custom"
+msgstr "Report custom"
+
+#. module: base
+#: field:ir.actions.configuration.wizard,progress:0
+msgid "Configuration Progress"
+msgstr "Configuration Progress"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_11
+msgid "Configuration Wizards"
+msgstr "Configuration Wizards"
+
+#. module: base
+#: field:workflow.activity,split_mode:0
+msgid "Split Mode"
+msgstr "Split Mode"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_localisation
+msgid "Localisation"
+msgstr "Localisation"
+
+#. module: base
+#: selection:res.config.view,view:0
+msgid "Simplified Interface"
+msgstr "Simplified Interface"
+
+#. module: base
+#: model:res.country,name:base.cl
+msgid "Chile"
+msgstr "Chile"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REVERT_TO_SAVED"
+msgstr "STOCK_REVERT_TO_SAVED"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_lang_import
+#: model:ir.ui.menu,name:base.menu_wizard_lang_import
+msgid "Import a Translation File"
+msgstr "Import a Translation File"
+
+#. module: base
+#: help:ir.values,model_id:0
+msgid "This field is not used, it only helps you to select a good model."
+msgstr "This field is not used, it only helps you to select a good model."
+
+#. module: base
+#: field:ir.ui.view,name:0
+msgid "View Name"
+msgstr "View Name"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Italian / Italiano"
+msgstr "Italian / Italiano"
+
+#. module: base
+#: field:ir.actions.report.xml,attachment:0
+msgid "Save As Attachment Prefix"
+msgstr "Save As Attachment Prefix"
+
+#. 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 "Only one client action will be executed, last client action will be considered in case of multiple client actions."
+
+#. module: base
+#: model:res.country,name:base.hr
+msgid "Croatia"
+msgstr "Croatia"
+
+#. module: base
+#: field:ir.actions.server,mobile:0
+msgid "Mobile No"
+msgstr "Mobile No"
+
+#. 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 "Partner Categories"
+
+#. module: base
+#: field:ir.sequence,code:0
+#: field:ir.sequence.type,code:0
+msgid "Sequence Code"
+msgstr "Sequence Code"
+
+#. module: base
+#: selection:ir.report.custom,print_format:0
+msgid "a5"
+msgstr "a5"
+
+#. module: base
+#: model:res.country,name:base.sc
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank
+#: view:res.partner.bank:0
+msgid "Bank Accounts"
+msgstr "Bank Accounts"
+
+#. module: base
+#: model:res.country,name:base.sl
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. module: base
+#: view:res.company:0
+#: view:res.partner:0
+msgid "General Information"
+msgstr "General Information"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-product"
+msgstr "terp-product"
+
+#. module: base
+#: model:res.country,name:base.tc
+msgid "Turks and Caicos Islands"
+msgstr "Turks and Caicos Islands"
+
+#. module: base
+#: field:res.partner.bank,owner_name:0
+msgid "Account Owner"
+msgstr "Account Owner"
+
+#. module: base
+#: field:workflow,osv:0
+#: field:workflow.instance,res_type:0
+msgid "Resource Object"
+msgstr "Resource Object"
+
+#. module: base
+#: field:ir.cron,function:0
+#: field:res.partner.address,function:0
+#: selection:workflow.activity,kind:0
+msgid "Function"
+msgstr "Function"
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Delivery"
+msgstr "Delivery"
+
+#. module: base
+#: field:ir.attachment,preview:0
+msgid "Image Preview"
+msgstr "Image Preview"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_pvt_ltd
+msgid "Corp."
+msgstr "Corp."
+
+#. module: base
+#: model:res.country,name:base.gw
+msgid "Guinea Bissau"
+msgstr "Guinea Bissau"
+
+#. module: base
+#: view:workflow.instance:0
+msgid "Workflow Instances"
+msgstr "Workflow Instances"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Partners: "
+msgstr "Partners: "
+
+#. module: base
+#: model:res.country,name:base.kp
+msgid "North Korea"
+msgstr "North Korea"
+
+#. module: base
+#: view:ir.report.custom:0
+msgid "Unsubscribe Report"
+msgstr "Unsubscribe Report"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Create Object"
+msgstr "Create Object"
+
+#. module: base
+#: field:res.bank,bic:0
+msgid "BIC/Swift code"
+msgstr "BIC/Swift code"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_1
+msgid "Prospect"
+msgstr "Prospect"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Polish / Język polski"
+msgstr "Polish / Język polski"
+
+#. module: base
+#: field:ir.exports,name:0
+msgid "Export Name"
+msgstr "Export Name"
+
+#. 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 "Used to select automatically the right address according to the context in sales and purchases documents."
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+msgid "Choose a language to install:"
+msgstr "Choose a language to install:"
+
+#. module: base
+#: model:res.country,name:base.lk
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Russian / русский язык"
+msgstr "Russian / русский язык"
+

=== modified file 'bin/addons/base/i18n/base.pot'
--- bin/addons/base/i18n/base.pot	2010-10-18 18:05:35 +0000
+++ bin/addons/base/i18n/base.pot	2010-10-25 14:08:46 +0000
@@ -4,14 +4,24 @@
 #
 msgid ""
 msgstr ""
+<<<<<<< TREE
 "Project-Id-Version: OpenERP Server 6.0dev\n"
+=======
+"Project-Id-Version: OpenERP Server 5.0.12\n"
+>>>>>>> MERGE-SOURCE
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+<<<<<<< TREE
 "POT-Creation-Date: 2010-10-18 17:46:15+0000\n"
 "PO-Revision-Date: 2010-10-18 17:46:15+0000\n"
+=======
+"POT-Creation-Date: 2010-09-02 14:06:04+0000\n"
+"PO-Revision-Date: 2010-09-02 14:06:04+0000\n"
+>>>>>>> MERGE-SOURCE
 "Last-Translator: <>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
+<<<<<<< TREE
 "Content-Transfer-Encoding: \n"
 "Plural-Forms: \n"
 
@@ -23,6 +33,10 @@
 #: field:res.partner.title,domain:0
 msgid "Domain"
 msgstr ""
+=======
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+>>>>>>> MERGE-SOURCE
 
 #. module: base
 #: model:res.country,name:base.sh
@@ -103,6 +117,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.ui.menu,icon:0
 msgid "terp-emblem-important"
 msgstr ""
@@ -113,11 +128,40 @@
 msgstr ""
 
 #. module: base
+=======
+#: view:workflow.activity:0
+msgid "Outgoing transitions"
+msgstr ""
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Yearly"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:ir.actions.act_window,target:0
 msgid "Target Window"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: model:ir.actions.todo,note:base.config_wizard_simple_view
+msgid "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+msgstr ""
+
+#. module: base
+#: field:ir.rule,operand:0
+msgid "Operand"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.kr
 msgid "South Korea"
 msgstr ""
@@ -161,6 +205,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:res.partner:0
 msgid "Search Partner"
 msgstr ""
@@ -173,6 +218,14 @@
 
 #. module: base
 #: code:addons/base/module/wizard/base_export_language.py:0
+=======
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NO"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "new"
 msgstr ""
@@ -208,7 +261,11 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/module/wizard/base_export_language.py:0
+=======
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+>>>>>>> MERGE-SOURCE
 #, 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 ""
@@ -219,6 +276,21 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password mismatch !"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "This url '%s' must provide an html file with links to zip modules"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: selection:res.request,state:0
 msgid "active"
 msgstr ""
@@ -341,6 +413,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "Serbian / Serbia"
 msgstr ""
@@ -348,6 +421,10 @@
 #. module: base
 #: help:res.lang,iso_code:0
 msgid "This ISO code is the name of po files to use for translations"
+=======
+#: 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."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -398,6 +475,11 @@
 msgstr ""
 
 #. module: base
+#: view:ir.values:0
+msgid "Action To Launch"
+msgstr ""
+
+#. module: base
 #: view:res.partner:0
 msgid "Sales & Purchases"
 msgstr ""
@@ -476,8 +558,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.module.module:0
 msgid "Certified"
+=======
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not remove the model '%s' !"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -668,6 +756,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.module.module,license:0
 msgid "Other OSI Approved Licence"
 msgstr ""
@@ -676,6 +765,15 @@
 #: 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"
+=======
+#: selection:ir.module.module,license:0
+msgid "Other OSI Approved Licence"
+msgstr ""
+
+#. module: base
+#: help:ir.values,action_id:0
+msgid "This field is not used, it only helps you to select the right action."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -789,6 +887,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: field:ir.module.module,contributors:0
 msgid "Contributors"
 msgstr ""
@@ -800,6 +899,20 @@
 
 #. module: base
 #: selection:base.language.install,lang:0
+=======
+#: field:ir.sequence,name:0
+#: field:ir.sequence.type,name:0
+msgid "Sequence Name"
+msgstr ""
+
+#. module: base
+#: model:res.country,name:base.td
+msgid "Chad"
+msgstr ""
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+>>>>>>> MERGE-SOURCE
 msgid "Spanish (AR) / Español (AR)"
 msgstr ""
 
@@ -835,7 +948,21 @@
 
 #. 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."
+<<<<<<< TREE
+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."
+=======
+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:res.partner.event,planned_cost:0
+msgid "Planned Cost"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_config
+msgid "ir.model.config"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -875,6 +1002,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.ui.view:0
 #: selection:ir.ui.view,type:0
 msgid "Search"
@@ -887,6 +1015,26 @@
 
 #. module: base
 #: help:base.language.export,lang:0
+=======
+#: selection:ir.translation,type:0
+msgid "RML"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_category
+#: model:ir.ui.menu,name:base.menu_partner_category_main
+msgid "Partners by Categories"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Pie charts need exactly two fields"
+msgstr ""
+
+#. module: base
+#: help:wizard.module.lang.export,lang:0
+>>>>>>> MERGE-SOURCE
 msgid "To export a new language, do not select a language."
 msgstr ""
 
@@ -952,20 +1100,41 @@
 
 #. module: base
 #: help:ir.actions.server,email:0
+<<<<<<< TREE
 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
 #: report:ir.module.reference.graph: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
+#: field:res.roles,name:0
+msgid "Role Name"
+msgstr ""
+
+#. module: base
+#: field:res.partner,user_id:0
+msgid "Dedicated Salesman"
+msgstr ""
+
+#. module: base
+#: rml:ir.module.reference:0
+>>>>>>> MERGE-SOURCE
 msgid "-"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:wizard.ir.model.menu.create:0
 msgid "Create _Menu"
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: field:res.payterm,name:0
 msgid "Payment Term (short name)"
 msgstr ""
@@ -1080,19 +1249,40 @@
 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"
+<<<<<<< TREE
+#: 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"
+=======
+#: 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
+#: view:ir.rule:0
+msgid "Simple domain setup"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -1167,12 +1357,15 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/res/res_company.py:0
 #, python-format
 msgid " (copy)"
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: view:res.lang:0
 msgid "7.  %H:%M:%S      ==> 18:25:20"
 msgstr ""
@@ -1276,6 +1469,7 @@
 
 #. module: base
 #: view:res.lang:0
+<<<<<<< TREE
 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 ""
 
@@ -1299,6 +1493,14 @@
 #. module: base
 #: model:res.country,name:base.fi
 msgid "Finland"
+=======
+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
+#: wizard_view:module.lang.install,init:0
+msgid "Note that this operation may take a few minutes."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -1323,6 +1525,7 @@
 #. module: base
 #: help:res.config.users,password:0
 #: help:res.users,password:0
+<<<<<<< TREE
 msgid "Keep empty if you don't want the user to be able to connect on the system."
 msgstr ""
 
@@ -1334,6 +1537,9 @@
 #. module: base
 #: view:base.language.export:0
 msgid "https://help.launchpad.net/Translations";
+=======
+msgid "Keep empty if you don't want the user to be able to connect on the system."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -1342,6 +1548,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: 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 ""
@@ -1355,6 +1562,9 @@
 
 #. module: base
 #: selection:base.language.install,lang:0
+=======
+#: selection:module.lang.install,init,lang:0
+>>>>>>> MERGE-SOURCE
 msgid "Spanish / Español"
 msgstr ""
 
@@ -1395,7 +1605,16 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/res/partner/partner.py:0
+<<<<<<< TREE
+#: code:addons/base/res/partner/partner.py:0
+=======
+#: selection:res.partner.event,partner_type:0
+msgid "Commercial Prospect"
+msgstr ""
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Couldn't generate the next id because some partners have an alphabetic id !"
 msgstr ""
@@ -1416,6 +1635,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:workflow.activity:0
 msgid "Workflow Activity"
 msgstr ""
@@ -1431,6 +1651,8 @@
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: field:ir.actions.act_window,groups_id:0
 #: model:ir.actions.act_window,name:base.action_res_groups
 #: view:ir.actions.report.xml:0
@@ -1488,13 +1710,30 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:ir.model,name:base.model_ir_sequence
 msgid "ir.sequence"
+=======
+#: view:wizard.module.update_translations:0
+msgid "This wizard will detect new terms in the application so that you can update them manually."
+>>>>>>> MERGE-SOURCE
 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`."
+<<<<<<< TREE
+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`."
+=======
+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.model,name:0
+#: field:ir.model.fields,model:0
+#: field:ir.model.grid,name:0
+#: field:ir.values,model:0
+msgid "Object Name"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -1513,8 +1752,8 @@
 msgstr ""
 
 #. module: base
-#: selection:ir.ui.menu,icon:0
-msgid "STOCK_NO"
+#: model:ir.model,name:base.model_ir_report_custom_fields
+msgid "ir.report.custom.fields"
 msgstr ""
 
 #. module: base
@@ -1550,8 +1789,13 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: field:ir.actions.configuration.wizard,note:0
 msgid "Next Wizard"
+=======
+#: help:ir.rule.group,global:0
+msgid "Make the rule global, otherwise it needs to be put on a group"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -1572,8 +1816,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.ui.menu,icon:0
 msgid "terp-camera_test"
+=======
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Make sure you have no users linked with the group(s)!"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -1593,6 +1843,20 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: field:ir.model.config,password_check:0
+msgid "Confirmation"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Enter at least one field !"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:ir.ui.view_sc,name:0
 msgid "Shortcut Name"
 msgstr ""
@@ -1628,12 +1892,16 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "French (BE) / Français (BE)"
 msgstr ""
 
 #. module: base
 #: code:addons/base/ir/ir_model.py:0
+=======
+#: code:addons/base/ir/ir_model.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "You can not write in this document! (%s)"
 msgstr ""
@@ -1810,7 +2078,17 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:0
+<<<<<<< TREE
+#: code:addons/base/module/module.py:0
+=======
+#: model:ir.actions.act_window,name:base.action_partner_other_form
+#: model:ir.ui.menu,name:base.menu_partner_other_form
+msgid "Others Partners"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Can not upgrade module '%s'. It is not installed."
 msgstr ""
@@ -1831,9 +2109,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:ir.actions.act_window,name:base.ir_property_form
 #: model:ir.ui.menu,name:base.menu_ir_property_form_all
 msgid "Configuration Parameters"
+=======
+#: selection:ir.report.custom,frequency:0
+msgid "Daily"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2156,7 +2439,16 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/maintenance/maintenance.py:0
+<<<<<<< TREE
+#: code:addons/base/maintenance/maintenance.py:0
+=======
+#: wizard_view:module.lang.import,init:0
+msgid "You can also import .po files."
+msgstr ""
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Unable to find a valid contract"
 msgstr ""
@@ -2183,12 +2475,17 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: 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"
+=======
+#: wizard_view:module.lang.import,init:0
+msgid "Import language"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2206,6 +2503,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: help:ir.property,res_id:0
 msgid "If not set, acts as a default value for new resources"
 msgstr ""
@@ -2213,6 +2511,10 @@
 #. module: base
 #: selection:ir.ui.menu,icon:0
 msgid "STOCK_SAVE"
+=======
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2238,12 +2540,32 @@
 
 #. module: base
 #: help:res.partner,vat:0
+<<<<<<< TREE
 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
 #: selection:base.language.install,lang:0
 msgid "Ukrainian / украї́нська мо́ва"
+=======
+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.actions.act_window,name:base.action_module_category_tree
+#: model:ir.ui.menu,name:base.menu_action_module_category_tree
+msgid "Categories of Modules"
+msgstr ""
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Ukrainian / украї́нська мо́ва"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Not Started"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2252,8 +2574,22 @@
 msgstr ""
 
 #. module: base
-#: field:res.company,name:0
-msgid "Company Name"
+<<<<<<< TREE
+#: field:res.company,name:0
+msgid "Company Name"
+=======
+#: field:res.company,name:0
+msgid "Company Name"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_roles_form
+#: model:ir.ui.menu,name:base.menu_action_res_roles_form
+#: view:res.roles:0
+#: view:res.users:0
+#: field:res.users,roles_id:0
+msgid "Roles"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2309,11 +2645,41 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: help:ir.module.repository,filter:0
+msgid "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+msgstr ""
+
+#. module: base
+#: view:res.lang:0
+msgid "%M - Minute as a decimal number [00,59]."
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.tj
 msgid "Tajikistan"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: help:ir.actions.report.xml,header:0
+msgid "Add or not the coporate RML header"
+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 "Connect Actions To Client Events"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: selection:ir.module.module,license:0
 msgid "GPL-2 or later version"
 msgstr ""
@@ -2483,8 +2849,13 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/module/wizard/base_export_language.py:0
+=======
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
+<<<<<<< TREE
 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 ""
 
@@ -2494,6 +2865,9 @@
 #: model:ir.ui.menu,name:base.menu_partner_form
 #: view:res.partner:0
 msgid "Customers"
+=======
+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."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2550,7 +2924,15 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.model.fields:0
+=======
+#: help:res.partner.bank,acc_number:0
+msgid "Bank account number"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:ir.model.fields,required:0
 #: field:res.partner.bank.type.field,required:0
 msgid "Required"
@@ -2597,7 +2979,16 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: field:base.module.import,module_file:0
+=======
+#: 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
+#: wizard_field:base.module.import,init,module_file:0
+>>>>>>> MERGE-SOURCE
 msgid "Module .ZIP file"
 msgstr ""
 
@@ -2651,7 +3042,16 @@
 #. module: base
 #: code:addons/base/module/module.py:0
 #, python-format
-msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+<<<<<<< TREE
+msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+=======
+msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr ""
+
+#. module: base
+#: view:res.partner.address:0
+msgid "Partner Address"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2660,11 +3060,21 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Invalid operation"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: selection:ir.ui.menu,icon:0
 msgid "STOCK_SAVE_AS"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.actions.todo,restart:0
 msgid "Always"
 msgstr ""
@@ -2675,13 +3085,26 @@
 msgstr ""
 
 #. module: base
+=======
+#: selection:ir.translation,type:0
+msgid "SQL Constraint"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:ir.actions.server,srcmodel_id:0
 msgid "Model"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: 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."
+=======
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2752,6 +3175,11 @@
 msgstr ""
 
 #. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Finland / Suomi"
+msgstr ""
+
+#. module: base
 #: model:res.country,name:base.bo
 msgid "Bolivia"
 msgstr ""
@@ -2794,12 +3222,16 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "Urdu / Pakistan"
 msgstr ""
 
 #. module: base
 #: code:addons/base/module/module.py:0
+=======
+#: code:addons/base/module/module.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "You try to remove a module that is installed or will be installed"
 msgstr ""
@@ -2871,6 +3303,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:res.partner.event:0
 msgid "Event"
 msgstr ""
@@ -2888,6 +3321,10 @@
 #. module: base
 #: view:ir.property:0
 msgid "Generic"
+=======
+#: view:res.config.view:0
+msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -2991,8 +3428,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:res.widget,title:base.openerp_twitter_favorites
 msgid "OpenERP Favorites"
+=======
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Using a relation field which uses an unknown object"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -3060,11 +3503,19 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "Albanian / Shqipëri"
 msgstr ""
 
 #. module: base
+=======
+#: selection:module.lang.install,init,lang:0
+msgid "Albanian / Shqipëri"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.sy
 msgid "Syria"
 msgstr ""
@@ -3128,6 +3579,7 @@
 #. module: base
 #: help:ir.actions.act_window.view,multi:0
 #: help:ir.actions.report.xml,multi:0
+<<<<<<< TREE
 msgid "If set to true, the action will not be displayed on the right toolbar of a form view."
 msgstr ""
 
@@ -3139,6 +3591,9 @@
 #. module: base
 #: model:res.country,name:base.al
 msgid "Albania"
+=======
+msgid "If set to true, the action will not be displayed on the right toolbar of a form view."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -3237,12 +3692,16 @@
 
 #. module: base
 #: help:res.partner,user_id:0
+<<<<<<< TREE
 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"
+=======
+msgid "The internal user that is in charge of communicating with this partner if any."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -3351,8 +3810,18 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "English (CA)"
+=======
+#: field:res.partner.event,planned_revenue:0
+msgid "Planned Revenue"
+msgstr ""
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "You have to import a .CSV file wich is encoded in UTF-8.  Please check that the first line of your file is one of the following:"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -3396,6 +3865,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:res.config:0
 #: view:res.config.installer:0
 msgid "title"
@@ -3412,6 +3882,14 @@
 msgstr ""
 
 #. module: base
+=======
+#: code:addons/base/ir/ir_model.py:0
+#, 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
+>>>>>>> MERGE-SOURCE
 #: selection:ir.ui.menu,icon:0
 msgid "STOCK_DIALOG_WARNING"
 msgstr ""
@@ -3539,7 +4017,16 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/res/res_lang.py:0
+=======
+#: field:ir.report.custom.fields,cumulate:0
+msgid "Accumulate"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "User Error"
 msgstr ""
@@ -3592,11 +4079,13 @@
 
 #. module: base
 #: model:ir.model,name:base.model_res_partner_address
+#: model:ir.ui.menu,name:base.menu_partner_address_form
 #: view:res.partner.address:0
 msgid "Partner Addresses"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.ui.menu,icon:0
 msgid "terp-gtk-stop"
 msgstr ""
@@ -3607,6 +4096,13 @@
 msgstr ""
 
 #. module: base
+=======
+#: selection:module.lang.install,init,lang:0
+msgid "Indonesian / Bahasa Indonesia"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.cv
 msgid "Cape Verde"
 msgstr ""
@@ -3652,6 +4148,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:res.currency:0
 msgid "Price Accuracy"
 msgstr ""
@@ -3676,6 +4173,15 @@
 #. module: base
 #: selection:ir.ui.menu,icon:0
 msgid "terp-idea"
+=======
+#: field:workflow.transition,role_id:0
+msgid "Role Required"
+msgstr ""
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Menus"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -3715,6 +4221,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.rule:0
 msgid "Combination of rules"
 msgstr ""
@@ -3725,6 +4232,13 @@
 msgstr ""
 
 #. module: base
+=======
+#: view:ir.sequence:0
+msgid "Current Year without Century: %(y)s"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: selection:ir.ui.menu,icon:0
 msgid "terp-mrp"
 msgstr ""
@@ -3998,6 +4512,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.translation:0
 msgid "Source Term"
 msgstr ""
@@ -4036,6 +4551,24 @@
 msgstr ""
 
 #. module: base
+=======
+#: model:ir.model,name:base.model_ir_translation
+msgid "ir.translation"
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule_group
+msgid "ir.rule.group"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_install
+#: model:ir.ui.menu,name:base.menu_module_tree_install
+msgid "Installed modules"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.lc
 msgid "Saint Lucia"
 msgstr ""
@@ -4143,11 +4676,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:ir.model,name:base.model_res_widget_user
 msgid "res.widget.user"
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: field:res.partner.category,complete_name:0
 msgid "Full Name"
 msgstr ""
@@ -4296,6 +4832,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/ir/ir_actions.py:0
 #: code:addons/base/ir/ir_model.py:0
 #: code:addons/base/maintenance/maintenance.py:0
@@ -4305,6 +4842,21 @@
 #: code:addons/base/res/res_user.py:0
 #, python-format
 msgid "Error"
+=======
+#: code:addons/base/ir/ir_actions.py:0
+#: code:addons/base/ir/ir_model.py:0
+#: code:addons/base/maintenance/maintenance.py:0
+#: code:addons/base/module/module.py:0
+#: code:addons/base/res/res_currency.py:0
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: base
+#: view:res.partner.som:0
+msgid "Partner State of Mind"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -4318,12 +4870,22 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:base.language.install:0
 #: view:base.module.import:0
 #: view:base.module.update:0
 #: view:res.request:0
+=======
+#: wizard_button:base.module.import,import,open_window:0
+#: wizard_button:module.upgrade,end,end:0
+#: wizard_button:module.upgrade,start,end:0
+>>>>>>> MERGE-SOURCE
 #: wizard_button:server.action.create,init,end:0
 #: wizard_button:server.action.create,step_1,end:0
+<<<<<<< TREE
+=======
+#: view:wizard.module.lang.export:0
+>>>>>>> MERGE-SOURCE
 msgid "Close"
 msgstr ""
 
@@ -4547,6 +5109,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,state:0
 #: selection:base.module.import,state:0
 #: selection:base.module.update,state:0
@@ -4554,6 +5117,13 @@
 msgstr ""
 
 #. module: base
+=======
+#: field:workflow.instance,uid:0
+msgid "User ID"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: view:res.lang:0
 msgid "11. %U or %W       ==> 48 (49th week)"
 msgstr ""
@@ -4585,7 +5155,18 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: report:ir.module.reference.graph:0
+=======
+#: field:ir.report.custom.fields,fc1_condition:0
+#: field:ir.report.custom.fields,fc2_condition:0
+#: field:ir.report.custom.fields,fc3_condition:0
+msgid "condition"
+msgstr ""
+
+#. module: base
+#: rml:ir.module.reference:0
+>>>>>>> MERGE-SOURCE
 msgid "1cm 28cm 20cm 28cm"
 msgstr ""
 
@@ -4620,19 +5201,27 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "French (CH) / Français (CH)"
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: selection:ir.ui.menu,icon:0
 msgid "STOCK_NEW"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: 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."
+=======
+#: selection:ir.report.custom.fields,operation:0
+msgid "None"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -4646,6 +5235,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/res/res_config.py:0
 #, python-format
 msgid "Can't set an ir.actions.todo's state to \"\n"
@@ -4653,6 +5243,8 @@
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: view:ir.values:0
 msgid "Connect Events to Actions"
 msgstr ""
@@ -4750,12 +5342,16 @@
 
 #. module: base
 #: help:ir.actions.report.xml,attachment:0
+<<<<<<< TREE
 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"
+=======
+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."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -4850,6 +5446,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: field:res.widget,content:0
 msgid "Content"
 msgstr ""
@@ -4862,6 +5459,17 @@
 #. module: base
 #: model:res.country,name:base.td
 msgid "Chad"
+=======
+#: wizard_view:module.lang.install,start:0
+msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes."
+msgstr ""
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_event_type
+#: model:ir.ui.menu,name:base.next_id_14
+#: view:res.partner.event:0
+msgid "Partner Events"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -4885,6 +5493,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:res.country,name:base.dm
 msgid "Dominica"
 msgstr ""
@@ -4898,6 +5507,16 @@
 #: help:res.config.users,view:0
 #: help:res.users,view:0
 msgid "Choose between the simplified interface and the extended one"
+=======
+#: model:res.country,name:base.dm
+msgid "Dominica"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard
+#: wizard_button:res.partner.sms_send,init,send:0
+msgid "Send SMS"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -4936,7 +5555,22 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/module/module.py:0
+<<<<<<< TREE
+#: code:addons/base/module/module.py:0
+=======
+#: selection:ir.translation,type:0
+#: field:res.bank,code:0
+#: field:res.currency,code:0
+#: field:res.lang,code:0
+#: field:res.partner,ref:0
+#: field:res.partner.bank.type,code:0
+#: field:res.partner.function,code:0
+msgid "Code"
+msgstr ""
+
+#. module: base
+#: code:addons/base/module/module.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Can not create the module file:\n %s"
 msgstr ""
@@ -5094,6 +5728,15 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify the Partner Email address !"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.ae
 msgid "United Arab Emirates"
 msgstr ""
@@ -5119,9 +5762,13 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.model.access:0
 #: view:ir.rule:0
 #: field:ir.rule,global:0
+=======
+#: field:ir.rule.group,global:0
+>>>>>>> MERGE-SOURCE
 msgid "Global"
 msgstr ""
 
@@ -5286,9 +5933,19 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/res/res_config.py:0
 #, python-format
 msgid "Couldn't find previous ir.actions.todo"
+=======
+#: view:wizard.module.lang.export:0
+msgid "Get file"
+msgstr ""
+
+#. module: base
+#: wizard_view:module.module.update,init:0
+msgid "This function will check for new modules in the 'addons' path and on module repositories:"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -5297,6 +5954,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.actions.act_window:0
 msgid "General Settings"
 msgstr ""
@@ -5304,6 +5962,11 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_administration_shortcut
 msgid "Custom Shortcuts"
+=======
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "AccessError"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -5322,8 +5985,13 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "Inuktitut / Canada"
+=======
+#: view:ir.actions.act_window:0
+msgid "Security (Groups)"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -5355,6 +6023,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:ir.model,name:base.model_res_widget
 msgid "res.widget"
 msgstr ""
@@ -5371,6 +6040,8 @@
 msgstr ""
 
 #. module: base
+=======
+>>>>>>> MERGE-SOURCE
 #: view:ir.actions.server:0
 #: field:ir.actions.server,code:0
 #: selection:ir.actions.server,state:0
@@ -5378,7 +6049,11 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/module/wizard/base_module_import.py:0
+=======
+#: code:addons/base/module/wizard/wizard_module_import.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Can not create the module file: %s !"
 msgstr ""
@@ -5389,6 +6064,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:base.language.install:0
 #: view:base.module.import:0
 #: view:base.module.update:0
@@ -5397,11 +6073,34 @@
 #: view:partner.clear.ids:0
 #: view:partner.sms.send:0
 #: view:partner.wizard.spam:0
+=======
+#: model:ir.actions.act_window,name:base.action_partner_customer_form
+#: model:ir.ui.menu,name:base.menu_partner_customer_form
+msgid "Customers Partners"
+msgstr ""
+
+#. module: base
+#: wizard_button:base.module.import,init,end:0
+#: selection:ir.actions.todo,state:0
+#: wizard_button:module.lang.import,init,end:0
+#: wizard_button:module.lang.install,init,end:0
+#: wizard_button:module.module.update,init,end:0
+#: wizard_button:module.upgrade,next,end:0
+#: wizard_button:res.partner.sms_send,init,end:0
+#: wizard_button:res.partner.spam_send,init,end:0
+#: view:wizard.ir.model.menu.create:0
+#: view:wizard.module.lang.export:0
+#: view:wizard.module.update_translations:0
+>>>>>>> MERGE-SOURCE
 msgid "Cancel"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.export,format:0
+=======
+#: selection:wizard.module.lang.export,format:0
+>>>>>>> MERGE-SOURCE
 msgid "PO File"
 msgstr ""
 
@@ -5483,12 +6182,30 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: model:ir.actions.act_window,name:base.action_maintenance_contract_form
+#: model:ir.ui.menu,name:base.menu_maintenance_contract
+msgid "Your Maintenance Contracts"
+msgstr ""
+
+#. module: base
+#: view:res.users:0
+msgid "Please note that you will have to logout and relog if you change your password."
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.gy
 msgid "Guyana"
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
+=======
+#: selection:module.lang.install,init,lang:0
+>>>>>>> MERGE-SOURCE
 msgid "Portugese (BR) / português (BR)"
 msgstr ""
 
@@ -5525,6 +6242,7 @@
 
 #. module: base
 #: help:ir.actions.server,model_id:0
+<<<<<<< TREE
 msgid "Select the object on which the action will work (read, write, create)."
 msgstr ""
 
@@ -5542,6 +6260,15 @@
 #. module: base
 #: selection:ir.property,type:0
 msgid "Boolean"
+=======
+msgid "Select the object on which the action will work (read, write, create)."
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify server option --email-from !"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -5680,6 +6407,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: 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."
@@ -5712,6 +6440,13 @@
 msgstr ""
 
 #. module: base
+=======
+#: model:ir.model,name:base.model_ir_ui_view
+msgid "ir.ui.view"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: wizard_button:server.action.create,step_1,create:0
 msgid "Create"
 msgstr ""
@@ -5753,7 +6488,11 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/module/wizard/base_module_import.py:0
+=======
+#: code:addons/base/module/wizard/wizard_module_import.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Error !"
 msgstr ""
@@ -5780,6 +6519,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: selection:ir.actions.todo,start_on:0
+msgid "Manual"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:res.bank,fax:0
 #: field:res.partner.address,fax:0
 msgid "Fax"
@@ -6024,6 +6771,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: field:res.config.users,email:0
 #: field:res.partner,email:0
 #: field:res.users,email:0
@@ -6032,6 +6780,9 @@
 
 #. module: base
 #: selection:base.language.install,lang:0
+=======
+#: selection:module.lang.install,init,lang:0
+>>>>>>> MERGE-SOURCE
 msgid "Portugese / português"
 msgstr ""
 
@@ -6046,6 +6797,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "English (US)"
 msgstr ""
@@ -6067,6 +6819,18 @@
 #: field:res.config.users,address_id:0
 #: view:res.partner.address:0
 #: view:res.users:0
+=======
+#: field:res.partner.event,probability:0
+msgid "Probability (0.50)"
+msgstr ""
+
+#. module: base
+#: field:ir.report.custom,repeat_header:0
+msgid "Repeat Header"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:res.users,address_id:0
 msgid "Address"
 msgstr ""
@@ -6179,6 +6943,16 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: wizard_button:module.lang.import,init,finish:0
+#: wizard_button:module.lang.install,start,end:0
+#: wizard_button:module.module.update,update,open_window:0
+msgid "Ok"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.mq
 msgid "Martinique (French)"
 msgstr ""
@@ -6239,6 +7013,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:base.module.import:0
 #: view:base.module.update:0
 msgid "Open Modules"
@@ -6246,6 +7021,9 @@
 
 #. module: base
 #: code:addons/base/maintenance/maintenance.py:0
+=======
+#: code:addons/base/maintenance/maintenance.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "This error occurs on database %s"
 msgstr ""
@@ -6327,8 +7105,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: field:workflow.transition,group_id:0
 msgid "Group Required"
+=======
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Field %d should be a figure"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -6389,8 +7173,13 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:res.partner.title,shortcut:base.res_partner_title_miss
 msgid "Mss"
+=======
+#: view:wizard.module.lang.export:0
+msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -6576,6 +7365,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.module.module,license:0
 msgid "GPL Version 2"
 msgstr ""
@@ -6593,6 +7383,43 @@
 #. module: base
 #: model:ir.ui.menu,name:base.menu_audit
 msgid "Audit"
+=======
+#: selection:ir.actions.report.xml,report_type:0
+msgid "sxw"
+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
+#: field:ir.actions.report.xml,auto:0
+msgid "Automatic XSL:RML"
+msgstr ""
+
+#. module: base
+#: view:ir.rule:0
+msgid "Manual domain setup"
+msgstr ""
+
+#. module: base
+#: field:res.partner,customer:0
+#: model:res.partner.category,name:base.res_partner_category_0
+#: selection:res.partner.event,partner_type:0
+msgid "Customer"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.custom,name:0
+#: field:ir.report.custom,name:0
+msgid "Report Name"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -6661,10 +7488,16 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: 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"
+=======
+#: help:ir.cron,numbercall:0
+msgid "Number of time the function is called,\n"
+"a negative number indicates that the function will always be called"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -6862,6 +7695,11 @@
 msgstr ""
 
 #. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Galician / Galego"
+msgstr ""
+
+#. module: base
 #: model:res.country,name:base.no
 msgid "Norway"
 msgstr ""
@@ -6914,12 +7752,16 @@
 
 #. module: base
 #: help:ir.actions.wizard,multi:0
+<<<<<<< TREE
 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"
+=======
+msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view."
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -7288,6 +8130,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: help:ir.actions.report.xml,report_rml:0
+msgid "The .rml path of the file or NULL if the content is in report_rml_content"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:res.partner.bank,acc_number:0
 msgid "Account Number"
 msgstr ""
@@ -7298,6 +8148,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: 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, Open ERP will compute visibility based on the related object's read access."
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.nc
 msgid "New Caledonia (French)"
 msgstr ""
@@ -7352,6 +8210,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: help:ir.cron,function:0
 msgid "Name of the method to be called on the object when this scheduler is executed."
 msgstr ""
@@ -7369,6 +8228,21 @@
 #. module: base
 #: field:ir.attachment,url:0
 msgid "Url"
+=======
+#: model:res.company,overdue_msg:base.main_company
+msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department"
+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
+#: view:workflow.activity:0
+msgid "Incoming transitions"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -7377,6 +8251,15 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password empty !"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.eh
 msgid "Western Sahara"
 msgstr ""
@@ -7636,6 +8519,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.ui.menu,icon:0
 msgid "terp-call-start"
 msgstr ""
@@ -7651,6 +8535,24 @@
 msgstr ""
 
 #. module: base
+=======
+#: view:wizard.module.lang.export:0
+msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts."
+msgstr ""
+
+#. module: base
+#: field:ir.actions.report.xml,report_rml:0
+msgid "RML path"
+msgstr ""
+
+#. module: base
+#: field:ir.actions.configuration.wizard,item_id:0
+msgid "Next Configuration Wizard"
+msgstr ""
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+>>>>>>> MERGE-SOURCE
 #: selection:res.partner.address,type:0
 msgid "Other"
 msgstr ""
@@ -7679,6 +8581,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:ir.ui.view,type:0
 msgid "Diagram"
 msgstr ""
@@ -7713,6 +8616,26 @@
 #: model:ir.ui.menu,name:base.menu_event_association
 #: model:ir.ui.menu,name:base.menu_event_main
 msgid "Events Organisation"
+=======
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+#: selection:ir.rule,operator:0
+msgid "="
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Second field should be figures"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_model_grid_security
+#: model:ir.ui.menu,name:base.menu_ir_access_grid
+msgid "Access Controls Grid"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -7750,8 +8673,8 @@
 msgstr ""
 
 #. module: base
-#: help:ir.actions.report.xml,header:0
-msgid "Add or not the coporate RML header"
+#: selection:module.lang.install,init,lang:0
+msgid "Latvian / Latviešu valoda"
 msgstr ""
 
 #. module: base
@@ -7791,11 +8714,19 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "Danish / Dansk"
 msgstr ""
 
 #. module: base
+=======
+#: selection:module.lang.install,init,lang:0
+msgid "Danish / Dansk"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: model:res.country,name:base.cx
 msgid "Christmas Island"
 msgstr ""
@@ -7816,6 +8747,18 @@
 msgstr ""
 
 #. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Model %s Does not Exist !\" % vals['relation']))\n"
+"\n"
+"            if self.pool.get(vals['model']):\n"
+"                self.pool.get(vals['model']).__init__(self.pool, cr)\n"
+"                #Added context to _auto_init for special treatment to custom field for select_level\n"
+"                ctx = context.copy()\n"
+"                ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0"
+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
@@ -7840,6 +8783,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: model:ir.model,name:base.model_partner_wizard_ean_check
 msgid "Ean Check"
 msgstr ""
@@ -7862,6 +8806,13 @@
 msgstr ""
 
 #. module: base
+=======
+#: selection:ir.model.fields,select_level:0
+msgid "Advanced Search"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: view:res.request:0
 msgid "Send"
 msgstr ""
@@ -7893,7 +8844,11 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: code:addons/base/module/wizard/base_export_language.py:0
+=======
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+>>>>>>> MERGE-SOURCE
 #, python-format
 msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad."
 msgstr ""
@@ -7936,6 +8891,15 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Bar charts need at least two fields"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: 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 ""
@@ -7998,6 +8962,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:base.module.upgrade:0
 msgid "The selected modules have been updated / installed !"
 msgstr ""
@@ -8015,6 +8980,22 @@
 #. 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"
+=======
+#: model:ir.actions.todo,note:base.config_wizard_step_user
+msgid "Create your users.\n"
+"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n"
+"            "
+msgstr ""
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "Low"
+msgstr ""
+
+#. module: base
+#: view:ir.values:0
+msgid "tree_but_action, client_print_multi"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -8138,9 +9119,25 @@
 msgstr ""
 
 #. module: base
-#: code:addons/base/ir/ir_model.py:0
-#, python-format
-msgid "You cannot remove the field '%s' !"
+<<<<<<< TREE
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You cannot remove the field '%s' !"
+=======
+#: field:ir.module.module,installed_version:0
+msgid "Latest version"
+msgstr ""
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You cannot remove the field '%s' !"
+msgstr ""
+
+#. module: base
+#: field:ir.report.custom,print_format:0
+msgid "Print format"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -8167,6 +9164,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: selection:base.language.install,lang:0
 msgid "Persian / فارس"
 msgstr ""
@@ -8182,13 +9180,33 @@
 msgstr ""
 
 #. module: base
+=======
+#: selection:module.lang.install,init,lang:0
+msgid "Persian / فارس"
+msgstr ""
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "center"
+msgstr ""
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country_state
+#: model:ir.ui.menu,name:base.menu_country_state_partner
+>>>>>>> MERGE-SOURCE
 #: field:maintenance.contract.wizard,state:0
 msgid "States"
 msgstr ""
 
+<<<<<<< TREE
 #. module: base
 #: model:ir.model,name:base.model_base_module_configuration
 msgid "base.module.configuration"
+=======
+#. module: base
+#: field:ir.actions.configuration.wizard,name:0
+msgid "Next Wizard"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base
@@ -8256,6 +9274,7 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
 #: view:ir.actions.todo:0
 msgid "Launch"
 msgstr ""
@@ -8266,6 +9285,13 @@
 msgstr ""
 
 #. module: base
+=======
+#: selection:module.lang.install,init,lang:0
+msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam"
+msgstr ""
+
+#. module: base
+>>>>>>> MERGE-SOURCE
 #: field:ir.actions.act_window,limit:0
 msgid "Limit"
 msgstr ""
@@ -8348,6 +9374,14 @@
 msgstr ""
 
 #. module: base
+<<<<<<< TREE
+=======
+#: 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
+>>>>>>> MERGE-SOURCE
 #: field:ir.model.data,noupdate:0
 msgid "Non Updatable"
 msgstr ""
@@ -8442,6 +9476,7 @@
 
 #. module: base
 #: help:res.lang,grouping:0
+<<<<<<< TREE
 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 ""
 
@@ -8452,10 +9487,22 @@
 
 #. module: base
 #: view:res.company: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
+#: selection:ir.report.custom,print_orientation:0
+>>>>>>> MERGE-SOURCE
 msgid "Portrait"
 msgstr ""
 
 #. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Slovak Language / Slovenský jazyk"
+msgstr ""
+
+#. module: base
 #: selection:ir.translation,type:0
 msgid "Wizard Button"
 msgstr ""
@@ -8722,7 +9769,16 @@
 
 #. 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."
+<<<<<<< TREE
+msgid "Used to select automatically the right address according to the context in sales and purchases documents."
+=======
+msgid "Used to select automatically the right address according to the context in sales and purchases documents."
+msgstr ""
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+msgid "Choose a language to install:"
+>>>>>>> MERGE-SOURCE
 msgstr ""
 
 #. module: base

=== added file 'bin/addons/base/i18n/bg_BG.po.OTHER'
--- bin/addons/base/i18n/bg_BG.po.OTHER	1970-01-01 00:00:00 +0000
+++ bin/addons/base/i18n/bg_BG.po.OTHER	2010-10-25 14:08:46 +0000
@@ -0,0 +1,7714 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* base
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.12\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2010-09-02 13:36:45+0000\n"
+"PO-Revision-Date: 2010-09-02 13:36:45+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: base
+#: model:res.country,name:base.sh
+msgid "Saint Helena"
+msgstr "Света Елена"
+
+#. module: base
+#: wizard_view:res.partner.sms_send,init:0
+msgid "SMS - Gateway: clickatell"
+msgstr "SMS - Изход: clickatell"
+
+#. module: base
+#: view:res.lang:0
+msgid "%j - Day of the year as a decimal number [001,366]."
+msgstr "%j - Деня от годината като десетично число [001,366]."
+
+#. module: base
+#: 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
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not create this kind of document! (%s)"
+msgstr "You can not create this kind of document! (%s)"
+
+#. module: base
+#: wizard_field:module.lang.import,init,code:0
+msgid "Code (eg:en__US)"
+msgstr "Код"
+
+#. module: base
+#: view:workflow:0
+#: field:workflow.activity,wkf_id:0
+#: field:workflow.instance,wkf_id:0
+msgid "Workflow"
+msgstr "Последователност от действия"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "To browse official translations, you can visit this link: "
+msgstr "To browse official translations, you can visit this link: "
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Hungarian / Magyar"
+msgstr "Унгарски / Magyar"
+
+#. module: base
+#: field:ir.actions.server,wkf_model_id:0
+msgid "Workflow On"
+msgstr "Последователност от действия Вкл."
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Views"
+msgstr "Created Views"
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Outgoing transitions"
+msgstr "Изходящи промени"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Yearly"
+msgstr "Годишно"
+
+#. module: base
+#: field:ir.actions.act_window,target:0
+msgid "Target Window"
+msgstr "Прозорец цел"
+
+#. module: base
+#: model:ir.actions.todo,note:base.config_wizard_simple_view
+msgid "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+msgstr "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+
+#. module: base
+#: field:ir.rule,operand:0
+msgid "Operand"
+msgstr "Операнд"
+
+#. module: base
+#: model:res.country,name:base.kr
+msgid "South Korea"
+msgstr "South Korea"
+
+#. 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
+#: model:ir.model,name:base.model_ir_ui_view_custom
+msgid "ir.ui.view.custom"
+msgstr "ir.ui.view.custom"
+
+#. module: base
+#: model:res.country,name:base.sz
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_report_custom
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.report.custom"
+msgstr "ir.actions.report.custom"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CANCEL"
+msgstr "STOCK_CANCEL"
+
+#. module: base
+#: field:ir.report.custom,sortby:0
+msgid "Sorted By"
+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:ir.ui.menu,icon:0
+msgid "STOCK_NO"
+msgstr "STOCK_NO"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, python-format
+msgid "new"
+msgstr "new"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_TOP"
+msgstr "STOCK_GOTO_TOP"
+
+#. module: base
+#: field:ir.actions.report.custom,multi:0
+#: 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 "Number of Modules"
+
+#. module: base
+#: field:res.partner.bank.type.field,size:0
+msgid "Max. Size"
+msgstr "Макс. размер"
+
+#. module: base
+#: field:res.partner.address,name:0
+msgid "Contact Name"
+msgstr "Име на контакта"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, 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 "Save this document to a %s file and edit it with a specific software or a text editor. The file encoding is UTF-8."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DELETE"
+msgstr "STOCK_DELETE"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password mismatch !"
+msgstr "Password mismatch !"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "This url '%s' must provide an html file with links to zip modules"
+msgstr "This url '%s' must provide an html file with links to zip modules"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "active"
+msgstr "активен"
+
+#. module: base
+#: field:ir.actions.wizard,wiz_name:0
+msgid "Wizard Name"
+msgstr "Wizard Name"
+
+#. module: base
+#: view:res.lang:0
+msgid "%y - Year without century as a decimal number [00,99]."
+msgstr "%y - Year without century as a decimal number [00,99]."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_FIRST"
+msgstr "STOCK_GOTO_FIRST"
+
+#. module: base
+#: help:ir.rule.group,rules:0
+msgid "The rule is satisfied if at least one test is True"
+msgstr "Това правило е удовлетворено ако поне един тест е истина"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Get Max"
+msgstr "Вземи макс. стойност"
+
+#. module: base
+#: help:ir.actions.act_window,limit:0
+msgid "Default limit for the list view"
+msgstr "Ограничения по подразбиране за изгледа на списъка"
+
+#. module: base
+#: field:ir.model.data,date_update:0
+msgid "Update Date"
+msgstr "Обнови дата"
+
+#. module: base
+#: field:ir.actions.act_window,src_model:0
+msgid "Source Object"
+msgstr "Обект източник"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: view:ir.actions.todo:0
+#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
+msgid "Config Wizard Steps"
+msgstr "Конфигуриране на стъпките на помощника"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_sc
+msgid "ir.ui.view_sc"
+msgstr "ir.ui.view_sc"
+
+#. module: base
+#: field:ir.model.access,group_id:0
+#: field:ir.rule,rule_group: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
+#: model:ir.actions.act_window,name:base.open_module_tree_uninstall
+#: model:ir.ui.menu,name:base.menu_module_tree_uninstall
+msgid "Uninstalled modules"
+msgstr "Неисталирани модули"
+
+#. module: base
+#: wizard_view:server.action.create,init:0
+#: wizard_field:server.action.create,init,type:0
+msgid "Select Action Type"
+msgstr "Select Action Type"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+msgid "Configure"
+msgstr "Configure"
+
+#. module: base
+#: model:res.country,name:base.tv
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. module: base
+#: selection:ir.model,state:0
+#: selection:ir.model.grid,state:0
+msgid "Custom Object"
+msgstr "Custom Object"
+
+#. module: base
+#: field:res.lang,date_format:0
+msgid "Date Format"
+msgstr "Date Format"
+
+#. 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 "Netherlands Antilles"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)"
+msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)"
+
+#. module: base
+#: model:res.country,name:base.gf
+msgid "French Guyana"
+msgstr "French Guyana"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Bosnian / bosanski jezik"
+msgstr "Bosnian / bosanski jezik"
+
+#. 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 "If you check this, then the second time the user prints with same attachment name, it returns the previous report."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_REWIND"
+msgstr "STOCK_MEDIA_REWIND"
+
+#. module: base
+#: field:ir.actions.todo,note: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 "Colombia"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule Upgrade"
+msgstr "Планирай обновяване"
+
+#. module: base
+#: field:ir.actions.report.custom,report_id:0
+msgid "Report Ref."
+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 "Кодът на държавата по ISO е от 2 символа\n"
+"Може да използвате това поле за бързо търсене."
+
+#. module: base
+#: selection:workflow.activity,join_mode:0
+#: selection:workflow.activity,split_mode:0
+msgid "Xor"
+msgstr "Xor"
+
+#. module: base
+#: view:ir.values:0
+msgid "Action To Launch"
+msgstr "Action To Launch"
+
+#. module: base
+#: view:res.partner:0
+msgid "Sales & Purchases"
+msgstr "Продажби и поръчки"
+
+#. module: base
+#: view:ir.actions.wizard:0
+#: field:wizard.ir.model.menu.create.line,wizard_id:0
+msgid "Wizard"
+msgstr "Помощник"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CUT"
+msgstr "STOCK_CUT"
+
+#. 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 "Wizards"
+
+#. module: base
+#: selection:res.config.view,view:0
+msgid "Extended Interface"
+msgstr "Разширен интерфейс"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Custom fields must have a name that starts with 'x_' !"
+msgstr "Custom fields must have a name that starts with 'x_' !"
+
+#. module: base
+#: help:ir.actions.server,action_id:0
+msgid "Select the Action Window, Report, Wizard to be executed."
+msgstr "Select the Action Window, Report, Wizard to be executed."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export done"
+msgstr "Експортът е завършил"
+
+#. module: base
+#: view:ir.model:0
+msgid "Model Description"
+msgstr "Описание на модела"
+
+#. module: base
+#: field:workflow.transition,trigger_expr_id:0
+msgid "Trigger Expression"
+msgstr "Trigger Expression"
+
+#. module: base
+#: model:res.country,name:base.jo
+msgid "Jordan"
+msgstr "Jordan"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not remove the model '%s' !"
+msgstr "You can not remove the model '%s' !"
+
+#. module: base
+#: model:res.country,name:base.er
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Configure simple view"
+msgstr "Конфигурирай обикновен изглед"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Bulgarian / български"
+msgstr "Bulgarian / български"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_actions
+msgid "ir.actions.actions"
+msgstr "ir.actions.actions"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_report_custom
+#: view:ir.report.custom:0
+msgid "Custom Report"
+msgstr "Допълнителна справка"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Bar Chart"
+msgstr "Графика с правоъгълници"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_ERROR"
+msgstr "STOCK_DIALOG_ERROR"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_INDEX"
+msgstr "STOCK_INDEX"
+
+#. module: base
+#: model:res.country,name:base.rs
+msgid "Serbia"
+msgstr "Serbia"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard View"
+msgstr "Изглед тип помощник"
+
+#. module: base
+#: model:res.country,name:base.kh
+msgid "Cambodia, Kingdom of"
+msgstr "Cambodia, Kingdom of"
+
+#. 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 "Последователност"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_QUESTION"
+msgstr "STOCK_DIALOG_QUESTION"
+
+#. module: base
+#: model:res.country,name:base.pg
+msgid "Papua New Guinea"
+msgstr "Papua New Guinea"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_4
+msgid "Basic Partner"
+msgstr "Basic Partner"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid ","
+msgstr ","
+
+#. module: base
+#: model:res.country,name:base.es
+msgid "Spain"
+msgstr "Spain"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "You may have to reinstall some language pack."
+msgstr "Може би трябва да преинсталирате някои езикови пакети"
+
+#. module: base
+#: field:res.partner.address,mobile:0
+msgid "Mobile"
+msgstr "Мобилен"
+
+#. module: base
+#: model:res.country,name:base.om
+msgid "Oman"
+msgstr "Oman"
+
+#. 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 "Niue"
+
+#. 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 "Other OSI Approved Licence"
+
+#. module: base
+#: help:ir.values,action_id:0
+msgid "This field is not used, it only helps you to select the right action."
+msgstr "This field is not used, it only helps you to select the right action."
+
+#. 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 "India"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract_module
+msgid "maintenance contract modules"
+msgstr "maintenance contract modules"
+
+#. module: base
+#: view:ir.values:0
+msgid "client_action_multi, client_action_relate"
+msgstr "client_action_multi, client_action_relate"
+
+#. module: base
+#: model:res.country,name:base.ad
+msgid "Andorra, Principality of"
+msgstr "Andorra, Principality of"
+
+#. module: base
+#: field:ir.module.category,child_ids:0
+#: field:res.partner.category,child_ids:0
+msgid "Child Categories"
+msgstr "Child Categories"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "TGZ Archive"
+msgstr "TGZ Архив"
+
+#. module: base
+#: field:res.partner.som,factor:0
+msgid "Factor"
+msgstr "Фактор"
+
+#. module: base
+#: view:res.lang:0
+msgid "%B - Full month name."
+msgstr "%B - Full month name."
+
+#. module: base
+#: field:ir.actions.report.xml,report_type:0
+#: field:ir.actions.todo,type:0
+#: field:ir.server.object.lines,type:0
+#: field:ir.translation,type:0
+#: field:ir.values,key:0
+#: view:res.partner:0
+msgid "Type"
+msgstr "Вид"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FILE"
+msgstr "STOCK_FILE"
+
+#. module: base
+#: model:res.country,name:base.gu
+msgid "Guam (USA)"
+msgstr "Guam (USA)"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_grid
+msgid "Objects Security Grid"
+msgstr "Таблица с защитата на обектите"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_DOWN"
+msgstr "STOCK_GO_DOWN"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_OK"
+msgstr "STOCK_OK"
+
+#. 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 "Невалиден XML за преглед на архитектурата"
+
+#. module: base
+#: model:res.country,name:base.ky
+msgid "Cayman Islands"
+msgstr "Cayman Islands"
+
+#. module: base
+#: field:ir.sequence,name:0
+#: field:ir.sequence.type,name:0
+msgid "Sequence Name"
+msgstr "Име на последователност"
+
+#. module: base
+#: model:res.country,name:base.td
+msgid "Chad"
+msgstr "Chad"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Spanish (AR) / Español (AR)"
+msgstr "Spanish (AR) / Español (AR)"
+
+#. module: base
+#: model:res.country,name:base.ug
+msgid "Uganda"
+msgstr "Uganda"
+
+#. module: base
+#: model:res.country,name:base.ne
+msgid "Niger"
+msgstr "Niger"
+
+#. module: base
+#: model:res.country,name:base.ba
+msgid "Bosnia-Herzegovina"
+msgstr "Bosnia-Herzegovina"
+
+#. module: base
+#: field:ir.report.custom.fields,alignment:0
+msgid "Alignment"
+msgstr "Подравняване"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid ">="
+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 "%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."
+
+#. module: base
+#: field:res.partner.event,planned_cost:0
+msgid "Planned Cost"
+msgstr "Планирана цена"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_config
+msgid "ir.model.config"
+msgstr "ir.model.config"
+
+#. module: base
+#: field:ir.module.module,website:0
+#: field:res.partner,website:0
+msgid "Website"
+msgstr "Уеб-страница"
+
+#. module: base
+#: field:ir.rule.group,rules:0
+msgid "Tests"
+msgstr "Тестове"
+
+#. module: base
+#: view:ir.module.repository:0
+msgid "Repository"
+msgstr "Хранилище"
+
+#. module: base
+#: model:res.country,name:base.gs
+msgid "S. Georgia & S. Sandwich Isls."
+msgstr "S. Georgia & S. Sandwich Isls."
+
+#. module: base
+#: field:ir.actions.url,url:0
+msgid "Action URL"
+msgstr "Action URL"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_FILL"
+msgstr "STOCK_JUSTIFY_FILL"
+
+#. module: base
+#: model:res.country,name:base.mh
+msgid "Marshall Islands"
+msgstr "Marshall Islands"
+
+#. module: base
+#: model:res.country,name:base.ht
+msgid "Haiti"
+msgstr "Haiti"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "RML"
+msgstr "RML"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_category
+#: model:ir.ui.menu,name:base.menu_partner_category_main
+msgid "Partners by Categories"
+msgstr "Партньори по категории"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Pie charts need exactly two fields"
+msgstr "Pie charts need exactly two fields"
+
+#. module: base
+#: help:wizard.module.lang.export,lang:0
+msgid "To export a new language, do not select a language."
+msgstr "За да експортирате нов език, не избирайте език."
+
+#. module: base
+#: model:res.country,name:base.md
+msgid "Moldavia"
+msgstr "Moldavia"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Features"
+msgstr "Features"
+
+#. module: base
+#: field:ir.report.custom,frequency:0
+msgid "Frequency"
+msgstr "Честота"
+
+#. module: base
+#: field:ir.report.custom.fields,fc0_op:0
+#: field:ir.report.custom.fields,fc1_op:0
+#: field:ir.report.custom.fields,fc2_op:0
+#: field:ir.report.custom.fields,fc3_op:0
+msgid "Relation"
+msgstr "Отношение"
+
+#. module: base
+#: field:ir.model.access,perm_read:0
+msgid "Read Access"
+msgstr "Read Access"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports
+msgid "ir.exports"
+msgstr "ir.exports"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MISSING_IMAGE"
+msgstr "STOCK_MISSING_IMAGE"
+
+#. module: base
+#: view:res.users:0
+msgid "Define New Users"
+msgstr "Define New Users"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REMOVE"
+msgstr "STOCK_REMOVE"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "raw"
+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 "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"
+
+#. module: base
+#: field:res.roles,name:0
+msgid "Role Name"
+msgstr "Име на раля"
+
+#. module: base
+#: field:res.partner,user_id:0
+msgid "Dedicated Salesman"
+msgstr "Отговорен търговец"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "-"
+msgstr "-"
+
+#. module: base
+#: field:res.payterm,name:0
+msgid "Payment Term (short name)"
+msgstr "Payment Term (short name)"
+
+#. 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
+#: view:res.lang:0
+msgid "Examples"
+msgstr "Examples"
+
+#. module: base
+#: field:ir.module.module,reports_by_module:0
+msgid "Reports"
+msgstr "Reports"
+
+#. module: base
+#: field:workflow,on_create:0
+msgid "On Create"
+msgstr "При създаване"
+
+#. module: base
+#: wizard_view:base.module.import,init:0
+msgid "Please give your module .ZIP file to import."
+msgstr "Моля предайте модула си за вмъкване като .zip файл"
+
+#. module: base
+#: field:ir.default,value:0
+msgid "Default Value"
+msgstr "Стойност по подразбиране"
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,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 "Access all the fields related to the current object using expressions, i.e. object.partner_id.name "
+
+#. module: base
+#: view:maintenance.contract:0
+#: field:maintenance.contract,module_ids:0
+msgid "Covered Modules"
+msgstr "Covered Modules"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_COPY"
+msgstr "STOCK_COPY"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_link
+msgid "res.request.link"
+msgstr "res.request.link"
+
+#. module: base
+#: wizard_button:module.module.update,init,update:0
+msgid "Check new modules"
+msgstr "Провери новите модули"
+
+#. module: base
+#: model:res.country,name:base.km
+msgid "Comoros"
+msgstr "Comoros"
+
+#. 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
+#: model:res.country,name:base.tp
+msgid "East Timor"
+msgstr "East Timor"
+
+#. 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 "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"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Simple domain setup"
+msgstr "Проста настройка на домейн"
+
+#. module: base
+#: field:res.currency,accuracy:0
+msgid "Computational Accuracy"
+msgstr "изчислителна точност"
+
+#. module: base
+#: model:res.country,name:base.kg
+msgid "Kyrgyz Republic (Kyrgyzstan)"
+msgstr "Kyrgyz Republic (Kyrgyzstan)"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line
+msgid "wizard.ir.model.menu.create.line"
+msgstr "wizard.ir.model.menu.create.line"
+
+#. module: base
+#: field:ir.attachment,res_id:0
+msgid "Attached ID"
+msgstr "Attached ID"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day: %(day)s"
+msgstr "Дни: %(day)"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not read this document! (%s)"
+msgstr "You can not read this document! (%s)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FIND_AND_REPLACE"
+msgstr "STOCK_FIND_AND_REPLACE"
+
+#. module: base
+#: model:res.country,name:base.mv
+msgid "Maldives"
+msgstr "Maldives"
+
+#. module: base
+#: help:ir.values,res_id:0
+msgid "Keep 0 if the action must appear on all resources."
+msgstr "Keep 0 if the action must appear on all resources."
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule
+msgid "ir.rule"
+msgstr "ir.rule"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Days"
+msgstr "Дни"
+
+#. module: base
+#: field:ir.report.custom.fields,width:0
+msgid "Fixed Width"
+msgstr "Фиксирана ширина"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-calendar"
+msgstr "terp-calendar"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_YES"
+msgstr "STOCK_YES"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_report_custom
+#: model:ir.ui.menu,name:base.menu_ir_action_report_custom
+msgid "Report Custom"
+msgstr "Report Custom"
+
+#. module: base
+#: view:res.lang:0
+msgid "7.  %H:%M:%S      ==> 18:25:20"
+msgstr "7.  %H:%M:%S      ==> 18:25:20"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_form
+#: model:ir.ui.menu,name:base.menu_base_partner
+#: model:ir.ui.menu,name:base.menu_partner_form
+#: view:res.partner:0
+msgid "Partners"
+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 "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`"
+
+#. module: base
+#: field:ir.attachment,res_model:0
+msgid "Attached Model"
+msgstr "Attached Model"
+
+#. 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 "ir.model.access"
+
+#. module: base
+#: field:ir.cron,priority:0
+#: field:ir.ui.view,priority: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_user.py:0
+#, python-format
+msgid "Can not remove root user!"
+msgstr "Can not remove root user!"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_LEFT"
+msgstr "STOCK_JUSTIFY_LEFT"
+
+#. module: base
+#: model:res.country,name:base.mw
+msgid "Malawi"
+msgstr "Malawi"
+
+#. module: base
+#: field:res.partner.address,type:0
+msgid "Address Type"
+msgstr "Вид на адреса"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "Auto"
+msgstr "Auto"
+
+#. module: base
+#: view:res.request:0
+msgid "End of Request"
+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 "%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."
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+msgid "Note that this operation may take a few minutes."
+msgstr "Имайте предвид операцията може да отнеме няколко минути"
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: 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 "Tree"
+msgstr "Дървовиден преглед"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "Could you check your contract information ?"
+msgstr "Could you check your contract information ?"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CLEAR"
+msgstr "STOCK_CLEAR"
+
+#. module: base
+#: help:res.users,password:0
+msgid "Keep empty if you don't want the user to be able to connect on the system."
+msgstr "Keep empty if you don't want the user to be able to connect on the system."
+
+#. module: base
+#: field:ir.actions.act_window,view_mode:0
+#: field:res.config.view,view:0
+msgid "View Mode"
+msgstr "Режим на преглед"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Spanish / Español"
+msgstr "Spanish / Español"
+
+#. module: base
+#: field:res.company,logo:0
+msgid "Logo"
+msgstr "Емблема"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PROPERTIES"
+msgstr "STOCK_PROPERTIES"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Uninstall (beta)"
+msgstr "Премахни (beta)"
+
+#. 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
+#: selection:res.partner.event,partner_type:0
+msgid "Commercial Prospect"
+msgstr "Търговски проспект"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Couldn't generate the next id because some partners have an alphabetic id !"
+msgstr "Couldn't generate the next id because some partners have an alphabetic id !"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attachment"
+msgstr "Attachment"
+
+#. module: base
+#: model:res.country,name:base.ie
+msgid "Ireland"
+msgstr "Ireland"
+
+#. module: base
+#: wizard_field:module.module.update,update,update:0
+msgid "Number of modules updated"
+msgstr "Брой обновени модули"
+
+#. module: base
+#: field:ir.actions.act_window,groups_id:0
+#: model:ir.actions.act_window,name:base.action_res_groups
+#: field:ir.actions.report.xml,groups_id:0
+#: field:ir.actions.todo,groups_id:0
+#: field:ir.actions.wizard,groups_id:0
+#: field:ir.model.fields,groups:0
+#: field:ir.rule.group,groups:0
+#: field:ir.ui.menu,groups_id:0
+#: model:ir.ui.menu,name:base.menu_action_res_groups
+#: view:res.groups:0
+#: view:res.users:0
+#: field:res.users,groups_id:0
+msgid "Groups"
+msgstr "Групи"
+
+#. module: base
+#: model:res.country,name:base.bz
+msgid "Belize"
+msgstr "Belize"
+
+#. module: base
+#: model:res.country,name:base.ge
+msgid "Georgia"
+msgstr "Georgia"
+
+#. module: base
+#: model:res.country,name:base.pl
+msgid "Poland"
+msgstr "Poland"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be removed"
+msgstr "Ще бъдат премахнати"
+
+#. module: base
+#: field:ir.values,meta:0
+msgid "Meta Datas"
+msgstr "Мета данни"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "This wizard will detect new terms in the application so that you can update them manually."
+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 "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`."
+
+#. module: base
+#: field:ir.model,name:0
+#: field:ir.model.fields,model:0
+#: field:ir.model.grid,name:0
+#: field:ir.values,model:0
+msgid "Object Name"
+msgstr "Име на обект"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Field"
+msgstr "Поле на помощник"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SELECT_COLOR"
+msgstr "STOCK_SELECT_COLOR"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_report_custom_fields
+msgid "ir.report.custom.fields"
+msgstr "ir.report.custom.fields"
+
+#. module: base
+#: model:res.country,name:base.st
+msgid "Saint Tome (Sao Tome) and Principe"
+msgstr "Saint Tome (Sao Tome) and Principe"
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Invoice"
+msgstr "Фактура"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REDO"
+msgstr "STOCK_REDO"
+
+#. module: base
+#: model:res.country,name:base.bb
+msgid "Barbados"
+msgstr "Barbados"
+
+#. module: base
+#: model:res.country,name:base.mg
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. module: base
+#: constraint:ir.model:0
+msgid "The Object name must start with x_ and not contain any special character !"
+msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!"
+
+#. module: base
+#: help:ir.rule.group,global:0
+msgid "Make the rule global, otherwise it needs to be put on a group"
+msgstr "Make the rule global, otherwise it needs to be put on a group"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_menu_admin
+#: field:ir.report.custom,menu_id:0
+#: 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 "Current Rate"
+
+#. module: base
+#: field:ir.ui.view.custom,ref_id:0
+msgid "Original View"
+msgstr "Original View"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Make sure you have no users linked with the group(s)!"
+msgstr "Make sure you have no users linked with the group(s)!"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+#: selection:ir.rule,operator:0
+msgid "in"
+msgstr "в"
+
+#. module: base
+#: field:ir.actions.url,target:0
+msgid "Action Target"
+msgstr "Цел на действието"
+
+#. module: base
+#: model:res.country,name:base.ai
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. module: base
+#: field:ir.model.config,password_check:0
+msgid "Confirmation"
+msgstr "Confirmation"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Enter at least one field !"
+msgstr "Enter at least one field !"
+
+#. module: base
+#: field:ir.ui.view_sc,name:0
+msgid "Shortcut Name"
+msgstr "Shortcut Name"
+
+#. module: base
+#: field:res.partner,credit_limit:0
+msgid "Credit Limit"
+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 "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."
+
+#. module: base
+#: model:res.country,name:base.zw
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_export
+msgid "Import / Export"
+msgstr "Вмъкване/Измъкване"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_user_form
+#: view:res.users:0
+msgid "Configure User"
+msgstr "Настрой потребител"
+
+#. module: base
+#: field:ir.actions.server,email:0
+msgid "Email Address"
+msgstr "Email Address"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not write in this document! (%s)"
+msgstr "You can not write in this document! (%s)"
+
+#. 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 "Trinidad and Tobago"
+
+#. module: base
+#: model:res.country,name:base.lv
+msgid "Latvia"
+msgstr "Latvia"
+
+#. module: base
+#: view:ir.values:0
+msgid "Values"
+msgstr "Стойности"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mappings"
+msgstr "Свързване на полета"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_custom
+msgid "Customization"
+msgstr "Customization"
+
+#. module: base
+#: model:res.country,name:base.py
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "left"
+msgstr "ляв"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_close
+msgid "ir.actions.act_window_close"
+msgstr "ir.actions.act_window_close"
+
+#. module: base
+#: field:ir.server.object.lines,col1:0
+msgid "Destination"
+msgstr "Местоназначение"
+
+#. module: base
+#: model:res.country,name:base.lt
+msgid "Lithuania"
+msgstr "Lithuania"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PRINT_PREVIEW"
+msgstr "STOCK_PRINT_PREVIEW"
+
+#. module: base
+#: model:res.country,name:base.si
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. module: base
+#: view:res.partner.canal:0
+#: field:res.partner.event,canal_id:0
+msgid "Channel"
+msgstr "Канал"
+
+#. module: base
+#: view:res.lang:0
+msgid "%p - Equivalent of either AM or PM."
+msgstr "%p - Equivalent of either AM or PM."
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Actions"
+msgstr "Iteration Actions"
+
+#. module: base
+#: field:maintenance.contract,date_stop:0
+msgid "Ending Date"
+msgstr "Ending Date"
+
+#. module: base
+#: model:res.country,name:base.nz
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_7
+msgid "Openstuff.net"
+msgstr "Openstuff.net"
+
+#. module: base
+#: model:res.country,name:base.nf
+msgid "Norfolk Island"
+msgstr "Norfolk Island"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PLAY"
+msgstr "STOCK_MEDIA_PLAY"
+
+#. module: base
+#: field:ir.rule,operator:0
+msgid "Operator"
+msgstr "Оператор"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "Installation Done"
+msgstr "Installation Done"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_OPEN"
+msgstr "STOCK_OPEN"
+
+#. module: base
+#: field:ir.actions.server,action_id:0
+#: selection:ir.actions.server,state:0
+msgid "Client Action"
+msgstr "Действия на клиента"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "right"
+msgstr "десен"
+
+#. module: base
+#: model:res.country,name:base.bd
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. module: base
+#: constraint:res.company:0
+msgid "Error! You can not create recursive companies."
+msgstr "Грешка! НЕ може да създавате рекурсивни компании"
+
+#. module: base
+#: selection:maintenance.contract,state:0
+msgid "Valid"
+msgstr "Valid"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not delete this document! (%s)"
+msgstr "You can not delete this document! (%s)"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "XSL"
+msgstr "XSL"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_other_form
+#: model:ir.ui.menu,name:base.menu_partner_other_form
+msgid "Others Partners"
+msgstr "Други партньори"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Can not upgrade module '%s'. It is not installed."
+msgstr "Can not upgrade module '%s'. It is not installed."
+
+#. module: base
+#: model:res.country,name:base.cu
+msgid "Cuba"
+msgstr "Cuba"
+
+#. module: base
+#: view:res.lang:0
+msgid "%S - Second as a decimal number [00,61]."
+msgstr "%S - Second as a decimal number [00,61]."
+
+#. module: base
+#: model:res.country,name:base.am
+msgid "Armenia"
+msgstr "Armenia"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Daily"
+msgstr "Ежедневно"
+
+#. module: base
+#: model:res.country,name:base.se
+msgid "Sweden"
+msgstr "Sweden"
+
+#. 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 "Gantt"
+
+#. module: base
+#: view:ir.property:0
+msgid "Property"
+msgstr "Свойство"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type
+#: view:res.partner.bank.type:0
+msgid "Bank Account Type"
+msgstr "Тип на банкова сметка"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-project"
+msgstr "terp-project"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Action Configuration"
+msgstr "Iteration Action Configuration"
+
+#. module: base
+#: model:res.country,name:base.at
+msgid "Austria"
+msgstr "Austria"
+
+#. 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 "Calendar"
+msgstr "Календар"
+
+#. module: base
+#: field:workflow.activity,signal_send:0
+msgid "Signal (subflow.*)"
+msgstr "Сигнал (subflow.*)"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_17
+msgid "HR sector"
+msgstr "HR sector"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module_dependency
+msgid "Module dependency"
+msgstr "Зависимости на модула"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Draft"
+msgstr "Draft"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_CENTER"
+msgstr "STOCK_JUSTIFY_CENTER"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Choose Your Mode"
+msgstr "Избери режим"
+
+#. module: base
+#: field:res.company,rml_footer1:0
+msgid "Report Footer 1"
+msgstr "Долен колонтитул на справка 1"
+
+#. module: base
+#: field:res.company,rml_footer2:0
+msgid "Report Footer 2"
+msgstr "Долен колонтитул на справка 2"
+
+#. module: base
+#: view:ir.model.access:0
+#: model:ir.ui.menu,name:base.menu_security_access
+#: 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:res.partner,parent_id:0
+msgid "Main Company"
+msgstr "Основна фирма"
+
+#. module: base
+#: field:ir.report.custom.fields,bgcolor:0
+msgid "Background Color"
+msgstr "Цвят на фона"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "If you use a formula type, use a python expression using the variable 'object'."
+msgstr "If you use a formula type, use a python expression using the variable 'object'."
+
+#. 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 "Contact Titles"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_som
+msgid "res.partner.som"
+msgstr "res.partner.som"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_activity
+msgid "workflow.activity"
+msgstr "workflow.activity"
+
+#. module: base
+#: field:ir.model.fields,select_level:0
+msgid "Searchable"
+msgstr "Търсим"
+
+#. module: base
+#: model:res.country,name:base.uy
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. module: base
+#: view:res.partner.event:0
+msgid "Document Link"
+msgstr "Връзка към документ"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_title
+msgid "res.partner.title"
+msgstr "res.partner.title"
+
+#. module: base
+#: field:ir.sequence,prefix:0
+msgid "Prefix"
+msgstr "Префикс"
+
+#. module: base
+#: field:ir.actions.server,loop_action:0
+msgid "Loop Action"
+msgstr "Loop Action"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "German / Deutsch"
+msgstr "German / Deutsch"
+
+#. module: base
+#: help:ir.actions.server,trigger_name:0
+msgid "Select the Signal name that is to be used as the trigger."
+msgstr "Select the Signal name that is to be used as the trigger."
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Fields Mapping"
+msgstr "Свързване на полета"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_sir
+msgid "Sir"
+msgstr "Сър"
+
+#. module: base
+#: wizard_button:module.upgrade,next,start:0
+msgid "Start Upgrade"
+msgstr "Започни обновяване"
+
+#. module: base
+#: field:ir.default,ref_id:0
+msgid "ID Ref."
+msgstr "ID отпратка"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "French / Français"
+msgstr "French / Français"
+
+#. module: base
+#: model:res.country,name:base.mt
+msgid "Malta"
+msgstr "Malta"
+
+#. module: base
+#: field:ir.actions.server,fields_lines:0
+msgid "Field Mappings."
+msgstr "Field Mappings."
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module
+#: field:ir.model.data,module:0
+#: view:ir.module.module:0
+#: field:ir.module.module.dependency,module_id:0
+#: rml:ir.module.reference:0
+msgid "Module"
+msgstr "Модул"
+
+#. module: base
+#: field:ir.attachment,description: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 "Описание"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_attachment
+msgid "ir.attachment"
+msgstr "ir.attachment"
+
+#. module: base
+#: field:res.users,action_id:0
+msgid "Home Action"
+msgstr "Основно действие"
+
+#. module: base
+#: field:res.lang,grouping:0
+msgid "Separator Format"
+msgstr "Separator Format"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export language"
+msgstr "Извличане на език"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Unvalidated"
+msgstr "Unvalidated"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_9
+msgid "Database Structure"
+msgstr "Структура на базата данни"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard
+#: wizard_view:res.partner.spam_send,init:0
+msgid "Mass Mailing"
+msgstr "Изпращане на много e-mail съобщения"
+
+#. module: base
+#: model:res.country,name:base.yt
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "You can also import .po files."
+msgstr "You can also import .po files."
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "Unable to find a valid contract"
+msgstr "Unable to find a valid contract"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify an action to launch !"
+msgstr "Please specify an action to launch !"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_RIGHT"
+msgstr "STOCK_JUSTIFY_RIGHT"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_function
+msgid "Function of the contact"
+msgstr "Функция на контакта"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_upgrade
+#: model:ir.ui.menu,name:base.menu_module_tree_upgrade
+msgid "Modules to be installed, upgraded or removed"
+msgstr "Модули за инсталация, обновяване или премахване"
+
+#. module: base
+#: view:res.payterm:0
+msgid "Payment Term"
+msgstr "Payment Term"
+
+#. module: base
+#: field:ir.report.custom,footer:0
+msgid "Report Footer"
+msgstr "Долен колонтитул на справка"
+
+#. module: base
+#: selection:res.lang,direction:0
+msgid "Right-to-Left"
+msgstr "Right-to-Left"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "Import language"
+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,title:0
+#: field:res.partner.address,title:0
+#: field:res.partner.title,name:0
+msgid "Title"
+msgstr "Заглавие"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE"
+msgstr "STOCK_SAVE"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-account"
+msgstr "terp-account"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Recursion error in modules dependencies !"
+msgstr "Recursion error in modules dependencies !"
+
+#. 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 "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_module_category_tree
+#: model:ir.ui.menu,name:base.menu_action_module_category_tree
+msgid "Categories of Modules"
+msgstr "Категории модули"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Ukrainian / украї́нська мо́ва"
+msgstr "Ukrainian / украї́нська мо́ва"
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Not Started"
+msgstr "Не е стартиран"
+
+#. module: base
+#: model:res.country,name:base.ru
+msgid "Russian Federation"
+msgstr "Russian Federation"
+
+#. module: base
+#: field:res.company,name:0
+msgid "Company Name"
+msgstr "Име на фирма"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_roles_form
+#: model:ir.ui.menu,name:base.menu_action_res_roles_form
+#: view:res.roles:0
+#: view:res.users:0
+#: field:res.users,roles_id:0
+msgid "Roles"
+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
+#: view:ir.rule.group:0
+msgid "Record rules"
+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 "12. %w              ==> 5 ( Friday is the 6th day)"
+
+#. 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 "%x - Appropriate date representation."
+
+#. module: base
+#: help:ir.module.repository,filter:0
+msgid "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+msgstr "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+
+#. module: base
+#: view:res.lang:0
+msgid "%M - Minute as a decimal number [00,59]."
+msgstr "%M - Minute as a decimal number [00,59]."
+
+#. module: base
+#: model:res.country,name:base.tj
+msgid "Tajikistan"
+msgstr "Tajikistan"
+
+#. module: base
+#: help:ir.actions.report.xml,header:0
+msgid "Add or not the coporate RML header"
+msgstr "Да се добави или не RML колонтитул на фирмата"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form_action
+#: model:ir.ui.menu,name:base.menu_values_form_action
+msgid "Connect Actions To Client Events"
+msgstr "Connect Actions To Client Events"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-2 or later version"
+msgstr "GPL-2 or later version"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Prospect Contact"
+msgstr "Prospect Contact"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_wizard
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.wizard"
+msgstr "ir.actions.wizard"
+
+#. module: base
+#: model:res.country,name:base.nr
+msgid "Nauru"
+msgstr "Nauru"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_property
+msgid "ir.property"
+msgstr "ir.property"
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: 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 "Form"
+msgstr "Форма"
+
+#. module: base
+#: model:res.country,name:base.me
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_QUIT"
+msgstr "STOCK_QUIT"
+
+#. module: base
+#: view:ir.cron:0
+msgid "Technical Data"
+msgstr "Technical Data"
+
+#. module: base
+#: view:res.partner:0
+#: field:res.partner,category_id:0
+msgid "Categories"
+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 "Libya"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-purchase"
+msgstr "terp-purchase"
+
+#. module: base
+#: wizard_field:module.module.update,init,repositories:0
+msgid "Repositories"
+msgstr "Хранилища"
+
+#. module: base
+#: model:res.country,name:base.cf
+msgid "Central African Republic"
+msgstr "Central African Republic"
+
+#. module: base
+#: model:res.country,name:base.li
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_ltd
+msgid "Ltd"
+msgstr "ООД"
+
+#. module: base
+#: field:res.partner,ean13:0
+msgid "EAN13"
+msgstr "EAN13"
+
+#. module: base
+#: model:res.country,name:base.pt
+msgid "Portugal"
+msgstr "Portugal"
+
+#. module: base
+#: selection:maintenance.contract,state:0
+msgid "Unvalid"
+msgstr "Unvalid"
+
+#. module: base
+#: field:ir.module.module,certificate:0
+msgid "Quality Certificate"
+msgstr "Quality Certificate"
+
+#. module: base
+#: view:res.lang:0
+msgid "6.  %d, %m         ==> 05, 12"
+msgstr "6.  %d, %m         ==> 05, 12"
+
+#. module: base
+#: help:res.partner,customer:0
+msgid "Check this box if the partner is a customer."
+msgstr "Check this box if the partner is a customer."
+
+#. 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
+#: model:res.country,name:base.pw
+msgid "Palau"
+msgstr "Palau"
+
+#. module: base
+#: model:res.country,name:base.ec
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, 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 "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."
+
+#. module: base
+#: model:res.country,name:base.au
+msgid "Australia"
+msgstr "Australia"
+
+#. 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
+#: rml:ir.module.reference:0
+msgid "Menu :"
+msgstr "Menu :"
+
+#. module: base
+#: selection:ir.model.fields,state:0
+msgid "Base Field"
+msgstr "Основно поле"
+
+#. module: base
+#: wizard_view:module.module.update,update:0
+msgid "New modules"
+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 "SXW съдържание"
+
+#. module: base
+#: view:ir.cron:0
+msgid "Action to Trigger"
+msgstr "Action to Trigger"
+
+#. module: base
+#: field:ir.report.custom.fields,fc0_operande:0
+#: field:ir.report.custom.fields,fc1_operande:0
+#: field:ir.report.custom.fields,fc2_operande:0
+#: field:ir.report.custom.fields,fc3_operande:0
+#: 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
+#: help:res.partner.bank,acc_number:0
+msgid "Bank account number"
+msgstr "Bank account number"
+
+#. module: base
+#: field:ir.model.fields,required:0
+#: field:res.partner.bank.type.field,required:0
+msgid "Required"
+msgstr "Задължителен"
+
+#. module: base
+#: field:ir.model.fields,domain:0
+#: field:ir.rule,domain:0
+#: field:res.partner.title,domain:0
+msgid "Domain"
+msgstr "Домейн"
+
+#. module: base
+#: field:res.request.history,name:0
+msgid "Summary"
+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 "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`"
+
+#. module: base
+#: view:res.company:0
+msgid "Header/Footer"
+msgstr "Горен/Долен колонтитул"
+
+#. module: base
+#: model:res.country,name:base.lb
+msgid "Lebanon"
+msgstr "Lebanon"
+
+#. module: base
+#: wizard_field:module.lang.import,init,name:0
+msgid "Language name"
+msgstr "Име на език"
+
+#. module: base
+#: model:res.country,name:base.va
+msgid "Holy See (Vatican City State)"
+msgstr "Holy See (Vatican City State)"
+
+#. 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 "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price"
+
+#. module: base
+#: wizard_field:base.module.import,init,module_file:0
+msgid "Module .ZIP file"
+msgstr "Модул в .zip формат"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_16
+msgid "Telecom sector"
+msgstr "Telecom sector"
+
+#. module: base
+#: field:workflow.transition,trigger_model:0
+msgid "Trigger Object"
+msgstr "Trigger Object"
+
+#. module: base
+#: selection:ir.report.custom,state:0
+msgid "Subscribed"
+msgstr "Абониран"
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+#: wizard_view:module.upgrade,next:0
+msgid "System Upgrade"
+msgstr "Обновяване на системата"
+
+#. module: base
+#: field:workflow.activity,in_transitions:0
+msgid "Incoming Transitions"
+msgstr "Incoming Transitions"
+
+#. module: base
+#: model:res.country,name:base.sr
+msgid "Suriname"
+msgstr "Suriname"
+
+#. module: base
+#: field:ir.values,key2:0
+#: view:res.partner.event.type:0
+#: field:res.partner.event.type,name:0
+msgid "Event Type"
+msgstr "Вид събитие"
+
+#. module: base
+#: view:res.partner.bank:0
+#: model:res.partner.bank.type,name:base.bank_normal
+msgid "Bank account"
+msgstr "Банкова сметка"
+
+#. module: base
+#: view:ir.sequence.type:0
+msgid "Sequence Type"
+msgstr "Вид последователност"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+
+#. module: base
+#: view:res.partner.address:0
+msgid "Partner Address"
+msgstr "Адрес на партньора"
+
+#. module: base
+#: field:ir.module.module,license:0
+msgid "License"
+msgstr "Лиценз"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Invalid operation"
+msgstr "Invalid operation"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE_AS"
+msgstr "STOCK_SAVE_AS"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "SQL Constraint"
+msgstr "SQL Constraint"
+
+#. module: base
+#: field:ir.actions.server,srcmodel_id:0
+msgid "Model"
+msgstr "Модел"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+
+#. 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
+#: view:ir.actions.act_window:0
+msgid "Open a Window"
+msgstr "Отвори в прозорец"
+
+#. module: base
+#: model:res.country,name:base.gq
+msgid "Equatorial Guinea"
+msgstr "Equatorial Guinea"
+
+#. module: base
+#: wizard_view:base.module.import,init:0
+msgid "Module Import"
+msgstr "Module Import"
+
+#. module: base
+#: field:res.bank,zip:0
+#: field:res.partner.address,zip:0
+#: field:res.partner.bank,zip:0
+msgid "Zip"
+msgstr "Пощенски код"
+
+#. module: base
+#: field:ir.module.module,author:0
+msgid "Author"
+msgstr "Автор"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDELETE"
+msgstr "STOCK_UNDELETE"
+
+#. module: base
+#: view:res.lang:0
+msgid "%c - Appropriate date and time representation."
+msgstr "%c - Appropriate date and time representation."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Finland / Suomi"
+msgstr "Finland / Suomi"
+
+#. module: base
+#: model:res.country,name:base.bo
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. module: base
+#: model:res.country,name:base.gh
+msgid "Ghana"
+msgstr "Ghana"
+
+#. module: base
+#: field:res.lang,direction:0
+msgid "Direction"
+msgstr "Посока"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_module_update_translations
+msgid "wizard.module.update_translations"
+msgstr "wizard.module.update_translations"
+
+#. 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
+#: field:ir.module.module,views_by_module:0
+#: model:ir.ui.menu,name:base.menu_action_ui_view
+#: view:ir.ui.view:0
+#: view:wizard.ir.model.menu.create:0
+#: field:wizard.ir.model.menu.create,view_ids:0
+msgid "Views"
+msgstr "Изгледи"
+
+#. module: base
+#: view:res.groups:0
+#: field:res.groups,rule_groups:0
+#: field:res.users,rules_id:0
+msgid "Rules"
+msgstr "Правила"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to remove a module that is installed or will be installed"
+msgstr "You try to remove a module that is installed or will be installed"
+
+#. module: base
+#: help:ir.values,key2:0
+msgid "The kind of action or button in the client side that will trigger the action."
+msgstr "The kind of action or button in the client side that will trigger the action."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PASTE"
+msgstr "STOCK_PASTE"
+
+#. module: base
+#: model:res.country,name:base.gt
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_workflow_form
+#: model:ir.ui.menu,name:base.menu_workflow
+msgid "Workflows"
+msgstr "Последователности от действия"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_wizard_form
+#: model:ir.ui.menu,name:base.menu_config_module
+msgid "Configuration Wizard"
+msgstr "Помощник на настройките"
+
+#. module: base
+#: model:ir.model,name:base.model_res_roles
+msgid "res.roles"
+msgstr "res.roles"
+
+#. module: base
+#: help:ir.cron,priority:0
+msgid "0=Very Urgent\n"
+"10=Not urgent"
+msgstr "0=Много спешно\n"
+"10=Не е спешно"
+
+#. module: base
+#: view:res.users:0
+msgid "Skip"
+msgstr "Skip"
+
+#. 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 "Accepted Links in Requests"
+msgstr "Приети връзки в заявките"
+
+#. module: base
+#: model:res.country,name:base.ls
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.grant_menu_access
+#: model:ir.ui.menu,name:base.menu_grant_menu_access
+msgid "Grant Access To Menus"
+msgstr "Grant Access To Menus"
+
+#. module: base
+#: model:res.country,name:base.ke
+msgid "Kenya"
+msgstr "Kenya"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu."
+msgstr "Изберете опростения интерфейс ако пробвате OpenERP за първи път. По-малко използваните опции и полета ще бъдат скрити автоматично. По-късно това може да бъде променено от меню Администрация(Administration)."
+
+#. module: base
+#: model:res.country,name:base.sm
+msgid "San Marino"
+msgstr "San Marino"
+
+#. module: base
+#: model:res.country,name:base.bm
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. module: base
+#: model:res.country,name:base.pe
+msgid "Peru"
+msgstr "Peru"
+
+#. module: base
+#: selection:ir.model.fields,on_delete:0
+msgid "Set NULL"
+msgstr "Сложи нищо (NULL)"
+
+#. module: base
+#: field:res.partner.event,som:0
+#: field:res.partner.som,name:0
+msgid "State of Mind"
+msgstr "Удовлетвореност"
+
+#. module: base
+#: model:res.country,name:base.bj
+msgid "Benin"
+msgstr "Benin"
+
+#. module: base
+#: view:ir.rule.group:0
+msgid "The rule is satisfied if all test are True (AND)"
+msgstr "Правилото е удовлетворено ако всички тестове за истина (AND)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CONNECT"
+msgstr "STOCK_CONNECT"
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Not Searchable"
+msgstr "Не може да бъде търсен"
+
+#. module: base
+#: field:res.partner.event.type,key:0
+msgid "Key"
+msgstr "Ключ"
+
+#. module: base
+#: field:ir.cron,nextcall:0
+msgid "Next Call Date"
+msgstr "Next Call Date"
+
+#. module: base
+#: field:res.company,rml_header:0
+msgid "RML Header"
+msgstr "RML горен колонтитул"
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,app_id:0
+msgid "API ID"
+msgstr "API ID"
+
+#. module: base
+#: model:res.country,name:base.mu
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. module: base
+#: wizard_view:module.module.update,init:0
+msgid "Scan for new modules"
+msgstr "Провери за нови модули"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_repository
+msgid "Module Repository"
+msgstr "Хранилище с модули"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_security
+msgid "Security"
+msgstr "Защита"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Using a relation field which uses an unknown object"
+msgstr "Using a relation field which uses an unknown object"
+
+#. module: base
+#: model:res.country,name:base.za
+msgid "South Africa"
+msgstr "South Africa"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_module_lang_export
+msgid "wizard.module.lang.export"
+msgstr "wizard.module.lang.export"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "Installed"
+msgstr "Инсталиран"
+
+#. module: base
+#: model:res.country,name:base.sn
+msgid "Senegal"
+msgstr "Senegal"
+
+#. module: base
+#: model:res.country,name:base.hu
+msgid "Hungary"
+msgstr "Hungary"
+
+#. module: base
+#: model:ir.model,name:base.model_res_groups
+msgid "res.groups"
+msgstr "res.groups"
+
+#. module: base
+#: model:res.country,name:base.br
+msgid "Brazil"
+msgstr "Brazil"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Affero GPL-3"
+msgstr "Affero GPL-3"
+
+#. module: base
+#: field:ir.sequence,number_next:0
+msgid "Next Number"
+msgstr "Следващ номер"
+
+#. module: base
+#: view:res.currency:0
+#: field:res.currency,rate_ids:0
+msgid "Rates"
+msgstr "Курсове"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Albanian / Shqipëri"
+msgstr "Albanian / Shqipëri"
+
+#. module: base
+#: model:res.country,name:base.sy
+msgid "Syria"
+msgstr "Syria"
+
+#. module: base
+#: view:res.lang:0
+msgid "======================================================"
+msgstr "======================================================"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child2:0
+msgid "Field child2"
+msgstr "Field child2"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child3:0
+msgid "Field child3"
+msgstr "Field child3"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child0:0
+msgid "Field child0"
+msgstr "Field child0"
+
+#. module: base
+#: field:ir.report.custom.fields,field_child1:0
+msgid "Field child1"
+msgstr "Field child1"
+
+#. module: base
+#: field:ir.model.fields,selection:0
+msgid "Field Selection"
+msgstr "Избор на поле"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "draft"
+msgstr "проект"
+
+#. module: base
+#: 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 "SXW път"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Data"
+msgstr "Данни"
+
+#. module: base
+#: view:res.users:0
+msgid "Groups are used to defined access rights on each screen and menu."
+msgstr "Groups are used to defined access rights on each screen and menu."
+
+#. module: base
+#: field:ir.ui.menu,parent_id:0
+#: field:wizard.ir.model.menu.create,menu_id:0
+msgid "Parent Menu"
+msgstr "Родителско меню"
+
+#. module: base
+#: help:ir.actions.act_window.view,multi:0
+#: help:ir.actions.report.custom,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 "If set to true, the action will not be displayed on the right toolbar of a form view."
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attached To"
+msgstr "Attached To"
+
+#. module: base
+#: field:res.lang,decimal_point:0
+msgid "Decimal Separator"
+msgstr "Decimal Separator"
+
+#. 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 "Creator"
+
+#. module: base
+#: model:res.country,name:base.mx
+msgid "Mexico"
+msgstr "Mexico"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Swedish / svenska"
+msgstr "Swedish / svenska"
+
+#. module: base
+#: field:res.company,child_ids:0
+msgid "Child Companies"
+msgstr "Child Companies"
+
+#. module: base
+#: model:ir.model,name:base.model_res_users
+msgid "res.users"
+msgstr "res.users"
+
+#. module: base
+#: model:res.country,name:base.ni
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. module: base
+#: view:res.partner.event:0
+msgid "General Description"
+msgstr "Главно описание"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Sale Opportunity"
+msgstr "Възможност за продажба"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "Maintenance contract added !"
+msgstr "Maintenance contract added !"
+
+#. module: base
+#: field:ir.rule,field_id:0
+#: selection:ir.translation,type:0
+msgid "Field"
+msgstr "Поле"
+
+#. module: base
+#: model:res.country,name:base.ve
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. module: base
+#: view:res.lang:0
+msgid "9.  %j              ==> 340"
+msgstr "9.  %j              ==> 340"
+
+#. module: base
+#: model:res.country,name:base.zm
+msgid "Zambia"
+msgstr "Zambia"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_report_xml
+#: model:ir.ui.menu,name:base.menu_ir_action_report_xml
+msgid "Report Xml"
+msgstr "Xml справка"
+
+#. 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
+#: view:ir.module.module:0
+msgid "Cancel Upgrade"
+msgstr "Прекъсни обновяването"
+
+#. module: base
+#: model:res.country,name:base.ci
+msgid "Ivory Coast (Cote D'Ivoire)"
+msgstr "Ivory Coast (Cote D'Ivoire)"
+
+#. module: base
+#: model:res.country,name:base.kz
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+
+#. module: base
+#: field:ir.actions.report.xml,name:0
+#: field:ir.actions.todo,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
+#: field:ir.module.module,name:0
+#: field:ir.module.module.dependency,name:0
+#: rml:ir.module.reference:0
+#: field:ir.module.repository,name:0
+#: field:ir.property,name:0
+#: field:ir.report.custom.fields,name:0
+#: field:ir.rule.group,name:0
+#: field:ir.values,name:0
+#: field:maintenance.contract.module,name:0
+#: field:res.bank,name:0
+#: field:res.config.view,name:0
+#: field:res.lang,name:0
+#: field:res.partner,name:0
+#: field:res.partner.bank.type,name:0
+#: field:res.request.link,name:0
+#: field:res.users,name:0
+#: field:workflow,name:0
+#: field:workflow.activity,name:0
+msgid "Name"
+msgstr "Име"
+
+#. module: base
+#: model:res.country,name:base.ms
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_app
+msgid "Application Terms"
+msgstr "Условия за използване на програмата"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Calculate Average"
+msgstr "Инчисляване на средна стойност"
+
+#. module: base
+#: field:ir.module.module,demo:0
+msgid "Demo data"
+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 "Antarctica"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_3
+msgid "Starter Partner"
+msgstr "Starter Partner"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_view
+msgid "ir.actions.act_window.view"
+msgstr "ir.actions.act_window.view"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Web"
+msgstr "Web"
+
+#. module: base
+#: field:res.partner.event,planned_revenue:0
+msgid "Planned Revenue"
+msgstr "Планиран доход"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "You have to import a .CSV file wich is encoded in UTF-8.  Please check that the first line of your file is one of the following:"
+msgstr "You have to import a .CSV file wich is encoded in UTF-8.  Please check that the first line of your file is one of the following:"
+
+#. module: base
+#: model:res.country,name:base.et
+msgid "Ethiopia"
+msgstr "Ethiopia"
+
+#. module: base
+#: view:res.lang:0
+msgid "%H - Hour (24-hour clock) as a decimal number [00,23]."
+msgstr "%H - Hour (24-hour clock) as a decimal number [00,23]."
+
+#. module: base
+#: view:res.roles:0
+msgid "Role"
+msgstr "Роля"
+
+#. module: base
+#: help:res.country.state,code:0
+msgid "The state code in three chars.\n"
+""
+msgstr "The state code in three chars.\n"
+""
+
+#. module: base
+#: model:res.country,name:base.sj
+msgid "Svalbard and Jan Mayen Islands"
+msgstr "Svalbard and Jan Mayen Islands"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Test"
+msgstr "Тест"
+
+#. module: base
+#: field:ir.report.custom.fields,groupby:0
+msgid "Group By"
+msgstr "Group By"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, 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\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_WARNING"
+msgstr "STOCK_DIALOG_WARNING"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_IN"
+msgstr "STOCK_ZOOM_IN"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "closed"
+msgstr "Затворено"
+
+#. module: base
+#: selection:wizard.module.lang.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 "Write Id"
+
+#. module: base
+#: field:ir.actions.act_window,domain:0
+msgid "Domain Value"
+msgstr "Стойност на домейн"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ITALIC"
+msgstr "STOCK_ITALIC"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "SMS Configuration"
+msgstr "SMS Configuration"
+
+#. 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 "Access Controls List"
+
+#. module: base
+#: model:res.country,name:base.um
+msgid "USA Minor Outlying Islands"
+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 "Bank Type"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "The name of the group can not start with \"-\""
+msgstr "The name of the group can not start with \"-\""
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)."
+msgstr "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)."
+
+#. 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
+#: field:workflow.activity,flow_start:0
+msgid "Flow Start"
+msgstr "Начало на процес"
+
+#. module: base
+#: view:ir.model:0
+#: view:ir.model.fields:0
+msgid "Security on Groups"
+msgstr "Защита на групите"
+
+#. module: base
+#: view:res.partner.bank:0
+msgid "Bank Account Owner"
+msgstr "Bank Account Owner"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form
+#: model:ir.ui.menu,name:base.menu_values_form
+msgid "Client Actions Connections"
+msgstr "Client Actions Connections"
+
+#. module: base
+#: 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 "Guadeloupe (French)"
+
+#. module: base
+#: field:ir.report.custom.fields,cumulate:0
+msgid "Accumulate"
+msgstr "Accumulate"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Tree can only be used in tabular reports"
+msgstr "Tree can only be used in tabular reports"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Directory"
+msgstr "Directory"
+
+#. module: base
+#: field:wizard.ir.model.menu.create,name:0
+msgid "Menu Name"
+msgstr "Име на меню"
+
+#. module: base
+#: field:ir.report.custom,title:0
+msgid "Report Title"
+msgstr "Report Title"
+
+#. module: base
+#: field:ir.report.custom.fields,fontcolor:0
+msgid "Font color"
+msgstr "Цвят на текста"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SORT_DESCENDING"
+msgstr "STOCK_SORT_DESCENDING"
+
+#. module: base
+#: model:res.country,name:base.my
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_history
+msgid "res.request.history"
+msgstr "res.request.history"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Client Action Configuration"
+msgstr "Client Action Configuration"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_address_form
+#: model:ir.model,name:base.model_res_partner_address
+#: model:ir.ui.menu,name:base.menu_partner_address_form
+#: view:res.partner.address:0
+msgid "Partner Addresses"
+msgstr "Адрес на партньора"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Indonesian / Bahasa Indonesia"
+msgstr "Indonesian / Bahasa Indonesia"
+
+#. module: base
+#: model:res.country,name:base.cv
+msgid "Cape Verde"
+msgstr "Cape Verde"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Some installed modules depend on the module you plan to Uninstall :\n %s"
+msgstr "Some installed modules depend on the module you plan to Uninstall :\n %s"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_res_partner_event
+#: field:res.partner,events:0
+#: field:res.partner.event,name:0
+msgid "Events"
+msgstr "Събития"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_roles
+#: model:ir.ui.menu,name:base.menu_action_res_roles
+msgid "Roles Structure"
+msgstr "Структура на ролите"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_url
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.url"
+msgstr "ir.actions.url"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_STOP"
+msgstr "STOCK_MEDIA_STOP"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DND_MULTIPLE"
+msgstr "STOCK_DND_MULTIPLE"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_addess_tree
+#: view:res.partner:0
+msgid "Partner Contacts"
+msgstr "Partner Contacts"
+
+#. module: base
+#: wizard_field:module.module.update,update,add:0
+msgid "Number of modules added"
+msgstr "Брой добавени модули"
+
+#. module: base
+#: field:workflow.transition,role_id:0
+msgid "Role Required"
+msgstr "Необходима роля"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Menus"
+msgstr "Created Menus"
+
+#. module: base
+#: field:workflow.triggers,workitem_id:0
+msgid "Workitem"
+msgstr "Задача"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_AUTHENTICATION"
+msgstr "STOCK_DIALOG_AUTHENTICATION"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_OUT"
+msgstr "STOCK_ZOOM_OUT"
+
+#. 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
+#: selection:ir.values,key: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 "ir.cron"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Current Year without Century: %(y)s"
+msgstr "Current Year without Century: %(y)s"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-mrp"
+msgstr "terp-mrp"
+
+#. module: base
+#: field:ir.actions.server,trigger_obj_id:0
+msgid "Trigger On"
+msgstr "Тригера включен"
+
+#. module: base
+#: model:res.country,name:base.fj
+msgid "Fiji"
+msgstr "Fiji"
+
+#. module: base
+#: field:ir.model.fields,size:0
+msgid "Size"
+msgstr "Размер"
+
+#. module: base
+#: model:res.country,name:base.sd
+msgid "Sudan"
+msgstr "Sudan"
+
+#. module: base
+#: view:res.lang:0
+msgid "%m - Month as a decimal number [01,12]."
+msgstr "%m - Month as a decimal number [01,12]."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export Data"
+msgstr "Export Data"
+
+#. module: base
+#: model:res.country,name:base.fm
+msgid "Micronesia"
+msgstr "Micronesia"
+
+#. 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
+#: model:res.country,name:base.il
+msgid "Israel"
+msgstr "Israel"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_server_action_create
+msgid "Create Action"
+msgstr "Create Action"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "html"
+msgstr "html"
+
+#. module: base
+#: field:res.lang,time_format:0
+msgid "Time Format"
+msgstr "Time Format"
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+msgid "Your system will be upgraded."
+msgstr "Системата Ви ще бъде обновена."
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Defined Reports"
+msgstr "Defined Reports"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-tools"
+msgstr "terp-tools"
+
+#. module: base
+#: view:ir.actions.report.xml:0
+msgid "Report xml"
+msgstr "Справка xml"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_module_open_categ
+#: model:ir.actions.act_window,name:base.open_module_tree
+#: view:ir.module.module:0
+#: model:ir.ui.menu,name:base.menu_module_tree
+#: field:wizard.module.lang.export,modules:0
+msgid "Modules"
+msgstr "Модули"
+
+#. module: base
+#: selection:workflow.activity,kind:0
+#: field:workflow.activity,subflow_id:0
+#: field:workflow.workitem,subflow_id:0
+msgid "Subflow"
+msgstr "Подпоследователност"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDO"
+msgstr "STOCK_UNDO"
+
+#. 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
+#: selection:ir.ui.menu,icon:0
+msgid "terp-sale"
+msgstr "terp-sale"
+
+#. module: base
+#: view:res.lang:0
+msgid "%d - Day of the month as a decimal number [01,31]."
+msgstr "%d - Day of the month as a decimal number [01,31]."
+
+#. module: base
+#: view:res.lang:0
+msgid "%I - Hour (12-hour clock) as a decimal number [01,12]."
+msgstr "%I - Hour (12-hour clock) as a decimal number [01,12]."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Romanian / limba română"
+msgstr "Romanian / limba română"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ADD"
+msgstr "STOCK_ADD"
+
+#. module: base
+#: field:ir.cron,doall:0
+msgid "Repeat Missed"
+msgstr "Repeat Missed"
+
+#. module: base
+#: help:ir.actions.server,state:0
+msgid "Type of the Action that is to be executed"
+msgstr "Type of the Action that is to be executed"
+
+#. module: base
+#: field:ir.server.object.lines,server_id:0
+msgid "Object Mapping"
+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)"
+
+#. module: base
+#: model:res.country,name:base.uk
+msgid "United Kingdom"
+msgstr "United Kingdom"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Create / Write"
+msgstr "Създай / Запиши"
+
+#. module: base
+#: help:res.partner.category,active:0
+msgid "The active field allows you to hide the category without removing it."
+msgstr "The active field allows you to hide the category without removing it."
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Object:"
+msgstr "Обект:"
+
+#. module: base
+#: model:res.country,name:base.bw
+msgid "Botswana"
+msgstr "Botswana"
+
+#. 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 "Partner Titles"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+msgid "Service"
+msgstr "Service"
+
+#. module: base
+#: help:ir.actions.act_window,auto_refresh:0
+msgid "Add an auto-refresh on the view"
+msgstr "Добави автообновяване на изгледа"
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+#: wizard_field:module.upgrade,next,module_download:0
+msgid "Modules to download"
+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:wizard.module.lang.export,advice:0
+msgid "Advice"
+msgstr "Advice"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Lithuanian / Lietuvių kalba"
+msgstr "Lithuanian / Lietuvių kalba"
+
+#. 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 "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."
+
+#. module: base
+#: field:ir.ui.view,inherit_id:0
+msgid "Inherited View"
+msgstr "Наследен изглед"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_translation
+msgid "ir.translation"
+msgstr "ir.translation"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule_group
+msgid "ir.rule.group"
+msgstr "ir.rule.group"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_install
+#: model:ir.ui.menu,name:base.menu_module_tree_install
+msgid "Installed modules"
+msgstr "Инсталирани модули"
+
+#. module: base
+#: model:res.country,name:base.lc
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract
+#: view:maintenance.contract:0
+msgid "Maintenance Contract"
+msgstr "Maintenance Contract"
+
+#. module: base
+#: help:ir.actions.server,trigger_obj_id:0
+msgid "Select the object from the model on which the workflow will executed."
+msgstr "Select the object from the model on which the workflow will executed."
+
+#. module: base
+#: field:ir.model,state:0
+#: field:ir.model.fields,state:0
+#: field:ir.model.grid,state:0
+msgid "Manually Created"
+msgstr "Manually Created"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Calculate Count"
+msgstr "Изчисли бройката"
+
+#. module: base
+#: field:ir.model.access,perm_create:0
+msgid "Create Access"
+msgstr "Задай достъп"
+
+#. module: base
+#: field:res.partner.address,state_id:0
+msgid "Fed. State"
+msgstr "Fed. State"
+
+#. module: base
+#: model:res.country,name:base.io
+msgid "British Indian Ocean Territory"
+msgstr "British Indian Ocean Territory"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mapping"
+msgstr "Свързване на полета"
+
+#. module: base
+#: field:maintenance.contract,date_start:0
+msgid "Starting Date"
+msgstr "Starting Date"
+
+#. module: base
+#: view:ir.model:0
+#: 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 "Left-to-Right"
+
+#. module: base
+#: field:res.lang,translatable:0
+msgid "Translatable"
+msgstr "Преводим"
+
+#. module: base
+#: model:res.country,name:base.vn
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. module: base
+#: field:res.users,signature:0
+msgid "Signature"
+msgstr "Подпис"
+
+#. module: base
+#: field:res.partner.category,complete_name:0
+msgid "Full Name"
+msgstr "Full Name"
+
+#. module: base
+#: model:res.country,name:base.mz
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. module: base
+#: field:ir.actions.server,message:0
+#: wizard_field:res.partner.spam_send,init,text:0
+msgid "Message"
+msgstr "Съобщение"
+
+#. module: base
+#: field:ir.actions.act_window.view,multi:0
+msgid "On Multiple Doc."
+msgstr "On Multiple Doc."
+
+#. module: base
+#: field:res.partner,address:0
+#: view:res.partner.address:0
+msgid "Contacts"
+msgstr "Контакти"
+
+#. module: base
+#: model:res.country,name:base.fo
+msgid "Faroe Islands"
+msgstr "Faroe Islands"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_upgrade
+#: model:ir.ui.menu,name:base.menu_wizard_upgrade
+msgid "Apply Scheduled Upgrades"
+msgstr "Приложи планираните обновявания"
+
+#. module: base
+#: model:ir.ui.menu,name:base.maintenance
+msgid "Maintenance"
+msgstr "Maintenance"
+
+#. module: base
+#: model:res.country,name:base.mp
+msgid "Northern Mariana Islands"
+msgstr "Northern Mariana Islands"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "module,type,name,res_id,src,value"
+msgstr "module,type,name,res_id,src,value"
+
+#. module: base
+#: rml:ir.module.reference:0
+#: field:maintenance.contract.module,version:0
+msgid "Version"
+msgstr "Version"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create
+msgid "wizard.ir.model.menu.create"
+msgstr "wizard.ir.model.menu.create"
+
+#. module: base
+#: view:workflow.transition:0
+msgid "Transition"
+msgstr "Преход"
+
+#. module: base
+#: field:ir.actions.todo,active:0
+#: field:ir.cron,active:0
+#: field:ir.module.repository,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.canal,active:0
+#: field:res.partner.category,active:0
+#: field:res.partner.event.type,active:0
+#: field:res.request,active:0
+#: field:res.users,active:0
+msgid "Active"
+msgstr "Активен"
+
+#. module: base
+#: model:res.country,name:base.na
+msgid "Namibia"
+msgstr "Namibia"
+
+#. module: base
+#: model:res.country,name:base.mn
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#: code:addons/base/ir/ir_model.py:0
+#: code:addons/base/maintenance/maintenance.py:0
+#: code:addons/base/module/module.py:0
+#: code:addons/base/res/res_currency.py:0
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Error"
+msgstr "Error"
+
+#. module: base
+#: view:res.partner.som:0
+msgid "Partner State of Mind"
+msgstr "Удовлетвореност на клиента"
+
+#. module: base
+#: selection:ir.ui.view,type:0
+msgid "mdx"
+msgstr "mdx"
+
+#. module: base
+#: model:res.country,name:base.bi
+msgid "Burundi"
+msgstr "Burundi"
+
+#. module: base
+#: wizard_button:base.module.import,import,open_window:0
+#: wizard_button:module.upgrade,end,end:0
+#: wizard_button:module.upgrade,start,end:0
+#: wizard_button:server.action.create,init,end:0
+#: wizard_button:server.action.create,step_1,end:0
+#: view:wizard.module.lang.export:0
+msgid "Close"
+msgstr "Затвори"
+
+#. module: base
+#: model:res.country,name:base.bt
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_11
+msgid "Textile Suppliers"
+msgstr "Textile Suppliers"
+
+#. module: base
+#: selection:ir.actions.url,target:0
+msgid "This Window"
+msgstr "Този прозорец"
+
+#. module: base
+#: field:wizard.module.lang.export,format:0
+msgid "File Format"
+msgstr "Формат на файла"
+
+#. module: base
+#: model:ir.model,name:base.model_res_config_view
+msgid "res.config.view"
+msgstr "res.config.view"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_INDENT"
+msgstr "STOCK_INDENT"
+
+#. module: base
+#: view:workflow.workitem:0
+msgid "Workflow Workitems"
+msgstr "Последователност от действия за задача"
+
+#. module: base
+#: model:res.country,name:base.vc
+msgid "Saint Vincent & Grenadines"
+msgstr "Saint Vincent & Grenadines"
+
+#. module: base
+#: field:ir.model.config,password:0
+#: field:maintenance.contract,password:0
+#: field:maintenance.contract.wizard,password:0
+#: wizard_field:res.partner.sms_send,init,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
+#: field:ir.model.grid,field_id:0
+#: field:ir.property,fields_id:0
+#: field:ir.report.custom,fields_child0:0
+#: model:ir.ui.menu,name:base.ir_model_model_fields
+msgid "Fields"
+msgstr "Полета"
+
+#. module: base
+#: wizard_view:base.module.import,import:0
+msgid "Module successfully imported !"
+msgstr "Модулът е успешно вмъкнат!"
+
+#. module: base
+#: model:res.country,name:base.mk
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. module: base
+#: field:res.company,rml_header2:0
+msgid "RML Internal Header"
+msgstr "RML вътрешен колонтитул"
+
+#. module: base
+#: selection:ir.report.custom,print_format:0
+msgid "a4"
+msgstr "А4"
+
+#. module: base
+#: view:ir.rule.group:0
+msgid "Multiple rules on same objects are joined using operator OR"
+msgstr "Няколко правила към един и същ обект са обединени с помощта на оператор OR (или)"
+
+#. module: base
+#: model:res.partner.bank.type.field,name:base.bank_normal_field
+msgid "acc_number"
+msgstr "acc_number"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_partner_address_form
+msgid "Addresses"
+msgstr "Addresses"
+
+#. module: base
+#: model:res.country,name:base.mm
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Chinese (CN) / 简体中文"
+msgstr "Chinese (CN) / 简体中文"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_NEXT"
+msgstr "STOCK_MEDIA_NEXT"
+
+#. module: base
+#: field:res.bank,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 "Yugoslavia"
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+msgid "Note that this operation my take a few minutes."
+msgstr "Забележка: тази операция може да продължи няколко минути"
+
+#. module: base
+#: field:ir.model.data,name:0
+msgid "XML Identifier"
+msgstr "XML идентификатор"
+
+#. module: base
+#: model:res.country,name:base.ca
+msgid "Canada"
+msgstr "Canada"
+
+#. module: base
+#: field:ir.actions.report.xml,report_name:0
+msgid "Internal Name"
+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
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr "Invalid model name in the action definition."
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,text:0
+msgid "SMS Message"
+msgstr "SMS съобщение"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_EDIT"
+msgstr "STOCK_EDIT"
+
+#. module: base
+#: model:res.country,name:base.cm
+msgid "Cameroon"
+msgstr "Cameroon"
+
+#. module: base
+#: model:res.country,name:base.bf
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_FORWARD"
+msgstr "STOCK_MEDIA_FORWARD"
+
+#. 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
+#: model:res.country,name:base.cc
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) Islands"
+
+#. module: base
+#: field:workflow.instance,uid:0
+msgid "User ID"
+msgstr "Самоличност"
+
+#. module: base
+#: view:res.lang:0
+msgid "11. %U or %W       ==> 48 (49th week)"
+msgstr "11. %U or %W       ==> 48 (49th week)"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type_field
+msgid "Bank type fields"
+msgstr "Полета от банковите видове"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "type,name,res_id,src,value"
+msgstr "type,name,res_id,src,value"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Dutch / Nederlands"
+msgstr "Dutch / Nederlands"
+
+#. module: base
+#: wizard_view:server.action.create,step_1:0
+#: wizard_field:server.action.create,step_1,report:0
+msgid "Select Report"
+msgstr "Select Report"
+
+#. module: base
+#: field:ir.report.custom.fields,fc1_condition:0
+#: field:ir.report.custom.fields,fc2_condition:0
+#: field:ir.report.custom.fields,fc3_condition:0
+msgid "condition"
+msgstr "условие"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "1cm 28cm 20cm 28cm"
+msgstr "1cm 28cm 20cm 28cm"
+
+#. module: base
+#: field:ir.sequence,suffix:0
+msgid "Suffix"
+msgstr "Суфикс"
+
+#. module: base
+#: model:res.country,name:base.mo
+msgid "Macau"
+msgstr "Macau"
+
+#. module: base
+#: model:ir.actions.report.xml,name:base.res_partner_address_report
+msgid "Labels"
+msgstr "Етикети"
+
+#. module: base
+#: wizard_field:res.partner.spam_send,init,from:0
+msgid "Sender's email"
+msgstr "E-mail на изпращащия"
+
+#. module: base
+#: field:ir.default,field_name:0
+msgid "Object Field"
+msgstr "Object Field"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NEW"
+msgstr "STOCK_NEW"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "None"
+msgstr "Никаква"
+
+#. module: base
+#: view:ir.report.custom.fields:0
+msgid "Report Fields"
+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 "Connect Events to Actions"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ABOUT"
+msgstr "STOCK_ABOUT"
+
+#. module: base
+#: field:ir.module.category,parent_id:0
+#: field:res.partner.category,parent_id:0
+msgid "Parent Category"
+msgstr "Родителска категория"
+
+#. module: base
+#: model:res.country,name:base.fi
+msgid "Finland"
+msgstr "Finland"
+
+#. 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 "ir.ui.menu"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Uninstall"
+msgstr "Прекъсни деинсталацията"
+
+#. module: base
+#: model:ir.model,name:base.model_res_currency_rate
+msgid "Currency Rate"
+msgstr "Валутен курс"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_server_object_lines
+msgid "ir.server.object.lines"
+msgstr "ir.server.object.lines"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Module %s: Invalid Quality Certificate"
+msgstr "Module %s: Invalid Quality Certificate"
+
+#. module: base
+#: model:res.country,name:base.kw
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. 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 "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."
+
+#. module: base
+#: model:res.country,name:base.ng
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_event
+msgid "res.partner.event"
+msgstr "res.partner.event"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDERLINE"
+msgstr "STOCK_UNDERLINE"
+
+#. module: base
+#: view:ir.values:0
+msgid "Values for Event Type"
+msgstr "Values for Event Type"
+
+#. module: base
+#: model:res.country,name:base.zr
+msgid "Zaire"
+msgstr "Zaire"
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Always Searchable"
+msgstr "Винаги търсим"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CLOSE"
+msgstr "STOCK_CLOSE"
+
+#. module: base
+#: model:res.country,name:base.hk
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. module: base
+#: help:ir.actions.server,name:0
+msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices"
+msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_100"
+msgstr "STOCK_ZOOM_100"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_BOLD"
+msgstr "STOCK_BOLD"
+
+#. module: base
+#: model:res.country,name:base.ph
+msgid "Philippines"
+msgstr "Philippines"
+
+#. module: base
+#: model:res.country,name:base.ma
+msgid "Morocco"
+msgstr "Morocco"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-graph"
+msgstr "terp-graph"
+
+#. module: base
+#: view:res.lang:0
+msgid "2.  %a ,%A         ==> Fri, Friday"
+msgstr "2.  %a ,%A         ==> Fri, Friday"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes."
+msgstr "Избраният език беше успешно инсталиран. Трябва да измените потребителските настройки и да отворите ново меню за да видите промените."
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_event_type
+#: model:ir.ui.menu,name:base.next_id_14
+#: view:res.partner.event:0
+msgid "Partner Events"
+msgstr "Партньорски събития"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_transition
+msgid "workflow.transition"
+msgstr "workflow.transition"
+
+#. module: base
+#: view:res.lang:0
+msgid "%a - Abbreviated weekday name."
+msgstr "%a - Abbreviated weekday name."
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Introspection report on objects"
+msgstr "Самоанализираща справка на обекти"
+
+#. module: base
+#: model:res.country,name:base.pf
+msgid "Polynesia (French)"
+msgstr "Polynesia (French)"
+
+#. module: base
+#: model:res.country,name:base.dm
+msgid "Dominica"
+msgstr "Dominica"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard
+#: wizard_button:res.partner.sms_send,init,send:0
+msgid "Send SMS"
+msgstr "Изпрати SMS"
+
+#. module: base
+#: model:res.country,name:base.np
+msgid "Nepal"
+msgstr "Nepal"
+
+#. module: base
+#: field:res.partner.event,event_ical_id:0
+msgid "iCal id"
+msgstr "iCal идентификатор"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_function_form
+#: model:ir.ui.menu,name:base.menu_partner_function_form
+#: view:res.partner.function:0
+msgid "Partner Functions"
+msgstr "Функции на партньора"
+
+#. module: base
+#: wizard_view:res.partner.sms_send,init:0
+msgid "Bulk SMS send"
+msgstr "Масирано изпращане на смс-и"
+
+#. module: base
+#: view:res.lang:0
+msgid "%Y - Year with century as a decimal number."
+msgstr "%Y - Year with century as a decimal number."
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Pie Chart"
+msgstr "Pie Chart"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Seconde: %(sec)s"
+msgstr "Seconde: %(sec)s"
+
+#. module: base
+#: selection:ir.translation,type:0
+#: field:res.bank,code:0
+#: field:res.currency,code:0
+#: field:res.lang,code:0
+#: field:res.partner,ref:0
+#: field:res.partner.bank.type,code:0
+#: field:res.partner.function,code:0
+msgid "Code"
+msgstr "Код"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Can not create the module file:\n %s"
+msgstr "Can not create the module file:\n %s"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_update
+#: model:ir.ui.menu,name:base.menu_module_update
+msgid "Update Modules List"
+msgstr "Обнови списъка с модули"
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Continue"
+msgstr "Продължи"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_property_form
+#: model:ir.ui.menu,name:base.menu_ir_property_form
+msgid "Default Properties"
+msgstr "Default Properties"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Slovenian / slovenščina"
+msgstr "Slovenian / slovenščina"
+
+#. module: base
+#: field:ir.actions.report.xml,attachment_use:0
+msgid "Reload from Attachment"
+msgstr "Reload from Attachment"
+
+#. module: base
+#: model:res.country,name:base.bv
+msgid "Bouvet Island"
+msgstr "Bouvet Island"
+
+#. module: base
+#: field:ir.report.custom,print_orientation:0
+msgid "Print orientation"
+msgstr "Ориентация при печат"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_wizard_lang_export
+#: model:ir.ui.menu,name:base.menu_wizard_lang_export
+msgid "Export a Translation File"
+msgstr "Извличане на файл с превод"
+
+#. module: base
+#: field:ir.attachment,name:0
+msgid "Attachment Name"
+msgstr "Име на прикачения файл"
+
+#. module: base
+#: wizard_field:module.lang.import,init,data:0
+#: field:wizard.module.lang.export,data:0
+msgid "File"
+msgstr "Файл"
+
+#. module: base
+#: view:res.users:0
+msgid "Add User"
+msgstr "Add User"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_configuration_wizard
+msgid "ir.actions.configuration.wizard"
+msgstr "ir.actions.configuration.wizard"
+
+#. module: base
+#: view:res.lang:0
+msgid "%b - Abbreviated month name."
+msgstr "%b - Abbreviated month name."
+
+#. module: base
+#: field:res.partner,supplier: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 "Multi Actions"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "_Close"
+msgstr "_Close"
+
+#. module: base
+#: selection:maintenance.contract,kind:0
+msgid "Full"
+msgstr "Full"
+
+#. module: base
+#: model:res.country,name:base.as
+msgid "American Samoa"
+msgstr "American Samoa"
+
+#. 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 "Oбекти"
+
+#. module: base
+#: view:res.request.link:0
+msgid "Request Link"
+msgstr "Връзка към заявка"
+
+#. module: base
+#: field:ir.module.module,url:0
+#: field:ir.module.repository,url:0
+msgid "URL"
+msgstr "Адрес (URL)"
+
+#. 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 "Iteration"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-stock"
+msgstr "terp-stock"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify the Partner Email address !"
+msgstr "Please specify the Partner Email address !"
+
+#. module: base
+#: model:res.country,name:base.ae
+msgid "United Arab Emirates"
+msgstr "United Arab Emirates"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_RECORD"
+msgstr "STOCK_MEDIA_RECORD"
+
+#. module: base
+#: model:res.country,name:base.re
+msgid "Reunion (French)"
+msgstr "Reunion (French)"
+
+#. module: base
+#: field:ir.rule.group,global:0
+msgid "Global"
+msgstr "Общи"
+
+#. module: base
+#: model:res.country,name:base.cz
+msgid "Czech Republic"
+msgstr "Czech Republic"
+
+#. module: base
+#: model:res.country,name:base.sb
+msgid "Solomon Islands"
+msgstr "Solomon Islands"
+
+#. module: base
+#: view:res.lang:0
+msgid "8.  %I:%M:%S %p  ==> 06:25:20 PM"
+msgstr "8.  %I:%M:%S %p  ==> 06:25:20 PM"
+
+#. 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
+#: model:res.country,name:base.ua
+msgid "Ukraine"
+msgstr "Ukraine"
+
+#. module: base
+#: model:res.country,name:base.to
+msgid "Tonga"
+msgstr "Tonga"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_category
+#: view:ir.module.category:0
+msgid "Module Category"
+msgstr "Категория на модула"
+
+#. module: base
+#: model:res.country,name:base.us
+msgid "United States"
+msgstr "United States"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Reference Guide"
+msgstr "Съответстващо упътване"
+
+#. module: base
+#: model:res.country,name:base.ml
+msgid "Mali"
+msgstr "Mali"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNINDENT"
+msgstr "STOCK_UNINDENT"
+
+#. module: base
+#: field:ir.cron,interval_number:0
+msgid "Interval Number"
+msgstr "Интервал"
+
+#. module: base
+#: selection:maintenance.contract,kind:0
+msgid "Partial"
+msgstr "Partial"
+
+#. module: base
+#: model:res.country,name:base.tk
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. module: base
+#: field:ir.actions.report.xml,report_xsl:0
+msgid "XSL path"
+msgstr "XLS път"
+
+#. module: base
+#: model:res.country,name:base.bn
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. module: base
+#: 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 "User Interface"
+
+#. module: base
+#: field:res.partner,child_ids:0
+#: field:res.request,ref_partner_id:0
+msgid "Partner Ref."
+msgstr "Partner Ref."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_INFO"
+msgstr "STOCK_DIALOG_INFO"
+
+#. module: base
+#: field:ir.attachment,create_date:0
+msgid "Date Created"
+msgstr "Date Created"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_todo
+msgid "ir.actions.todo"
+msgstr "ir.actions.todo"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Get file"
+msgstr "Вземи файл"
+
+#. module: base
+#: wizard_view:module.module.update,init:0
+msgid "This function will check for new modules in the 'addons' path and on module repositories:"
+msgstr "Тази функция ще провери за нови модули в пътя за добавки и в хранилищата за модули:"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_BACK"
+msgstr "STOCK_GO_BACK"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "AccessError"
+msgstr "AccessError"
+
+#. module: base
+#: model:res.country,name:base.dz
+msgid "Algeria"
+msgstr "Algeria"
+
+#. module: base
+#: model:res.country,name:base.be
+msgid "Belgium"
+msgstr "Belgium"
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Security (Groups)"
+msgstr "Security (Groups)"
+
+#. module: base
+#: field:ir.translation,lang:0
+#: wizard_field:module.lang.install,init,lang:0
+#: field:res.partner,lang:0
+#: field:res.users,context_lang:0
+#: field:wizard.module.lang.export,lang:0
+#: field:wizard.module.update_translations,lang:0
+msgid "Language"
+msgstr "Език"
+
+#. module: base
+#: model:res.country,name:base.gm
+msgid "Gambia"
+msgstr "Gambia"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_company_form
+#: model:ir.ui.menu,name:base.menu_action_res_company_form
+#: view:res.company:0
+msgid "Companies"
+msgstr "Компании"
+
+#. module: base
+#: view:ir.actions.server:0
+#: field:ir.actions.server,code:0
+#: selection:ir.actions.server,state:0
+msgid "Python Code"
+msgstr "Python код"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_module_import.py:0
+#, python-format
+msgid "Can not create the module file: %s !"
+msgstr "Can not create the module file: %s !"
+
+#. module: base
+#: model:ir.module.module,description:base.module_meta_information
+msgid "The kernel of OpenERP, needed for all installation."
+msgstr "The kernel of OpenERP, needed for all installation."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_customer_form
+#: model:ir.ui.menu,name:base.menu_partner_customer_form
+msgid "Customers Partners"
+msgstr "Партньори на клиента"
+
+#. module: base
+#: wizard_button:base.module.import,init,end:0
+#: selection:ir.actions.todo,state:0
+#: wizard_button:module.lang.import,init,end:0
+#: wizard_button:module.lang.install,init,end:0
+#: wizard_button:module.module.update,init,end:0
+#: wizard_button:module.upgrade,next,end:0
+#: wizard_button:res.partner.sms_send,init,end:0
+#: wizard_button:res.partner.spam_send,init,end:0
+#: view:wizard.ir.model.menu.create:0
+#: view:wizard.module.lang.export:0
+#: view:wizard.module.update_translations:0
+msgid "Cancel"
+msgstr "Откажи"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "PO File"
+msgstr "Файл с превод"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SPELL_CHECK"
+msgstr "STOCK_SPELL_CHECK"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_9
+msgid "Components Supplier"
+msgstr "Components Supplier"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_users
+#: field:ir.actions.todo,users_id:0
+#: field:ir.default,uid:0
+#: field:ir.rule.group,users: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
+#: field:res.roles,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 "Iceland"
+
+#. module: base
+#: view:res.users:0
+msgid "Roles are used to defined available actions, provided by workflows."
+msgstr "Roles are used to defined available actions, provided by workflows."
+
+#. module: base
+#: model:res.country,name:base.de
+msgid "Germany"
+msgstr "Germany"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Week of the year: %(woy)s"
+msgstr "Week of the year: %(woy)s"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_14
+msgid "Bad customers"
+msgstr "Bad customers"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_HARDDISK"
+msgstr "STOCK_HARDDISK"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Reports :"
+msgstr "Reports :"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_APPLY"
+msgstr "STOCK_APPLY"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_maintenance_contract_form
+#: model:ir.ui.menu,name:base.menu_maintenance_contract
+msgid "Your Maintenance Contracts"
+msgstr "Your Maintenance Contracts"
+
+#. module: base
+#: view:res.users:0
+msgid "Please note that you will have to logout and relog if you change your password."
+msgstr "Помнете след промяна на паролата трябва да излезете и влезете отново."
+
+#. module: base
+#: model:res.country,name:base.gy
+msgid "Guyana"
+msgstr "Guyana"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Portugese (BR) / português (BR)"
+msgstr "Portugese (BR) / português (BR)"
+
+#. module: base
+#: field:ir.actions.server,record_id:0
+msgid "Create Id"
+msgstr "Create Id"
+
+#. module: base
+#: model:res.country,name:base.hn
+msgid "Honduras"
+msgstr "Honduras"
+
+#. module: base
+#: model:res.country,name:base.eg
+msgid "Egypt"
+msgstr "Egypt"
+
+#. module: base
+#: help:ir.actions.server,model_id:0
+msgid "Select the object on which the action will work (read, write, create)."
+msgstr "Select the object on which the action will work (read, write, create)."
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify server option --email-from !"
+msgstr "Please specify server option --email-from !"
+
+#. module: base
+#: view:ir.model:0
+msgid "Fields Description"
+msgstr "Описание на полетата"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CDROM"
+msgstr "STOCK_CDROM"
+
+#. module: base
+#: field:ir.model.fields,readonly:0
+#: field:res.partner.bank.type.field,readonly:0
+msgid "Readonly"
+msgstr "само за четене"
+
+#. module: base
+#: field:res.partner.event,type:0
+msgid "Type of Event"
+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 Types"
+msgstr "Sequence Types"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be installed"
+msgstr "Ще бъдат инсталирани"
+
+#. module: base
+#: model:ir.module.module,shortdesc:base.module_meta_information
+msgid "Base"
+msgstr "Base"
+
+#. module: base
+#: model:res.country,name:base.lr
+msgid "Liberia"
+msgstr "Liberia"
+
+#. module: base
+#: view:ir.attachment:0
+#: view:ir.model:0
+#: view:res.groups:0
+#: view:res.partner:0
+#: field:res.partner,comment:0
+#: field:res.partner.function,ref:0
+msgid "Notes"
+msgstr "Бележки"
+
+#. module: base
+#: field:ir.property,value:0
+#: selection:ir.server.object.lines,type:0
+#: field:ir.server.object.lines,value:0
+#: field:ir.values,value:0
+#: field:ir.values,value_unpickle:0
+msgid "Value"
+msgstr "Стойност"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "Update Translations"
+msgstr "Обнови преводите"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Set"
+msgstr "Задаване"
+
+#. module: base
+#: model:res.country,name:base.mc
+msgid "Monaco"
+msgstr "Monaco"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Minutes"
+msgstr "Минути"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "The modules have been upgraded / installed !"
+msgstr "Модулите бяха обновени / инсталирани!"
+
+#. module: base
+#: selection:ir.translation,type:0
+#: view:wizard.module.lang.export:0
+msgid "Help"
+msgstr "Помощ"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view
+msgid "ir.ui.view"
+msgstr "ir.ui.view"
+
+#. module: base
+#: wizard_button:server.action.create,step_1,create:0
+msgid "Create"
+msgstr "Create"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Current Year with Century: %(year)s"
+msgstr "Current Year with Century: %(year)s"
+
+#. module: base
+#: field:ir.exports,export_fields:0
+msgid "Export ID"
+msgstr "Export ID"
+
+#. module: base
+#: model:res.country,name:base.fr
+msgid "France"
+msgstr "France"
+
+#. module: base
+#: field:workflow.activity,flow_stop:0
+msgid "Flow Stop"
+msgstr "Спиране на процес"
+
+#. module: base
+#: model:res.country,name:base.ar
+msgid "Argentina"
+msgstr "Argentina"
+
+#. module: base
+#: model:res.country,name:base.af
+msgid "Afghanistan, Islamic State of"
+msgstr "Afghanistan, Islamic State of"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_module_import.py:0
+#, python-format
+msgid "Error !"
+msgstr "Error !"
+
+#. module: base
+#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry
+msgid "country_id"
+msgstr "country_id"
+
+#. module: base
+#: field:ir.cron,interval_type:0
+msgid "Interval Unit"
+msgstr "Единица интервал"
+
+#. module: base
+#: field:maintenance.contract,kind:0
+#: field:workflow.activity,kind:0
+msgid "Kind"
+msgstr "Вид"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "Manual"
+msgstr "Manual"
+
+#. module: base
+#: field:res.bank,fax:0
+#: field:res.partner.address,fax:0
+msgid "Fax"
+msgstr "Факс"
+
+#. module: base
+#: field:res.lang,thousands_sep:0
+msgid "Thousands Separator"
+msgstr "Thousands Separator"
+
+#. module: base
+#: field:res.request,create_date:0
+msgid "Created Date"
+msgstr "Created Date"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Line Plot"
+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 "Select the action that will be executed. Loop action will not be avaliable inside loop."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Chinese (TW) / 正體字"
+msgstr "Chinese (TW) / 正體字"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_UP"
+msgstr "STOCK_GO_UP"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request
+msgid "res.request"
+msgstr "res.request"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "pdf"
+msgstr "pdf"
+
+#. module: base
+#: field:ir.default,company_id:0
+#: field:ir.property,company_id:0
+#: field:ir.values,company_id:0
+#: view:res.company:0
+#: field:res.users,company_id:0
+msgid "Company"
+msgstr "Фирма"
+
+#. module: base
+#: field:ir.attachment,datas:0
+msgid "File Content"
+msgstr "File Content"
+
+#. module: base
+#: model:res.country,name:base.pa
+msgid "Panama"
+msgstr "Panama"
+
+#. module: base
+#: selection:ir.report.custom,state:0
+msgid "Unsubscribed"
+msgstr "Неабониран"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Preview"
+msgstr "Preview"
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Skip Step"
+msgstr "Пропусни стъпка(та)"
+
+#. module: base
+#: model:res.country,name:base.pn
+msgid "Pitcairn Island"
+msgstr "Pitcairn Island"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_partner_event_type-act
+#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act
+msgid "Active Partner Events"
+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
+#: view:ir.sequence:0
+msgid "Day of the year: %(doy)s"
+msgstr "Day of the year: %(doy)s"
+
+#. module: base
+#: model:res.country,name:base.nt
+msgid "Neutral Zone"
+msgstr "Neutral Zone"
+
+#. module: base
+#: view:ir.model:0
+#: view:ir.model.fields:0
+#: view:ir.property:0
+#: model:ir.ui.menu,name:base.next_id_15
+msgid "Properties"
+msgstr "Свойства"
+
+#. module: base
+#: view:res.lang:0
+msgid "%A - Full weekday name."
+msgstr "%A - Full weekday name."
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Months"
+msgstr "Месеца"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Selection"
+msgstr "Избрано"
+
+#. module: base
+#: field:ir.rule,domain_force:0
+msgid "Force Domain"
+msgstr "Създай изрично домейн"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_attachment
+#: view:ir.attachment:0
+#: model:ir.ui.menu,name:base.menu_action_attachment
+msgid "Attachments"
+msgstr "Прикачени файлове"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "_Validate"
+msgstr "_Validate"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract_wizard
+msgid "maintenance.contract.wizard"
+msgstr "maintenance.contract.wizard"
+
+#. 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
+#: selection:maintenance.contract.wizard,state:0
+msgid "Validated"
+msgstr "Validated"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_miss
+msgid "Miss"
+msgstr "Г-ца"
+
+#. module: base
+#: field:ir.model.access,perm_write:0
+msgid "Write Access"
+msgstr "Права за запис"
+
+#. module: base
+#: field:res.bank,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 "Qatar"
+
+#. module: base
+#: model:res.country,name:base.it
+msgid "Italy"
+msgstr "Italy"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid "<>"
+msgstr "<>"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid "<="
+msgstr "<="
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Estonian / Eesti keel"
+msgstr "Estonian / Eesti keel"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Portugese / português"
+msgstr "Portugese / português"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-3 or later version"
+msgstr "GPL-3 or later version"
+
+#. module: base
+#: field:workflow.activity,action:0
+msgid "Python Action"
+msgstr "Изпълние на python код"
+
+#. module: base
+#: field:res.partner.event,probability:0
+msgid "Probability (0.50)"
+msgstr "Вероятност (0.50)"
+
+#. module: base
+#: field:ir.report.custom,repeat_header:0
+msgid "Repeat Header"
+msgstr "Повтори горен колонтитул"
+
+#. module: base
+#: field:res.users,address_id:0
+msgid "Address"
+msgstr "Адрес"
+
+#. module: base
+#: field:ir.module.module,latest_version:0
+msgid "Installed version"
+msgstr "Инсталирана версия"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_workflow_root
+msgid "Workflow Definitions"
+msgstr "Workflow Definitions"
+
+#. module: base
+#: model:res.country,name:base.mr
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. module: base
+#: view:workflow.activity:0
+#: field:workflow.workitem,act_id:0
+msgid "Activity"
+msgstr "Дейност"
+
+#. module: base
+#: field:res.company,parent_id:0
+msgid "Parent Company"
+msgstr "Родителска компания"
+
+#. module: base
+#: field:res.currency.rate,rate:0
+msgid "Rate"
+msgstr "Ставка"
+
+#. module: base
+#: model:res.country,name:base.cg
+msgid "Congo"
+msgstr "Congo"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports_line
+msgid "ir.exports.line"
+msgstr "ir.exports.line"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PAUSE"
+msgstr "STOCK_MEDIA_PAUSE"
+
+#. module: base
+#: model:ir.model,name:base.model_res_country_state
+msgid "Country state"
+msgstr "Провинция"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_property_form_all
+#: model:ir.ui.menu,name:base.menu_ir_property_form_all
+msgid "All Properties"
+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
+#: model:res.country,name:base.kn
+msgid "Saint Kitts & Nevis Anguilla"
+msgstr "Saint Kitts & Nevis Anguilla"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_HOME"
+msgstr "STOCK_HOME"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_sequence
+msgid "ir.sequence"
+msgstr "ir.sequence"
+
+#. 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 "Object in which you want to create / write the object. If it is empty then refer to the Object field."
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "Not Installed"
+msgstr "Не е инсталиран"
+
+#. module: base
+#: field:workflow.activity,out_transitions:0
+msgid "Outgoing Transitions"
+msgstr "Outgoing Transitions"
+
+#. module: base
+#: field:ir.ui.menu,icon:0
+msgid "Icon"
+msgstr "Икона"
+
+#. module: base
+#: wizard_button:module.lang.import,init,finish:0
+#: wizard_button:module.lang.install,start,end:0
+#: wizard_button:module.module.update,update,open_window:0
+msgid "Ok"
+msgstr "Добре"
+
+#. module: base
+#: model:res.country,name:base.mq
+msgid "Martinique (French)"
+msgstr "Martinique (French)"
+
+#. 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.next_id_12
+#: view:res.request:0
+msgid "Requests"
+msgstr "Заявки"
+
+#. module: base
+#: model:res.country,name:base.ye
+msgid "Yemen"
+msgstr "Yemen"
+
+#. module: base
+#: selection:workflow.activity,split_mode:0
+msgid "Or"
+msgstr "Или"
+
+#. module: base
+#: model:res.country,name:base.pk
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. module: base
+#: model:res.country,name:base.al
+msgid "Albania"
+msgstr "Albania"
+
+#. module: base
+#: model:res.country,name:base.ws
+msgid "Samoa"
+msgstr "Samoa"
+
+#. module: base
+#: field:ir.ui.menu,child_id:0
+msgid "Child IDs"
+msgstr "Child IDs"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Problem in configuration `Record Id` in Server Action!"
+msgstr "Problem in configuration `Record Id` in Server Action!"
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "This error occurs on database %s"
+msgstr "This error occurs on database %s"
+
+#. module: base
+#: wizard_button:base.module.import,init,import:0
+#: model:ir.actions.wizard,name:base.wizard_base_module_import
+#: model:ir.ui.menu,name:base.menu_wizard_module_import
+msgid "Import module"
+msgstr "Вмъкни модул"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DISCONNECT"
+msgstr "STOCK_DISCONNECT"
+
+#. module: base
+#: model:res.country,name:base.la
+msgid "Laos"
+msgstr "Laos"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Email"
+msgstr "Ел. поща"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_wizard_update_translations
+#: model:ir.ui.menu,name:base.menu_wizard_update_translations
+msgid "Resynchronise Terms"
+msgstr "Resynchronise Terms"
+
+#. module: base
+#: model:res.country,name:base.tg
+msgid "Togo"
+msgstr "Togo"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Other Proprietary"
+msgstr "Other Proprietary"
+
+#. module: base
+#: selection:workflow.activity,kind:0
+msgid "Stop All"
+msgstr "Спиране на всички"
+
+#. module: base
+#: view:res.lang:0
+msgid "3.  %x ,%X         ==> 12/05/08, 18:25:20"
+msgstr "3.  %x ,%X         ==> 12/05/08, 18:25:20"
+
+#. module: base
+#: selection:ir.model.fields,on_delete:0
+msgid "Cascade"
+msgstr "Каскадно"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Field %d should be a figure"
+msgstr "Field %d should be a figure"
+
+#. module: base
+#: view:ir.actions.configuration.wizard:0
+msgid "Next Configuration Step"
+msgstr "Next Configuration Step"
+
+#. module: base
+#: field:res.groups,comment:0
+msgid "Comment"
+msgstr "Коментар"
+
+#. module: base
+#: model:res.country,name:base.ro
+msgid "Romania"
+msgstr "Romania"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PREFERENCES"
+msgstr "STOCK_PREFERENCES"
+
+#. 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
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_LAST"
+msgstr "STOCK_GOTO_LAST"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_report_xml
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.report.xml"
+msgstr "ir.actions.report.xml"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once."
+msgstr "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once."
+
+#. module: base
+#: wizard_button:module.lang.install,init,start:0
+msgid "Start installation"
+msgstr "Започни инсталацията"
+
+#. module: base
+#: constraint:res.partner:0
+msgid "Error ! You can not create recursive associated members."
+msgstr "Грешка ! Не може да създадете рекурсивно свързани членове"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_2
+msgid "OpenERP Partners"
+msgstr "OpenERP Partners"
+
+#. module: base
+#: model:res.country,name:base.by
+msgid "Belarus"
+msgstr "Belarus"
+
+#. 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.server,name:0
+#: field:ir.actions.url,name:0
+msgid "Action Name"
+msgstr "Название на действието"
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "Normal"
+msgstr "Нормален"
+
+#. module: base
+#: field:res.bank,street2:0
+#: field:res.partner.address,street2:0
+msgid "Street2"
+msgstr "Улица2"
+
+#. module: base
+#: field:ir.cron,user_id:0
+#: field:ir.ui.view.custom,user_id:0
+#: field:ir.values,user_id:0
+#: field:res.partner.event,user_id:0
+#: view:res.users:0
+msgid "User"
+msgstr "Потребител"
+
+#. module: base
+#: model:res.country,name:base.pr
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. module: base
+#: code:addons/base/res/res_currency.py:0
+#, python-format
+msgid "No rate found \n' \\n"
+"                    'for the currency: %s \n' \\n"
+"                    'at the date: %s"
+msgstr "No rate found \n' \\n"
+"                    'for the currency: %s \n' \\n"
+"                    'at the date: %s"
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Open Window"
+msgstr "Отвори прозорец"
+
+#. module: base
+#: field:ir.module.repository,filter:0
+msgid "Filter"
+msgstr "Филтър"
+
+#. module: base
+#: model:res.country,name:base.ch
+msgid "Switzerland"
+msgstr "Switzerland"
+
+#. module: base
+#: model:res.country,name:base.gd
+msgid "Grenada"
+msgstr "Grenada"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Trigger Configuration"
+msgstr "Конфигурация на тригера"
+
+#. module: base
+#: selection:server.action.create,init,type:0
+msgid "Open Report"
+msgstr "Open Report"
+
+#. module: base
+#: field:res.currency,rounding:0
+msgid "Rounding factor"
+msgstr "Rounding factor"
+
+#. module: base
+#: model:ir.model,name:base.model_res_company
+msgid "res.company"
+msgstr "res.company"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "System upgrade done"
+msgstr "Обновяването на системата е завършило"
+
+#. module: base
+#: model:res.country,name:base.so
+msgid "Somalia"
+msgstr "Somalia"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_simple_view_form
+msgid "Configure Simple View"
+msgstr "Configure Simple View"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_13
+msgid "Important customers"
+msgstr "Important customers"
+
+#. module: base
+#: field:res.request,act_to:0
+#: field:res.request.history,act_to:0
+msgid "To"
+msgstr "До"
+
+#. module: base
+#: field:ir.cron,args:0
+msgid "Arguments"
+msgstr "Аргументи"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "sxw"
+msgstr "sxw"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL Version 2"
+msgstr "GPL Version 2"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL Version 3"
+msgstr "GPL Version 3"
+
+#. module: base
+#: field:ir.actions.report.xml,auto:0
+msgid "Automatic XSL:RML"
+msgstr "Автоамтичен XSL:RML"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Manual domain setup"
+msgstr "Ръчна настройка на домейн"
+
+#. module: base
+#: field:res.partner,customer:0
+#: model:res.partner.category,name:base.res_partner_category_0
+#: selection:res.partner.event,partner_type:0
+msgid "Customer"
+msgstr "Клиент"
+
+#. module: base
+#: field:ir.actions.report.custom,name:0
+#: field:ir.report.custom,name:0
+msgid "Report Name"
+msgstr "Име на справката"
+
+#. module: base
+#: field:ir.module.module,shortdesc:0
+msgid "Short Description"
+msgstr "Short Description"
+
+#. module: base
+#: field:res.partner.event,partner_type:0
+msgid "Partner Relation"
+msgstr "Партньорски отношения"
+
+#. module: base
+#: field:ir.actions.act_window,context:0
+msgid "Context Value"
+msgstr "Стойност според контекста"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Hour 00->24: %(h24)s"
+msgstr "Hour 00->24: %(h24)s"
+
+#. module: base
+#: field:res.request.history,date_sent:0
+msgid "Date sent"
+msgstr "Дата на изпращане"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Month: %(month)s"
+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.module.repository,sequence:0
+#: field:ir.report.custom.fields,sequence:0
+#: view:ir.sequence:0
+#: field:ir.ui.menu,sequence:0
+#: field:ir.ui.view_sc,sequence:0
+#: field:res.partner.bank,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 "Tunisia"
+
+#. module: base
+#: field:ir.actions.wizard,name:0
+msgid "Wizard Info"
+msgstr "Wizard Info"
+
+#. module: base
+#: help:ir.cron,numbercall:0
+msgid "Number of time the function is called,\n"
+"a negative number indicates that the function will always be called"
+msgstr "Number of time the function is called,\n"
+"a negative number indicates that the function will always be called"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Cancel Install"
+msgstr "Прекъсни инсталацията"
+
+#. module: base
+#: view:res.lang:0
+msgid "Legends for Date and Time Formats"
+msgstr "Legends for Date and Time Formats"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Monthly"
+msgstr "Месечно"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.res_partner_som-act
+#: model:ir.ui.menu,name:base.menu_res_partner_som-act
+msgid "States of mind"
+msgstr "Удовлетвореност"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SORT_ASCENDING"
+msgstr "STOCK_SORT_ASCENDING"
+
+#. 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:res.roles,parent_id:0
+msgid "Parent"
+msgstr "Родител"
+
+#. module: base
+#: field:ir.actions.act_window,res_model:0
+#: field:ir.actions.report.custom,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
+#: view:ir.model:0
+#: field:ir.model,model:0
+#: field:ir.model.access,model_id:0
+#: field:ir.model.data,model:0
+#: field:ir.model.grid,model:0
+#: field:ir.report.custom,model_id:0
+#: field:ir.rule.group,model_id:0
+#: selection:ir.translation,type:0
+#: field:ir.ui.view,model:0
+#: field:ir.values,model_id:0
+#: field:res.request.link,object:0
+#: field:wizard.ir.model.menu.create,model_id:0
+#: field:workflow.triggers,model:0
+msgid "Object"
+msgstr "Обект"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_default
+msgid "ir.default"
+msgstr "ir.default"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Minute: %(min)s"
+msgstr "Minute: %(min)s"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_10
+msgid "Scheduler"
+msgstr "Планировчик"
+
+#. module: base
+#: view:res.lang:0
+msgid "%w - Weekday as a decimal number [0(Sunday),6]."
+msgstr "%w - Weekday as a decimal number [0(Sunday),6]."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export translation file"
+msgstr "Извличане на файл с превод"
+
+#. module: base
+#: field:ir.ui.view_sc,user_id:0
+msgid "User Ref."
+msgstr "User Ref."
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Warning !"
+msgstr "Warning !"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_base_config
+#: model:ir.ui.menu,name:base.menu_config
+#: view:res.company:0
+msgid "Configuration"
+msgstr "Настройка"
+
+#. module: base
+#: field:ir.actions.server,expression:0
+msgid "Loop Expression"
+msgstr "Loop Expression"
+
+#. module: base
+#: selection:res.partner.event,partner_type:0
+msgid "Retailer"
+msgstr "Търговец"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Tabular"
+msgstr "Tabular"
+
+#. module: base
+#: field:ir.actions.todo,start_on:0
+msgid "Start On"
+msgstr "Start On"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_5
+msgid "Gold Partner"
+msgstr "Gold Partner"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner
+#: field:res.company,partner_id:0
+#: field:res.partner.address,partner_id:0
+#: field:res.partner.bank,partner_id:0
+#: field:res.partner.event,partner_id:0
+#: selection:res.partner.title,domain:0
+msgid "Partner"
+msgstr "Партньор"
+
+#. module: base
+#: model:res.country,name:base.tr
+msgid "Turkey"
+msgstr "Turkey"
+
+#. module: base
+#: model:res.country,name:base.fk
+msgid "Falkland Islands"
+msgstr "Falkland Islands"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "odt"
+msgstr "odt"
+
+#. module: base
+#: field:ir.actions.report.custom,type:0
+#: field:ir.actions.report.xml,type:0
+#: field:ir.report.custom,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:ir.report.custom,state:0
+#: field:maintenance.contract,state:0
+#: field:res.bank,state:0
+#: view:res.country.state:0
+#: field:res.partner.bank,state_id:0
+#: field:res.request,state:0
+#: field:workflow.instance,state:0
+#: field:workflow.workitem,state:0
+msgid "State"
+msgstr "Състояние"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-administration"
+msgstr "terp-administration"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_translation
+#: model:ir.ui.menu,name:base.menu_action_translation
+msgid "All terms"
+msgstr "Всички условия"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Galician / Galego"
+msgstr "Galician / Galego"
+
+#. module: base
+#: model:res.country,name:base.no
+msgid "Norway"
+msgstr "Norway"
+
+#. module: base
+#: view:res.lang:0
+msgid "4.  %b, %B         ==> Dec, December"
+msgstr "4.  %b, %B         ==> Dec, December"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_lang_install
+#: model:ir.ui.menu,name:base.menu_wizard_lang_install
+msgid "Load an Official Translation"
+msgstr "Load an Official Translation"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_10
+msgid "Open Source Service Company"
+msgstr "Open Source Service Company"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "waiting"
+msgstr "изчакване"
+
+#. module: base
+#: field:ir.attachment,link:0
+msgid "Link"
+msgstr "Връзка"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_triggers
+msgid "workflow.triggers"
+msgstr "workflow.triggers"
+
+#. module: base
+#: field:ir.report.custom.fields,report_id:0
+msgid "Report Ref"
+msgstr "Отпратка към справка"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-hr"
+msgstr "terp-hr"
+
+#. 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 "If set to true, the wizard will not be displayed on the right toolbar of a form view."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DND"
+msgstr "STOCK_DND"
+
+#. module: base
+#: model:res.country,name:base.hm
+msgid "Heard and McDonald Islands"
+msgstr "Heard and McDonald Islands"
+
+#. module: base
+#: field:ir.actions.act_window,view_id:0
+msgid "View Ref."
+msgstr "Отпратка към изглед"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Dutch (Belgium) / Nederlands (Belgïe)"
+msgstr "Dutch (Belgium) / Nederlands (Belgïe)"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_repository_tree
+#: view:ir.module.repository:0
+#: model:ir.ui.menu,name:base.menu_module_repository_tree
+msgid "Repository list"
+msgstr "Списък с хранилища"
+
+#. module: base
+#: field:res.company,rml_header1:0
+msgid "Report Header"
+msgstr "Горен колонтитул на справка"
+
+#. module: base
+#: field:res.roles,child_id:0
+msgid "Children"
+msgstr "Children"
+
+#. 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.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
+#: field:res.partner.bank.type,field_ids:0
+msgid "Type fields"
+msgstr "Видове полета"
+
+#. module: base
+#: field:ir.module.module,category_id:0
+msgid "Category"
+msgstr "Категория"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FLOPPY"
+msgstr "STOCK_FLOPPY"
+
+#. 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 "Costa Rica"
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "Your can't submit bug reports due to uncovered modules: %s"
+msgstr "Your can't submit bug reports due to uncovered modules: %s"
+
+#. module: base
+#: view:ir.model:0
+#: view:res.request:0
+msgid "Status"
+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
+#: view:ir.sequence:0
+msgid "Hour 00->12: %(h12)s"
+msgstr "Hour 00->12: %(h12)s"
+
+#. module: base
+#: help:res.partner.address,active:0
+msgid "Uncheck the active field to hide the contact."
+msgstr "Uncheck the active field to hide the contact."
+
+#. module: base
+#: model:res.country,name:base.dk
+msgid "Denmark"
+msgstr "Denmark"
+
+#. 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 "workflow.instance"
+
+#. module: base
+#: view:res.lang:0
+msgid "10. %S              ==> 20"
+msgstr "10. %S              ==> 20"
+
+#. 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 "Estonia"
+
+#. module: base
+#: model:res.country,name:base.nl
+msgid "Netherlands"
+msgstr "Netherlands"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_4
+msgid "Low Level Objects"
+msgstr "Low Level Objects"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_report_custom
+msgid "ir.report.custom"
+msgstr "ir.report.custom"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Purchase Offer"
+msgstr "Оферта за поръчка"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_values
+msgid "ir.values"
+msgstr "ir.values"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_ZOOM_FIT"
+msgstr "STOCK_ZOOM_FIT"
+
+#. module: base
+#: model:res.country,name:base.cd
+msgid "Congo, The Democratic Republic of the"
+msgstr "Congo, The Democratic Republic of the"
+
+#. 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 "Japan"
+
+#. module: base
+#: field:ir.cron,numbercall:0
+msgid "Number of Calls"
+msgstr "Number of Calls"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "Language file loaded."
+msgstr "Файла с езика е зареден."
+
+#. module: base
+#: wizard_view:module.upgrade,next:0
+#: wizard_field:module.upgrade,next,module_info:0
+msgid "Modules to update"
+msgstr "Модули за обновяване"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action2
+msgid "Company Architecture"
+msgstr "Структура на фирмата"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_BOTTOM"
+msgstr "STOCK_GOTO_BOTTOM"
+
+#. 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 "Important when you deal with multiple actions, the execution order will be decided based on this, low number is higher priority."
+
+#. module: base
+#: field:ir.actions.report.xml,header:0
+msgid "Add RML header"
+msgstr "Добавяне на RML горен колонтитул"
+
+#. module: base
+#: model:res.country,name:base.gr
+msgid "Greece"
+msgstr "Greece"
+
+#. module: base
+#: field:res.request,trigger_date:0
+msgid "Trigger Date"
+msgstr "Дата на изпълнение"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Croatian / hrvatski jezik"
+msgstr "Croatian / hrvatski jezik"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_FORWARD"
+msgstr "STOCK_GO_FORWARD"
+
+#. module: base
+#: help:ir.actions.server,code:0
+msgid "Python code to be executed"
+msgstr "Python code to be executed"
+
+#. module: base
+#: selection:ir.module.module.dependency,state:0
+msgid "Uninstallable"
+msgstr "Неинсталируем"
+
+#. module: base
+#: view:res.partner.category:0
+msgid "Partner Category"
+msgstr "Partner Category"
+
+#. module: base
+#: view:ir.actions.server:0
+#: selection:ir.actions.server,state:0
+msgid "Trigger"
+msgstr "Тригер"
+
+#. module: base
+#: field:ir.model.fields,translate:0
+msgid "Translate"
+msgstr "Превеждане"
+
+#. module: base
+#: field:res.request.history,body:0
+msgid "Body"
+msgstr "Тяло"
+
+#. module: base
+#: wizard_button:res.partner.spam_send,init,send:0
+msgid "Send Email"
+msgstr "Изпращане на e-mail"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SELECT_FONT"
+msgstr "STOCK_SELECT_FONT"
+
+#. module: base
+#: field:res.users,menu_id:0
+msgid "Menu Action"
+msgstr "Действие на меню"
+
+#. module: base
+#: selection:wizard.module.lang.export,state:0
+msgid "choose"
+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
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+msgid "<"
+msgstr "<"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "Html from html"
+msgstr "Html from html"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_low_workflow
+msgid "Workflow Items"
+msgstr "Workflow Items"
+
+#. module: base
+#: field:res.request,ref_doc2:0
+msgid "Document Ref 2"
+msgstr "Отпратка към документ 2"
+
+#. module: base
+#: field:res.request,ref_doc1:0
+msgid "Document Ref 1"
+msgstr "Отпратка към документ 1"
+
+#. module: base
+#: model:res.country,name:base.ga
+msgid "Gabon"
+msgstr "Gabon"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_data
+msgid "ir.model.data"
+msgstr "ir.model.data"
+
+#. module: base
+#: view:ir.model:0
+#: view:res.groups:0
+msgid "Access Rights"
+msgstr "Права за достъп"
+
+#. module: base
+#: model:res.country,name:base.gl
+msgid "Greenland"
+msgstr "Greenland"
+
+#. module: base
+#: help:ir.actions.report.xml,report_rml:0
+msgid "The .rml path of the file or NULL if the content is in report_rml_content"
+msgstr "Пътя към .rml файла или нищо ако съдържанието е в report_rml_content"
+
+#. module: base
+#: field:res.partner.bank,acc_number:0
+msgid "Account Number"
+msgstr "Account Number"
+
+#. module: base
+#: view:res.lang:0
+msgid "1.  %c              ==> Fri Dec  5 18:25:20 2008"
+msgstr "1.  %c              ==> Fri Dec  5 18:25:20 2008"
+
+#. 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, Open ERP will compute visibility based on the related object's read access."
+msgstr "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access."
+
+#. module: base
+#: model:res.country,name:base.nc
+msgid "New Caledonia (French)"
+msgstr "New Caledonia (French)"
+
+#. module: base
+#: field:res.partner.function,name:0
+msgid "Function Name"
+msgstr "Function Name"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "_Cancel"
+msgstr "_Cancel"
+
+#. module: base
+#: model:res.country,name:base.cy
+msgid "Cyprus"
+msgstr "Cyprus"
+
+#. module: base
+#: field:ir.actions.server,subject:0
+#: wizard_field:res.partner.spam_send,init,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
+#: wizard_button:server.action.create,init,step_1:0
+msgid "Next"
+msgstr "Next"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-report"
+msgstr "terp-report"
+
+#. module: base
+#: model:res.company,overdue_msg:base.main_company
+msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department"
+msgstr "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department"
+
+#. 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 "RML съдържание"
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Incoming transitions"
+msgstr "Входящи промени"
+
+#. module: base
+#: model:res.country,name:base.cn
+msgid "China"
+msgstr "China"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password empty !"
+msgstr "Password empty !"
+
+#. module: base
+#: model:res.country,name:base.eh
+msgid "Western Sahara"
+msgstr "Western Sahara"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow
+msgid "workflow"
+msgstr "последователност от действия"
+
+#. module: base
+#: model:res.country,name:base.id
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "At Once"
+msgstr "At Once"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Write Object"
+msgstr "Запиши обект"
+
+#. module: base
+#: model:res.country,name:base.bg
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. module: base
+#: model:res.country,name:base.ao
+msgid "Angola"
+msgstr "Angola"
+
+#. module: base
+#: model:res.country,name:base.tf
+msgid "French Southern Territories"
+msgstr "French Southern Territories"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_HELP"
+msgstr "STOCK_HELP"
+
+#. module: base
+#: model:ir.model,name:base.model_res_currency
+#: field:res.company,currency_id: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 "5.  %y, %Y         ==> 08, 2008"
+
+#. module: base
+#: field:ir.model.fields,model_id:0
+#: field:ir.values,res_id:0
+msgid "Object ID"
+msgstr "Object ID"
+
+#. module: base
+#: selection:ir.report.custom,print_orientation:0
+msgid "Landscape"
+msgstr "Хоризонтално"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_administration
+msgid "Administration"
+msgstr "Администриране"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid "child_of"
+msgstr "child_of"
+
+#. module: base
+#: model:res.country,name:base.ir
+msgid "Iran"
+msgstr "Iran"
+
+#. module: base
+#: field:ir.report.custom.fields,operation:0
+#: field:ir.ui.menu,icon_pict:0
+#: field:wizard.module.lang.export,state:0
+msgid "unknown"
+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 "Kiribati"
+
+#. module: base
+#: model:res.country,name:base.iq
+msgid "Iraq"
+msgstr "Iraq"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Action to Launch"
+msgstr "Action to Launch"
+
+#. module: base
+#: wizard_view:base.module.import,import:0
+#: wizard_view:base.module.import,init:0
+msgid "Module import"
+msgstr "Вмъкване на модул"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_supplier_form
+#: model:ir.ui.menu,name:base.menu_partner_supplier_form
+msgid "Suppliers Partners"
+msgstr "Партньори на доставчика"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_sequence_type
+msgid "ir.sequence.type"
+msgstr "ir.sequence.type"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "CSV File"
+msgstr "CSV Файл"
+
+#. module: base
+#: selection:ir.model,state:0
+#: selection:ir.model.grid,state:0
+msgid "Base Object"
+msgstr "Base Object"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-crm"
+msgstr "terp-crm"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_STRIKETHROUGH"
+msgstr "STOCK_STRIKETHROUGH"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+msgid "(year)="
+msgstr "(година)="
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Dependencies :"
+msgstr "Dependencies :"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-partner"
+msgstr "terp-partner"
+
+#. module: base
+#: field:ir.model.fields,field_description:0
+msgid "Field Label"
+msgstr "Етикет на полето"
+
+#. module: base
+#: model:res.country,name:base.dj
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. module: base
+#: field:ir.translation,value:0
+msgid "Translation Value"
+msgstr "Преведено значение"
+
+#. module: base
+#: model:res.country,name:base.ag
+msgid "Antigua and Barbuda"
+msgstr "Antigua and Barbuda"
+
+#. module: base
+#: field:ir.actions.server,condition:0
+#: field:ir.report.custom.fields,fc0_condition:0
+#: field:workflow.transition,condition:0
+msgid "Condition"
+msgstr "Условие"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_management
+msgid "Modules Management"
+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 "Идентификатор на ресурса"
+
+#. module: base
+#: view:ir.cron:0
+#: field:ir.model,info:0
+#: field:ir.model.grid,info:0
+#: view:maintenance.contract:0
+msgid "Information"
+msgstr "Информация"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts."
+msgstr "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts."
+
+#. module: base
+#: field:ir.actions.report.xml,report_rml:0
+msgid "RML path"
+msgstr "RML път"
+
+#. module: base
+#: field:ir.actions.configuration.wizard,item_id:0
+msgid "Next Configuration Wizard"
+msgstr "Следващ помощник за конфигурация"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+#: selection:res.partner.address,type:0
+msgid "Other"
+msgstr "Друго"
+
+#. module: base
+#: view:res.request:0
+msgid "Reply"
+msgstr "Отговор"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Turkish / Türkçe"
+msgstr "Turkish / Türkçe"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_translation_untrans
+#: model:ir.ui.menu,name:base.menu_action_translation_untrans
+msgid "Untranslated terms"
+msgstr "Непреведен термин"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "Import New Language"
+msgstr "Import New Language"
+
+#. 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
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+#: selection:ir.rule,operator:0
+msgid "="
+msgstr "="
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Second field should be figures"
+msgstr "Second field should be figures"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_model_grid_security
+#: model:ir.ui.menu,name:base.menu_ir_access_grid
+msgid "Access Controls Grid"
+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
+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 "Export"
+
+#. module: base
+#: help:res.bank,bic:0
+msgid "Bank Identifier Code"
+msgstr "Идентификационен код на банката"
+
+#. module: base
+#: model:res.country,name:base.tm
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. module: base
+#: model:res.country,name:base.pm
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre and Miquelon"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Latvian / Latviešu valoda"
+msgstr "Latvian / Latviešu valoda"
+
+#. module: base
+#: field:res.partner.event,document:0
+msgid "Document"
+msgstr "Документ"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REFRESH"
+msgstr "STOCK_REFRESH"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_STOP"
+msgstr "STOCK_STOP"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "Update"
+msgstr "Обновяване"
+
+#. module: base
+#: model:ir.actions.report.xml,name:base.ir_module_reference_print
+msgid "Technical guide"
+msgstr "Technical guide"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CONVERT"
+msgstr "STOCK_CONVERT"
+
+#. module: base
+#: model:res.country,name:base.tz
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Danish / Dansk"
+msgstr "Danish / Dansk"
+
+#. module: base
+#: model:res.country,name:base.cx
+msgid "Christmas Island"
+msgstr "Christmas Island"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Other Actions Configuration"
+msgstr "Конфигурация на други действия"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_EXECUTE"
+msgstr "STOCK_EXECUTE"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Model %s Does not Exist !\" % vals['relation']))\n"
+"\n"
+"            if self.pool.get(vals['model']):\n"
+"                self.pool.get(vals['model']).__init__(self.pool, cr)\n"
+"                #Added context to _auto_init for special treatment to custom field for select_level\n"
+"                ctx = context.copy()\n"
+"                ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0"
+msgstr "Model %s Does not Exist !\" % vals['relation']))\n"
+"\n"
+"            if self.pool.get(vals['model']):\n"
+"                self.pool.get(vals['model']).__init__(self.pool, cr)\n"
+"                #Added context to _auto_init for special treatment to custom field for select_level\n"
+"                ctx = context.copy()\n"
+"                ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0"
+
+#. 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
+msgid "Channels"
+msgstr "Канали"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule for Installation"
+msgstr "График на инсталация"
+
+#. module: base
+#: selection:ir.model.fields,select_level:0
+msgid "Advanced Search"
+msgstr "Разширено търсене"
+
+#. module: base
+#: view:res.request:0
+msgid "Send"
+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 "Keep empty for a private address, not related to partner."
+
+#. module: base
+#: model:res.country,name:base.vu
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. module: base
+#: view:res.company:0
+msgid "Internal Header/Footer"
+msgstr "Вътрешен горен/долен колонтитул"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, python-format
+msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad."
+msgstr "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad."
+
+#. module: base
+#: wizard_button:module.upgrade,end,config:0
+#: wizard_button:module.upgrade,start,config:0
+msgid "Start configuration"
+msgstr "Започни настройката"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Catalan / Català"
+msgstr "Catalan / Català"
+
+#. module: base
+#: model:res.country,name:base.do
+msgid "Dominican Republic"
+msgstr "Dominican Republic"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_COLOR_PICKER"
+msgstr "STOCK_COLOR_PICKER"
+
+#. module: base
+#: model:res.country,name:base.sa
+msgid "Saudi Arabia"
+msgstr "Saudi Arabia"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Bar charts need at least two fields"
+msgstr "Bar charts need at least two fields"
+
+#. 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 "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."
+
+#. module: base
+#: field:ir.model.fields,relation_field:0
+msgid "Relation Field"
+msgstr "Relation Field"
+
+#. module: base
+#: field:workflow.triggers,instance_id:0
+msgid "Destination Instance"
+msgstr "Destination Instance"
+
+#. module: base
+#: field:ir.actions.wizard,multi:0
+msgid "Action on Multiple Doc."
+msgstr "Action on Multiple Doc."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "https://translations.launchpad.net/openobject";
+msgstr "https://translations.launchpad.net/openobject";
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_title
+#: model:ir.ui.menu,name:base.menu_partner_title
+msgid "Titles"
+msgstr "Titles"
+
+#. module: base
+#: field:ir.actions.todo,start_date:0
+msgid "Start Date"
+msgstr "Start Date"
+
+#. module: base
+#: field:ir.actions.report.xml,report_xml:0
+msgid "XML path"
+msgstr "XML път"
+
+#. module: base
+#: model:res.country,name:base.gn
+msgid "Guinea"
+msgstr "Guinea"
+
+#. module: base
+#: model:res.country,name:base.lu
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. module: base
+#: model:ir.actions.todo,note:base.config_wizard_step_user
+msgid "Create your users.\n"
+"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n"
+"            "
+msgstr "Create your users.\n"
+"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n"
+"            "
+
+#. module: base
+#: selection:res.request,priority:0
+msgid "Low"
+msgstr "Нисък"
+
+#. module: base
+#: view:ir.values:0
+msgid "tree_but_action, client_print_multi"
+msgstr "tree_but_action, client_print_multi"
+
+#. module: base
+#: model:res.country,name:base.sv
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. module: base
+#: field:res.bank,phone:0
+#: field:res.partner.address,phone:0
+msgid "Phone"
+msgstr "Телефон"
+
+#. module: base
+#: field:res.groups,menu_access:0
+msgid "Access Menu"
+msgstr "Меню за достъп"
+
+#. module: base
+#: model:res.country,name:base.th
+msgid "Thailand"
+msgstr "Thailand"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+msgid ">"
+msgstr ">"
+
+#. module: base
+#: field:ir.model.access,perm_unlink:0
+msgid "Delete Permission"
+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
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PRINT"
+msgstr "STOCK_PRINT"
+
+#. module: base
+#: view:res.partner:0
+msgid "General"
+msgstr "Основни"
+
+#. module: base
+#: model:res.country,name:base.uz
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.act_window"
+msgstr "ir.actions.act_window"
+
+#. module: base
+#: model:res.country,name:base.vi
+msgid "Virgin Islands (USA)"
+msgstr "Virgin Islands (USA)"
+
+#. module: base
+#: model:res.country,name:base.tw
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. module: base
+#: view:ir.rule:0
+msgid "If you don't force the domain, it will use the simple domain setup"
+msgstr "Ако не изискате изрично използване на домейн ще се използва инсталация на обикновен домейн"
+
+#. module: base
+#: field:ir.report.custom,field_parent:0
+#: 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.report.custom,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 "workflow.workitem"
+
+#. module: base
+#: selection:ir.module.module,state:0
+msgid "Not Installable"
+msgstr "Неинсталируем"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "View :"
+msgstr "View :"
+
+#. module: base
+#: field:ir.model.fields,view_load:0
+msgid "View Auto-Load"
+msgstr "Изглед автоматично зареждане"
+
+#. module: base
+#: field:ir.module.module,installed_version:0
+msgid "Latest version"
+msgstr "Последна версия"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You cannot remove the field '%s' !"
+msgstr "You cannot remove the field '%s' !"
+
+#. module: base
+#: field:ir.report.custom,print_format:0
+msgid "Print format"
+msgstr "Формат за печат"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUMP_TO"
+msgstr "STOCK_JUMP_TO"
+
+#. module: base
+#: field:ir.actions.todo,end_date:0
+msgid "End Date"
+msgstr "End Date"
+
+#. module: base
+#: field:ir.exports,resource:0
+#: field:ir.property,res_id:0
+msgid "Resource"
+msgstr "Ресурс"
+
+#. module: base
+#: field:maintenance.contract,name:0
+#: field:maintenance.contract.wizard,name:0
+msgid "Contract ID"
+msgstr "Contract ID"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Persian / فارس"
+msgstr "Persian / فارس"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "center"
+msgstr "центриран"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country_state
+#: model:ir.ui.menu,name:base.menu_country_state_partner
+#: field:maintenance.contract.wizard,state:0
+msgid "States"
+msgstr "Провинция"
+
+#. module: base
+#: field:ir.actions.configuration.wizard,name:0
+msgid "Next Wizard"
+msgstr "Следващ помощник"
+
+#. module: base
+#: field:ir.attachment,datas_fname:0
+#: field:wizard.module.lang.export,name:0
+msgid "Filename"
+msgstr "Име на файла"
+
+#. module: base
+#: field:ir.model,access_ids:0
+#: field:ir.model.grid,access_ids:0
+msgid "Access"
+msgstr "Достъп"
+
+#. module: base
+#: model:res.country,name:base.sk
+msgid "Slovak Republic"
+msgstr "Slovak Republic"
+
+#. module: base
+#: model:res.country,name:base.aw
+msgid "Aruba"
+msgstr "Aruba"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Weeks"
+msgstr "Седмици"
+
+#. module: base
+#: field:res.groups,name:0
+msgid "Group Name"
+msgstr "Име на група"
+
+#. module: base
+#: model:res.country,name:base.bh
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_12
+msgid "Segmentation"
+msgstr "Segmentation"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FIND"
+msgstr "STOCK_FIND"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard
+#: model:ir.ui.menu,name:base.menu_maintenance_contract_add
+#: view:maintenance.contract.wizard:0
+msgid "Add Maintenance Contract"
+msgstr "Add Maintenance Contract"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam"
+msgstr "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam"
+
+#. module: base
+#: field:ir.actions.act_window,limit:0
+#: field:ir.report.custom,limitt:0
+msgid "Limit"
+msgstr "Лимит"
+
+#. module: base
+#: help:ir.actions.server,wkf_model_id:0
+msgid "Workflow to be executed on this model."
+msgstr "Workflow to be executed on this model."
+
+#. module: base
+#: model:res.country,name:base.jm
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. module: base
+#: model:res.country,name:base.az
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Warning"
+msgstr "Warning"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Arabic / الْعَرَبيّة"
+msgstr "Arabic / الْعَرَبيّة"
+
+#. module: base
+#: model:res.country,name:base.gi
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. module: base
+#: model:res.country,name:base.vg
+msgid "Virgin Islands (British)"
+msgstr "Virgin Islands (British)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PREVIOUS"
+msgstr "STOCK_MEDIA_PREVIOUS"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Czech / Čeština"
+msgstr "Czech / Čeština"
+
+#. module: base
+#: model:res.country,name:base.wf
+msgid "Wallis and Futuna Islands"
+msgstr "Wallis and Futuna Islands"
+
+#. module: base
+#: model:res.country,name:base.rw
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. module: base
+#: constraint:res.partner:0
+msgid "The VAT doesn't seem to be correct."
+msgstr "ДДС изглежда не е вярно."
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Calculate Sum"
+msgstr "Изчисли сума"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day of the week (0:Monday): %(weekday)s"
+msgstr "Day of the week (0:Monday): %(weekday)s"
+
+#. module: base
+#: model:res.country,name:base.ck
+msgid "Cook Islands"
+msgstr "Cook Islands"
+
+#. 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 "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"
+
+#. module: base
+#: field:ir.model.data,noupdate:0
+msgid "Non Updatable"
+msgstr "Не обновяем"
+
+#. module: base
+#: model:res.country,name:base.sg
+msgid "Singapore"
+msgstr "Singapore"
+
+#. module: base
+#: selection:ir.actions.act_window,target:0
+msgid "Current Window"
+msgstr "Текущ прозорец"
+
+#. module: base
+#: view:ir.values:0
+msgid "Action Source"
+msgstr "Action Source"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NETWORK"
+msgstr "STOCK_NETWORK"
+
+#. module: base
+#: model:ir.model,name:base.model_res_country
+#: field:res.bank,country:0
+#: view:res.country:0
+#: field:res.country.state,country_id:0
+#: field:res.partner,country: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
+#: view:ir.report.custom:0
+msgid "Subscribe Report"
+msgstr "Абонирай се за справка"
+
+#. module: base
+#: field:ir.values,object:0
+msgid "Is Object"
+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 "IT sector"
+
+#. module: base
+#: view:res.lang:0
+msgid "%X - Appropriate time representation."
+msgstr "%X - Appropriate time representation."
+
+#. module: base
+#: view:res.company:0
+msgid "Your Logo - Use a size of about 450x150 pixels."
+msgstr "Вашето лого - използвайте размер 450x150 пиксела."
+
+#. 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 "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."
+
+#. module: base
+#: selection:ir.report.custom,print_orientation:0
+msgid "Portrait"
+msgstr "Вертикално"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Slovak Language / Slovenský jazyk"
+msgstr "Slovak Language / Slovenský jazyk"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Button"
+msgstr "Бутона на помощника"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIRECTORY"
+msgstr "STOCK_DIRECTORY"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_customer_form_new
+#: model:ir.ui.menu,name:base.menu_partner_customer_form_new
+msgid "New Partner"
+msgstr "New Partner"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_server
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.server"
+msgstr "ir.actions.server"
+
+#. module: base
+#: view:ir.actions.report.custom:0
+msgid "Report custom"
+msgstr "Допълнителна справка"
+
+#. module: base
+#: field:ir.actions.configuration.wizard,progress:0
+msgid "Configuration Progress"
+msgstr "Прогрес на конфигурирането"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_11
+msgid "Configuration Wizards"
+msgstr "Помощници на настройките"
+
+#. module: base
+#: field:workflow.activity,split_mode:0
+msgid "Split Mode"
+msgstr "Режим на разделяне"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_localisation
+msgid "Localisation"
+msgstr "Локализация"
+
+#. module: base
+#: selection:res.config.view,view:0
+msgid "Simplified Interface"
+msgstr "Опростен интерфейс"
+
+#. module: base
+#: model:res.country,name:base.cl
+msgid "Chile"
+msgstr "Chile"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REVERT_TO_SAVED"
+msgstr "STOCK_REVERT_TO_SAVED"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.wizard_lang_import
+#: model:ir.ui.menu,name:base.menu_wizard_lang_import
+msgid "Import a Translation File"
+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 "This field is not used, it only helps you to select a good model."
+
+#. module: base
+#: field:ir.ui.view,name:0
+msgid "View Name"
+msgstr "Име на изглед"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Italian / Italiano"
+msgstr "Italian / Italiano"
+
+#. module: base
+#: field:ir.actions.report.xml,attachment:0
+msgid "Save As Attachment Prefix"
+msgstr "Save As Attachment Prefix"
+
+#. 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 "Only one client action will be executed, last client action will be considered in case of multiple client actions."
+
+#. module: base
+#: model:res.country,name:base.hr
+msgid "Croatia"
+msgstr "Croatia"
+
+#. module: base
+#: field:ir.actions.server,mobile:0
+msgid "Mobile No"
+msgstr "Mobile No"
+
+#. 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
+#: field:ir.sequence,code:0
+#: field:ir.sequence.type,code:0
+msgid "Sequence Code"
+msgstr "Код на последователност"
+
+#. module: base
+#: selection:ir.report.custom,print_format:0
+msgid "a5"
+msgstr "А5"
+
+#. module: base
+#: model:res.country,name:base.sc
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank
+#: view:res.partner.bank:0
+msgid "Bank Accounts"
+msgstr "Банкови сметки"
+
+#. module: base
+#: model:res.country,name:base.sl
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. module: base
+#: view:res.company:0
+#: view:res.partner:0
+msgid "General Information"
+msgstr "Обща информация"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-product"
+msgstr "terp-product"
+
+#. module: base
+#: model:res.country,name:base.tc
+msgid "Turks and Caicos Islands"
+msgstr "Turks and Caicos Islands"
+
+#. module: base
+#: field:res.partner.bank,owner_name:0
+msgid "Account Owner"
+msgstr "Account Owner"
+
+#. module: base
+#: field:workflow,osv:0
+#: field:workflow.instance,res_type:0
+msgid "Resource Object"
+msgstr "Ресурсни обекти"
+
+#. module: base
+#: field:ir.cron,function:0
+#: field:res.partner.address,function:0
+#: selection:workflow.activity,kind:0
+msgid "Function"
+msgstr "Функция"
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Delivery"
+msgstr "Доставка"
+
+#. module: base
+#: field:ir.attachment,preview:0
+msgid "Image Preview"
+msgstr "Image Preview"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_pvt_ltd
+msgid "Corp."
+msgstr "Фирма"
+
+#. module: base
+#: model:res.country,name:base.gw
+msgid "Guinea Bissau"
+msgstr "Guinea Bissau"
+
+#. module: base
+#: view:workflow.instance:0
+msgid "Workflow Instances"
+msgstr "Инстанции от последователности от действия"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Partners: "
+msgstr "Partners: "
+
+#. module: base
+#: model:res.country,name:base.kp
+msgid "North Korea"
+msgstr "North Korea"
+
+#. module: base
+#: view:ir.report.custom:0
+msgid "Unsubscribe Report"
+msgstr "Отпиши се от справката"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+msgid "Create Object"
+msgstr "Създай обект"
+
+#. module: base
+#: field:res.bank,bic:0
+msgid "BIC/Swift code"
+msgstr "BIC/Swift код"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_1
+msgid "Prospect"
+msgstr "Prospect"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Polish / Język polski"
+msgstr "Polish / Język polski"
+
+#. module: base
+#: field:ir.exports,name:0
+msgid "Export Name"
+msgstr "Export Name"
+
+#. 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 "Used to select automatically the right address according to the context in sales and purchases documents."
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+msgid "Choose a language to install:"
+msgstr "збери езика за инсталация"
+
+#. module: base
+#: model:res.country,name:base.lk
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Russian / русский язык"
+msgstr "Russian / русский язык"
+

=== added file 'bin/addons/base/i18n/bs_BS.po.OTHER'
--- bin/addons/base/i18n/bs_BS.po.OTHER	1970-01-01 00:00:00 +0000
+++ bin/addons/base/i18n/bs_BS.po.OTHER	2010-10-25 14:08:46 +0000
@@ -0,0 +1,7714 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* base
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.12\n"
+"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
+"POT-Creation-Date: 2010-09-02 13:35:58+0000\n"
+"PO-Revision-Date: 2010-09-02 13:35:58+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: base
+#: model:res.country,name:base.sh
+msgid "Saint Helena"
+msgstr "Saint Helena"
+
+#. module: base
+#: wizard_view:res.partner.sms_send,init:0
+msgid "SMS - Gateway: clickatell"
+msgstr "SMS - pristupnik: clickatell"
+
+#. module: base
+#: view:res.lang:0
+msgid "%j - Day of the year as a decimal number [001,366]."
+msgstr "%j - Dan u godini kao decimalni broj [001,366]."
+
+#. module: base
+#: field:ir.values,meta_unpickle:0
+msgid "Metadata"
+msgstr "Metadata"
+
+#. module: base
+#: field:ir.ui.view,arch:0
+#: field:ir.ui.view.custom,arch:0
+msgid "View Architecture"
+msgstr "Prikaz arhikteture"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not create this kind of document! (%s)"
+msgstr "You can not create this kind of document! (%s)"
+
+#. module: base
+#: wizard_field:module.lang.import,init,code:0
+msgid "Code (eg:en__US)"
+msgstr "Kod (npr:en__US)"
+
+#. module: base
+#: view:workflow:0
+#: field:workflow.activity,wkf_id:0
+#: field:workflow.instance,wkf_id:0
+msgid "Workflow"
+msgstr "Radni tok"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "To browse official translations, you can visit this link: "
+msgstr "Da pregledate zvanične prijevode možete posjetiti ovaj link: "
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Hungarian / Magyar"
+msgstr "Hungarian / Magyar"
+
+#. module: base
+#: field:ir.actions.server,wkf_model_id:0
+msgid "Workflow On"
+msgstr "Workflow On"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Created Views"
+msgstr "Kreirani prikazi"
+
+#. module: base
+#: view:workflow.activity:0
+msgid "Outgoing transitions"
+msgstr "Outgoing transitions"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Yearly"
+msgstr "Godišnje"
+
+#. module: base
+#: field:ir.actions.act_window,target:0
+msgid "Target Window"
+msgstr "Ciljni prozor"
+
+#. module: base
+#: model:ir.actions.todo,note:base.config_wizard_simple_view
+msgid "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+msgstr "Choose between the \"Simplified Interface\" or the extended one.\n"
+"If you are testing or using OpenERP for the first time, we suggest you to use\n"
+"the simplified interface, which has less options and fields but is easier to\n"
+"understand. You will be able to switch to the extended view later.\n"
+"            "
+
+#. module: base
+#: field:ir.rule,operand:0
+msgid "Operand"
+msgstr "Operand"
+
+#. module: base
+#: model:res.country,name:base.kr
+msgid "South Korea"
+msgstr "South Korea"
+
+#. 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 "Prijelazi"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_custom
+msgid "ir.ui.view.custom"
+msgstr "ir.ui.prikaz.prilagođen"
+
+#. module: base
+#: model:res.country,name:base.sz
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_report_custom
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.report.custom"
+msgstr "ir.akcije.izvještaj.prilagođen"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CANCEL"
+msgstr "SKLADIŠTE_OTKAŽI"
+
+#. module: base
+#: field:ir.report.custom,sortby:0
+msgid "Sorted By"
+msgstr "Poredano po"
+
+#. module: base
+#: field:ir.sequence,number_increment:0
+msgid "Increment Number"
+msgstr "Increment Number"
+
+#. 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 "Struktura kompanije"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_NO"
+msgstr "STOCK_NO"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, python-format
+msgid "new"
+msgstr "new"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_TOP"
+msgstr "SKLADIÅ TE_IDINA_VRH"
+
+#. module: base
+#: field:ir.actions.report.custom,multi:0
+#: field:ir.actions.report.xml,multi:0
+msgid "On multiple doc."
+msgstr "Na višestruke dok."
+
+#. module: base
+#: field:ir.module.category,module_nr:0
+msgid "Number of Modules"
+msgstr "Number of Modules"
+
+#. module: base
+#: field:res.partner.bank.type.field,size:0
+msgid "Max. Size"
+msgstr "Maksimalna veličina"
+
+#. module: base
+#: field:res.partner.address,name:0
+msgid "Contact Name"
+msgstr "Naziv kontakta"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, 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 "Save this document to a %s file and edit it with a specific software or a text editor. The file encoding is UTF-8."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DELETE"
+msgstr "STOCK_DELETE"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Password mismatch !"
+msgstr "Password mismatch !"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "This url '%s' must provide an html file with links to zip modules"
+msgstr "This url '%s' must provide an html file with links to zip modules"
+
+#. module: base
+#: selection:res.request,state:0
+msgid "active"
+msgstr "active"
+
+#. module: base
+#: field:ir.actions.wizard,wiz_name:0
+msgid "Wizard Name"
+msgstr "Wizard Name"
+
+#. module: base
+#: view:res.lang:0
+msgid "%y - Year without century as a decimal number [00,99]."
+msgstr "%y - Year without century as a decimal number [00,99]."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GOTO_FIRST"
+msgstr "SKLADIÅ TE_IDINA_PRVI"
+
+#. module: base
+#: help:ir.rule.group,rules:0
+msgid "The rule is satisfied if at least one test is True"
+msgstr "Pravilo je zadovoljeno ako je makar jedan test tačan"
+
+#. module: base
+#: selection:ir.report.custom.fields,operation:0
+msgid "Get Max"
+msgstr "Uzmi najveći"
+
+#. module: base
+#: help:ir.actions.act_window,limit:0
+msgid "Default limit for the list view"
+msgstr "Podrazumjevana granica za prikaz liste"
+
+#. module: base
+#: field:ir.model.data,date_update:0
+msgid "Update Date"
+msgstr "Update Date"
+
+#. module: base
+#: field:ir.actions.act_window,src_model:0
+msgid "Source Object"
+msgstr "Izvorni objekt"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
+#: view:ir.actions.todo:0
+#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
+msgid "Config Wizard Steps"
+msgstr "Config Wizard Steps"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_ui_view_sc
+msgid "ir.ui.view_sc"
+msgstr "ir.ui.view_sc"
+
+#. module: base
+#: field:ir.model.access,group_id:0
+#: field:ir.rule,rule_group:0
+msgid "Group"
+msgstr "Group"
+
+#. 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 "Naziv polja"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_uninstall
+#: model:ir.ui.menu,name:base.menu_module_tree_uninstall
+msgid "Uninstalled modules"
+msgstr "Uklonjeni moduli"
+
+#. module: base
+#: wizard_view:server.action.create,init:0
+#: wizard_field:server.action.create,init,type:0
+msgid "Select Action Type"
+msgstr "Odaberi tip akcije"
+
+#. module: base
+#: selection:ir.actions.todo,type:0
+msgid "Configure"
+msgstr "Configure"
+
+#. module: base
+#: model:res.country,name:base.tv
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. module: base
+#: selection:ir.model,state:0
+#: selection:ir.model.grid,state:0
+msgid "Custom Object"
+msgstr "Prilagođeni objekt"
+
+#. module: base
+#: field:res.lang,date_format:0
+msgid "Date Format"
+msgstr "Format datuma"
+
+#. module: base
+#: field:res.bank,email:0
+#: field:res.partner.address,email:0
+msgid "E-Mail"
+msgstr "E-Mail"
+
+#. module: base
+#: model:res.country,name:base.an
+msgid "Netherlands Antilles"
+msgstr "Netherlands Antilles"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)"
+msgstr "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)"
+
+#. module: base
+#: model:res.country,name:base.gf
+msgid "French Guyana"
+msgstr "French Guyana"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Bosnian / bosanski jezik"
+msgstr "Bosnian / bosanski jezik"
+
+#. 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 "If you check this, then the second time the user prints with same attachment name, it returns the previous report."
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_REWIND"
+msgstr "SKLADIÅ TE_MEDIJ_PREMOTAJ"
+
+#. module: base
+#: field:ir.actions.todo,note:0
+msgid "Text"
+msgstr "Text"
+
+#. module: base
+#: field:res.country,name:0
+msgid "Country Name"
+msgstr "Naziv zemlje"
+
+#. module: base
+#: model:res.country,name:base.co
+msgid "Colombia"
+msgstr "Colombia"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Schedule Upgrade"
+msgstr "Planirana nadogradnja"
+
+#. module: base
+#: field:ir.actions.report.custom,report_id:0
+msgid "Report Ref."
+msgstr "Report Ref."
+
+#. 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 "ISO kod zemlje sa dva slova.\n"
+"Možeš koristiti ovo polje za brzu pretragu."
+
+#. module: base
+#: selection:workflow.activity,join_mode:0
+#: selection:workflow.activity,split_mode:0
+msgid "Xor"
+msgstr "Ekskluzivno ili"
+
+#. module: base
+#: view:ir.values:0
+msgid "Action To Launch"
+msgstr "Action To Launch"
+
+#. module: base
+#: view:res.partner:0
+msgid "Sales & Purchases"
+msgstr "Prodaja i nabava"
+
+#. module: base
+#: view:ir.actions.wizard:0
+#: field:wizard.ir.model.menu.create.line,wizard_id:0
+msgid "Wizard"
+msgstr "ÄŒarobnjak"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CUT"
+msgstr "SKLADIÅ TE_ISJECI"
+
+#. 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 "ÄŒarobnjaci"
+
+#. module: base
+#: selection:res.config.view,view:0
+msgid "Extended Interface"
+msgstr "Extended Interface"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "Custom fields must have a name that starts with 'x_' !"
+msgstr "Custom fields must have a name that starts with 'x_' !"
+
+#. module: base
+#: help:ir.actions.server,action_id:0
+msgid "Select the Action Window, Report, Wizard to be executed."
+msgstr "Select the Action Window, Report, Wizard to be executed."
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export done"
+msgstr "Export done"
+
+#. module: base
+#: view:ir.model:0
+msgid "Model Description"
+msgstr "Opis modela"
+
+#. module: base
+#: field:workflow.transition,trigger_expr_id:0
+msgid "Trigger Expression"
+msgstr "Trigger Expression"
+
+#. module: base
+#: model:res.country,name:base.jo
+msgid "Jordan"
+msgstr "Jordan"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not remove the model '%s' !"
+msgstr "You can not remove the model '%s' !"
+
+#. module: base
+#: model:res.country,name:base.er
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Configure simple view"
+msgstr "Configure simple view"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Bulgarian / български"
+msgstr "Bulgarian / български"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_actions
+msgid "ir.actions.actions"
+msgstr "ir.actions.actions"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_report_custom
+#: view:ir.report.custom:0
+msgid "Custom Report"
+msgstr "Custom Report"
+
+#. module: base
+#: selection:ir.report.custom,type:0
+msgid "Bar Chart"
+msgstr "Bar Chart"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_ERROR"
+msgstr "STOCK_DIALOG_ERROR"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_INDEX"
+msgstr "STOCK_INDEX"
+
+#. module: base
+#: model:res.country,name:base.rs
+msgid "Serbia"
+msgstr "Serbia"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard View"
+msgstr "Wizard View"
+
+#. module: base
+#: model:res.country,name:base.kh
+msgid "Cambodia, Kingdom of"
+msgstr "Cambodia, Kingdom of"
+
+#. 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 "Sequences"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_DIALOG_QUESTION"
+msgstr "STOCK_DIALOG_QUESTION"
+
+#. module: base
+#: model:res.country,name:base.pg
+msgid "Papua New Guinea"
+msgstr "Papua New Guinea"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_4
+msgid "Basic Partner"
+msgstr "Osnovni partner"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid ","
+msgstr ","
+
+#. module: base
+#: model:res.country,name:base.es
+msgid "Spain"
+msgstr "Spain"
+
+#. module: base
+#: wizard_view:module.upgrade,end:0
+#: wizard_view:module.upgrade,start:0
+msgid "You may have to reinstall some language pack."
+msgstr "You may have to reinstall some language pack."
+
+#. module: base
+#: field:res.partner.address,mobile:0
+msgid "Mobile"
+msgstr "Mobile"
+
+#. module: base
+#: model:res.country,name:base.om
+msgid "Oman"
+msgstr "Oman"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_payterm_form
+#: model:ir.model,name:base.model_res_payterm
+msgid "Payment term"
+msgstr "Payment term"
+
+#. module: base
+#: model:res.country,name:base.nu
+msgid "Niue"
+msgstr "Niue"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Work Days"
+msgstr "Work Days"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "Other OSI Approved Licence"
+msgstr "Other OSI Approved Licence"
+
+#. module: base
+#: help:ir.values,action_id:0
+msgid "This field is not used, it only helps you to select the right action."
+msgstr "This field is not used, it only helps you to select the right action."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_menu_create
+#: view:wizard.ir.model.menu.create:0
+msgid "Create Menu"
+msgstr "Create Menu"
+
+#. module: base
+#: model:res.country,name:base.in
+msgid "India"
+msgstr "India"
+
+#. module: base
+#: model:ir.model,name:base.model_maintenance_contract_module
+msgid "maintenance contract modules"
+msgstr "maintenance contract modules"
+
+#. module: base
+#: view:ir.values:0
+msgid "client_action_multi, client_action_relate"
+msgstr "client_action_multi, client_action_relate"
+
+#. module: base
+#: model:res.country,name:base.ad
+msgid "Andorra, Principality of"
+msgstr "Andorra, Principality of"
+
+#. module: base
+#: field:ir.module.category,child_ids:0
+#: field:res.partner.category,child_ids:0
+msgid "Child Categories"
+msgstr "Child Categories"
+
+#. module: base
+#: selection:wizard.module.lang.export,format:0
+msgid "TGZ Archive"
+msgstr "TGZ Archive"
+
+#. module: base
+#: field:res.partner.som,factor:0
+msgid "Factor"
+msgstr "Factor"
+
+#. module: base
+#: view:res.lang:0
+msgid "%B - Full month name."
+msgstr "%B - Full month name."
+
+#. module: base
+#: field:ir.actions.report.xml,report_type:0
+#: field:ir.actions.todo,type:0
+#: field:ir.server.object.lines,type:0
+#: field:ir.translation,type:0
+#: field:ir.values,key:0
+#: view:res.partner:0
+msgid "Type"
+msgstr "Type"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FILE"
+msgstr "STOCK_FILE"
+
+#. module: base
+#: model:res.country,name:base.gu
+msgid "Guam (USA)"
+msgstr "Guam (USA)"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_grid
+msgid "Objects Security Grid"
+msgstr "Objects Security Grid"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_GO_DOWN"
+msgstr "STOCK_GO_DOWN"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_OK"
+msgstr "STOCK_OK"
+
+#. module: base
+#: selection:ir.actions.server,state:0
+#: selection:workflow.activity,kind:0
+msgid "Dummy"
+msgstr "Dummy"
+
+#. module: base
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr "Neodgovarajući XML za arhitekturu prikaza!"
+
+#. module: base
+#: model:res.country,name:base.ky
+msgid "Cayman Islands"
+msgstr "Cayman Islands"
+
+#. module: base
+#: field:ir.sequence,name:0
+#: field:ir.sequence.type,name:0
+msgid "Sequence Name"
+msgstr "Sequence Name"
+
+#. module: base
+#: model:res.country,name:base.td
+msgid "Chad"
+msgstr "Chad"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Spanish (AR) / Español (AR)"
+msgstr "Spanish (AR) / Español (AR)"
+
+#. module: base
+#: model:res.country,name:base.ug
+msgid "Uganda"
+msgstr "Uganda"
+
+#. module: base
+#: model:res.country,name:base.ne
+msgid "Niger"
+msgstr "Niger"
+
+#. module: base
+#: model:res.country,name:base.ba
+msgid "Bosnia-Herzegovina"
+msgstr "Bosnia-Herzegovina"
+
+#. module: base
+#: field:ir.report.custom.fields,alignment:0
+msgid "Alignment"
+msgstr "Alignment"
+
+#. module: base
+#: selection:ir.rule,operator:0
+msgid ">="
+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 "%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."
+
+#. module: base
+#: field:res.partner.event,planned_cost:0
+msgid "Planned Cost"
+msgstr "Planirana cijena"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_config
+msgid "ir.model.config"
+msgstr "ir.model.config"
+
+#. module: base
+#: field:ir.module.module,website:0
+#: field:res.partner,website:0
+msgid "Website"
+msgstr "Website"
+
+#. module: base
+#: field:ir.rule.group,rules:0
+msgid "Tests"
+msgstr "Tests"
+
+#. module: base
+#: view:ir.module.repository:0
+msgid "Repository"
+msgstr "Repository"
+
+#. module: base
+#: model:res.country,name:base.gs
+msgid "S. Georgia & S. Sandwich Isls."
+msgstr "S. Georgia & S. Sandwich Isls."
+
+#. module: base
+#: field:ir.actions.url,url:0
+msgid "Action URL"
+msgstr "Action URL"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_FILL"
+msgstr "STOCK_JUSTIFY_FILL"
+
+#. module: base
+#: model:res.country,name:base.mh
+msgid "Marshall Islands"
+msgstr "Marshall Islands"
+
+#. module: base
+#: model:res.country,name:base.ht
+msgid "Haiti"
+msgstr "Haiti"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "RML"
+msgstr "RML"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_category
+#: model:ir.ui.menu,name:base.menu_partner_category_main
+msgid "Partners by Categories"
+msgstr "Partners by Categories"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Pie charts need exactly two fields"
+msgstr "Pie charts need exactly two fields"
+
+#. module: base
+#: help:wizard.module.lang.export,lang:0
+msgid "To export a new language, do not select a language."
+msgstr "To export a new language, do not select a language."
+
+#. module: base
+#: model:res.country,name:base.md
+msgid "Moldavia"
+msgstr "Moldavia"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Features"
+msgstr "Features"
+
+#. module: base
+#: field:ir.report.custom,frequency:0
+msgid "Frequency"
+msgstr "Frequency"
+
+#. module: base
+#: field:ir.report.custom.fields,fc0_op:0
+#: field:ir.report.custom.fields,fc1_op:0
+#: field:ir.report.custom.fields,fc2_op:0
+#: field:ir.report.custom.fields,fc3_op:0
+msgid "Relation"
+msgstr "Relation"
+
+#. module: base
+#: field:ir.model.access,perm_read:0
+msgid "Read Access"
+msgstr "Read Access"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_exports
+msgid "ir.exports"
+msgstr "ir.exports"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MISSING_IMAGE"
+msgstr "STOCK_MISSING_IMAGE"
+
+#. module: base
+#: view:res.users:0
+msgid "Define New Users"
+msgstr "Define New Users"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REMOVE"
+msgstr "STOCK_REMOVE"
+
+#. module: base
+#: selection:ir.actions.report.xml,report_type:0
+msgid "raw"
+msgstr "raw"
+
+#. 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 "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"
+
+#. module: base
+#: field:res.roles,name:0
+msgid "Role Name"
+msgstr "Role Name"
+
+#. module: base
+#: field:res.partner,user_id:0
+msgid "Dedicated Salesman"
+msgstr "Dedicated Salesman"
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "-"
+msgstr "-"
+
+#. module: base
+#: field:res.payterm,name:0
+msgid "Payment Term (short name)"
+msgstr "Payment Term (short name)"
+
+#. module: base
+#: model:ir.model,name:base.model_res_bank
+#: view:res.bank:0
+#: field:res.partner.bank,bank:0
+msgid "Bank"
+msgstr "Bank"
+
+#. module: base
+#: view:res.lang:0
+msgid "Examples"
+msgstr "Primjeri"
+
+#. module: base
+#: field:ir.module.module,reports_by_module:0
+msgid "Reports"
+msgstr "Reports"
+
+#. module: base
+#: field:workflow,on_create:0
+msgid "On Create"
+msgstr "On Create"
+
+#. module: base
+#: wizard_view:base.module.import,init:0
+msgid "Please give your module .ZIP file to import."
+msgstr "Please give your module .ZIP file to import."
+
+#. module: base
+#: field:ir.default,value:0
+msgid "Default Value"
+msgstr "Default Value"
+
+#. module: base
+#: wizard_field:res.partner.sms_send,init,user:0
+#: field:res.users,login:0
+msgid "Login"
+msgstr "Login"
+
+#. 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 "Access all the fields related to the current object using expressions, i.e. object.partner_id.name "
+
+#. module: base
+#: view:maintenance.contract:0
+#: field:maintenance.contract,module_ids:0
+msgid "Covered Modules"
+msgstr "Covered Modules"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_COPY"
+msgstr "STOCK_COPY"
+
+#. module: base
+#: model:ir.model,name:base.model_res_request_link
+msgid "res.request.link"
+msgstr "res.request.link"
+
+#. module: base
+#: wizard_button:module.module.update,init,update:0
+msgid "Check new modules"
+msgstr "Check new modules"
+
+#. module: base
+#: model:res.country,name:base.km
+msgid "Comoros"
+msgstr "Comoros"
+
+#. 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 "Server Actions"
+
+#. module: base
+#: model:res.country,name:base.tp
+msgid "East Timor"
+msgstr "East Timor"
+
+#. 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 "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"
+
+#. module: base
+#: view:ir.rule:0
+msgid "Simple domain setup"
+msgstr "Jednostavno podešavanje domena"
+
+#. module: base
+#: field:res.currency,accuracy:0
+msgid "Computational Accuracy"
+msgstr "Computational Accuracy"
+
+#. module: base
+#: model:res.country,name:base.kg
+msgid "Kyrgyz Republic (Kyrgyzstan)"
+msgstr "Kyrgyz Republic (Kyrgyzstan)"
+
+#. module: base
+#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line
+msgid "wizard.ir.model.menu.create.line"
+msgstr "wizard.ir.model.menu.create.line"
+
+#. module: base
+#: field:ir.attachment,res_id:0
+msgid "Attached ID"
+msgstr "Attached ID"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Day: %(day)s"
+msgstr "Day: %(day)s"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not read this document! (%s)"
+msgstr "You can not read this document! (%s)"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_FIND_AND_REPLACE"
+msgstr "STOCK_FIND_AND_REPLACE"
+
+#. module: base
+#: model:res.country,name:base.mv
+msgid "Maldives"
+msgstr "Maldives"
+
+#. module: base
+#: help:ir.values,res_id:0
+msgid "Keep 0 if the action must appear on all resources."
+msgstr "Keep 0 if the action must appear on all resources."
+
+#. module: base
+#: model:ir.model,name:base.model_ir_rule
+msgid "ir.rule"
+msgstr "ir.rule"
+
+#. module: base
+#: selection:ir.cron,interval_type:0
+msgid "Days"
+msgstr "Days"
+
+#. module: base
+#: field:ir.report.custom.fields,width:0
+msgid "Fixed Width"
+msgstr "Fixed Width"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-calendar"
+msgstr "terp-calendar"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_YES"
+msgstr "STOCK_YES"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.ir_action_report_custom
+#: model:ir.ui.menu,name:base.menu_ir_action_report_custom
+msgid "Report Custom"
+msgstr "Report Custom"
+
+#. module: base
+#: view:res.lang:0
+msgid "7.  %H:%M:%S      ==> 18:25:20"
+msgstr "7.  %H:%M:%S      ==> 18:25:20"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_form
+#: model:ir.ui.menu,name:base.menu_base_partner
+#: model:ir.ui.menu,name:base.menu_partner_form
+#: view:res.partner:0
+msgid "Partners"
+msgstr "Partneri"
+
+#. 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 "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`"
+
+#. module: base
+#: field:ir.attachment,res_model:0
+msgid "Attached Model"
+msgstr "Attached Model"
+
+#. module: base
+#: field:ir.actions.server,trigger_name:0
+msgid "Trigger Name"
+msgstr "Trigger Name"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_model_access
+msgid "ir.model.access"
+msgstr "ir.model.access"
+
+#. module: base
+#: field:ir.cron,priority:0
+#: field:ir.ui.view,priority:0
+#: field:res.request,priority:0
+#: field:res.request.link,priority:0
+msgid "Priority"
+msgstr "Priority"
+
+#. module: base
+#: field:workflow.transition,act_from:0
+msgid "Source Activity"
+msgstr "Source Activity"
+
+#. module: base
+#: view:ir.sequence:0
+msgid "Legend (for prefix, suffix)"
+msgstr "Legend (for prefix, suffix)"
+
+#. module: base
+#: selection:ir.server.object.lines,type:0
+msgid "Formula"
+msgstr "Formula"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Can not remove root user!"
+msgstr "Can not remove root user!"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_LEFT"
+msgstr "STOCK_JUSTIFY_LEFT"
+
+#. module: base
+#: model:res.country,name:base.mw
+msgid "Malawi"
+msgstr "Malawi"
+
+#. module: base
+#: field:res.partner.address,type:0
+msgid "Address Type"
+msgstr "Address Type"
+
+#. module: base
+#: selection:ir.actions.todo,start_on:0
+msgid "Auto"
+msgstr "Auto"
+
+#. module: base
+#: view:res.request:0
+msgid "End of Request"
+msgstr "End of Request"
+
+#. module: base
+#: view:res.request:0
+msgid "References"
+msgstr "References"
+
+#. 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 "%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."
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+msgid "Note that this operation may take a few minutes."
+msgstr "Note that this operation may take a few minutes."
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: 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 "Tree"
+msgstr "Tree"
+
+#. module: base
+#: view:maintenance.contract.wizard:0
+msgid "Could you check your contract information ?"
+msgstr "Could you check your contract information ?"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_CLEAR"
+msgstr "STOCK_CLEAR"
+
+#. module: base
+#: help:res.users,password:0
+msgid "Keep empty if you don't want the user to be able to connect on the system."
+msgstr "Keep empty if you don't want the user to be able to connect on the system."
+
+#. module: base
+#: field:ir.actions.act_window,view_mode:0
+#: field:res.config.view,view:0
+msgid "View Mode"
+msgstr "View Mode"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Spanish / Español"
+msgstr "Spanish / Español"
+
+#. module: base
+#: field:res.company,logo:0
+msgid "Logo"
+msgstr "Logo"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PROPERTIES"
+msgstr "STOCK_PROPERTIES"
+
+#. module: base
+#: view:ir.module.module:0
+msgid "Uninstall (beta)"
+msgstr "Uninstall (beta)"
+
+#. module: base
+#: selection:ir.actions.act_window,target:0
+#: selection:ir.actions.url,target:0
+msgid "New Window"
+msgstr "New Window"
+
+#. module: base
+#: model:res.country,name:base.bs
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. module: base
+#: selection:res.partner.event,partner_type:0
+msgid "Commercial Prospect"
+msgstr "Commercial Prospect"
+
+#. module: base
+#: code:addons/base/res/partner/partner.py:0
+#, python-format
+msgid "Couldn't generate the next id because some partners have an alphabetic id !"
+msgstr "Couldn't generate the next id because some partners have an alphabetic id !"
+
+#. module: base
+#: view:ir.attachment:0
+msgid "Attachment"
+msgstr "Attachment"
+
+#. module: base
+#: model:res.country,name:base.ie
+msgid "Ireland"
+msgstr "Ireland"
+
+#. module: base
+#: wizard_field:module.module.update,update,update:0
+msgid "Number of modules updated"
+msgstr "Number of modules updated"
+
+#. module: base
+#: field:ir.actions.act_window,groups_id:0
+#: model:ir.actions.act_window,name:base.action_res_groups
+#: field:ir.actions.report.xml,groups_id:0
+#: field:ir.actions.todo,groups_id:0
+#: field:ir.actions.wizard,groups_id:0
+#: field:ir.model.fields,groups:0
+#: field:ir.rule.group,groups:0
+#: field:ir.ui.menu,groups_id:0
+#: model:ir.ui.menu,name:base.menu_action_res_groups
+#: view:res.groups:0
+#: view:res.users:0
+#: field:res.users,groups_id:0
+msgid "Groups"
+msgstr "Groups"
+
+#. module: base
+#: model:res.country,name:base.bz
+msgid "Belize"
+msgstr "Belize"
+
+#. module: base
+#: model:res.country,name:base.ge
+msgid "Georgia"
+msgstr "Georgia"
+
+#. module: base
+#: model:res.country,name:base.pl
+msgid "Poland"
+msgstr "Poland"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be removed"
+msgstr "To be removed"
+
+#. module: base
+#: field:ir.values,meta:0
+msgid "Meta Datas"
+msgstr "Meta Datas"
+
+#. module: base
+#: view:wizard.module.update_translations:0
+msgid "This wizard will detect new terms in the application so that you can update them manually."
+msgstr "Ovaj čarobnjak će naći nove izraze u aplikaciji tako da ih možete ručno ažurirati."
+
+#. 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 "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`."
+
+#. module: base
+#: field:ir.model,name:0
+#: field:ir.model.fields,model:0
+#: field:ir.model.grid,name:0
+#: field:ir.values,model:0
+msgid "Object Name"
+msgstr "Object Name"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "Wizard Field"
+msgstr "Wizard Field"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SELECT_COLOR"
+msgstr "STOCK_SELECT_COLOR"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_report_custom_fields
+msgid "ir.report.custom.fields"
+msgstr "ir.report.custom.fields"
+
+#. module: base
+#: model:res.country,name:base.st
+msgid "Saint Tome (Sao Tome) and Principe"
+msgstr "Saint Tome (Sao Tome) and Principe"
+
+#. module: base
+#: selection:res.partner.address,type:0
+msgid "Invoice"
+msgstr "Invoice"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_REDO"
+msgstr "STOCK_REDO"
+
+#. module: base
+#: model:res.country,name:base.bb
+msgid "Barbados"
+msgstr "Barbados"
+
+#. module: base
+#: model:res.country,name:base.mg
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. module: base
+#: constraint:ir.model:0
+msgid "The Object name must start with x_ and not contain any special character !"
+msgstr "The Object name must start with x_ and not contain any special character !"
+
+#. module: base
+#: help:ir.rule.group,global:0
+msgid "Make the rule global, otherwise it needs to be put on a group"
+msgstr "Make the rule global, otherwise it needs to be put on a group"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_menu_admin
+#: field:ir.report.custom,menu_id:0
+#: view:ir.ui.menu:0
+#: field:ir.ui.menu,name:0
+msgid "Menu"
+msgstr "Menu"
+
+#. module: base
+#: field:res.currency,rate:0
+msgid "Current Rate"
+msgstr "Current Rate"
+
+#. module: base
+#: field:ir.ui.view.custom,ref_id:0
+msgid "Original View"
+msgstr "Original View"
+
+#. module: base
+#: code:addons/base/res/res_user.py:0
+#, python-format
+msgid "Make sure you have no users linked with the group(s)!"
+msgstr "Make sure you have no users linked with the group(s)!"
+
+#. module: base
+#: selection:ir.report.custom.fields,fc0_op:0
+#: selection:ir.report.custom.fields,fc1_op:0
+#: selection:ir.report.custom.fields,fc2_op:0
+#: selection:ir.report.custom.fields,fc3_op:0
+#: selection:ir.rule,operator:0
+msgid "in"
+msgstr "in"
+
+#. module: base
+#: field:ir.actions.url,target:0
+msgid "Action Target"
+msgstr "Action Target"
+
+#. module: base
+#: model:res.country,name:base.ai
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. module: base
+#: field:ir.model.config,password_check:0
+msgid "Confirmation"
+msgstr "Confirmation"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Enter at least one field !"
+msgstr "Enter at least one field !"
+
+#. module: base
+#: field:ir.ui.view_sc,name:0
+msgid "Shortcut Name"
+msgstr "Shortcut Name"
+
+#. module: base
+#: field:res.partner,credit_limit:0
+msgid "Credit Limit"
+msgstr "Credit Limit"
+
+#. 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 "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."
+
+#. module: base
+#: model:res.country,name:base.zw
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_translation_export
+msgid "Import / Export"
+msgstr "Import / Export"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_config_user_form
+#: view:res.users:0
+msgid "Configure User"
+msgstr "Configure User"
+
+#. module: base
+#: field:ir.actions.server,email:0
+msgid "Email Address"
+msgstr "Email Address"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not write in this document! (%s)"
+msgstr "You can not write in this document! (%s)"
+
+#. module: base
+#: view:ir.actions.server:0
+#: field:workflow.activity,action_id:0
+msgid "Server Action"
+msgstr "Server Action"
+
+#. module: base
+#: model:res.country,name:base.tt
+msgid "Trinidad and Tobago"
+msgstr "Trinidad and Tobago"
+
+#. module: base
+#: model:res.country,name:base.lv
+msgid "Latvia"
+msgstr "Latvia"
+
+#. module: base
+#: view:ir.values:0
+msgid "Values"
+msgstr "Values"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Field Mappings"
+msgstr "Field Mappings"
+
+#. module: base
+#: model:ir.ui.menu,name:base.menu_custom
+msgid "Customization"
+msgstr "Customization"
+
+#. module: base
+#: model:res.country,name:base.py
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "left"
+msgstr "left"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_act_window_close
+msgid "ir.actions.act_window_close"
+msgstr "ir.actions.act_window_close"
+
+#. module: base
+#: field:ir.server.object.lines,col1:0
+msgid "Destination"
+msgstr "Destination"
+
+#. module: base
+#: model:res.country,name:base.lt
+msgid "Lithuania"
+msgstr "Lithuania"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_PRINT_PREVIEW"
+msgstr "STOCK_PRINT_PREVIEW"
+
+#. module: base
+#: model:res.country,name:base.si
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. module: base
+#: view:res.partner.canal:0
+#: field:res.partner.event,canal_id:0
+msgid "Channel"
+msgstr "Channel"
+
+#. module: base
+#: view:res.lang:0
+msgid "%p - Equivalent of either AM or PM."
+msgstr "%p - Equivalent of either AM or PM."
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Actions"
+msgstr "Iteration Actions"
+
+#. module: base
+#: field:maintenance.contract,date_stop:0
+msgid "Ending Date"
+msgstr "Ending Date"
+
+#. module: base
+#: model:res.country,name:base.nz
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_7
+msgid "Openstuff.net"
+msgstr "Openstuff.net"
+
+#. module: base
+#: model:res.country,name:base.nf
+msgid "Norfolk Island"
+msgstr "Norfolk Island"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_MEDIA_PLAY"
+msgstr "STOCK_MEDIA_PLAY"
+
+#. module: base
+#: field:ir.rule,operator:0
+msgid "Operator"
+msgstr "Operator"
+
+#. module: base
+#: wizard_view:module.lang.install,start:0
+msgid "Installation Done"
+msgstr "Installation Done"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_OPEN"
+msgstr "STOCK_OPEN"
+
+#. module: base
+#: field:ir.actions.server,action_id:0
+#: selection:ir.actions.server,state:0
+msgid "Client Action"
+msgstr "Client Action"
+
+#. module: base
+#: selection:ir.report.custom.fields,alignment:0
+msgid "right"
+msgstr "right"
+
+#. module: base
+#: model:res.country,name:base.bd
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. module: base
+#: constraint:res.company:0
+msgid "Error! You can not create recursive companies."
+msgstr "Error! You can not create recursive companies."
+
+#. module: base
+#: selection:maintenance.contract,state:0
+msgid "Valid"
+msgstr "Ispravan"
+
+#. module: base
+#: code:addons/base/ir/ir_model.py:0
+#, python-format
+msgid "You can not delete this document! (%s)"
+msgstr "You can not delete this document! (%s)"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "XSL"
+msgstr "XSL"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_partner_other_form
+#: model:ir.ui.menu,name:base.menu_partner_other_form
+msgid "Others Partners"
+msgstr "Others Partners"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Can not upgrade module '%s'. It is not installed."
+msgstr "Can not upgrade module '%s'. It is not installed."
+
+#. module: base
+#: model:res.country,name:base.cu
+msgid "Cuba"
+msgstr "Cuba"
+
+#. module: base
+#: view:res.lang:0
+msgid "%S - Second as a decimal number [00,61]."
+msgstr "%S - Sekunde kao decimalni broj [00,61]."
+
+#. module: base
+#: model:res.country,name:base.am
+msgid "Armenia"
+msgstr "Armenia"
+
+#. module: base
+#: selection:ir.report.custom,frequency:0
+msgid "Daily"
+msgstr "Daily"
+
+#. module: base
+#: model:res.country,name:base.se
+msgid "Sweden"
+msgstr "Sweden"
+
+#. 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 "Gantt"
+
+#. module: base
+#: view:ir.property:0
+msgid "Property"
+msgstr "Property"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_bank_type
+#: view:res.partner.bank.type:0
+msgid "Bank Account Type"
+msgstr "Bank Account Type"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-project"
+msgstr "terp-project"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Iteration Action Configuration"
+msgstr "Iteration Action Configuration"
+
+#. module: base
+#: model:res.country,name:base.at
+msgid "Austria"
+msgstr "Austria"
+
+#. 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 "Calendar"
+msgstr "Kalendar"
+
+#. module: base
+#: field:workflow.activity,signal_send:0
+msgid "Signal (subflow.*)"
+msgstr "Signal (subflow.*)"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_17
+msgid "HR sector"
+msgstr "HR sector"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module_dependency
+msgid "Module dependency"
+msgstr "Module dependency"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Draft"
+msgstr "Draft"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_CENTER"
+msgstr "SKLADIÅ TE_PORAVNAJ_CENTAR"
+
+#. module: base
+#: view:res.config.view:0
+msgid "Choose Your Mode"
+msgstr "Choose Your Mode"
+
+#. module: base
+#: field:res.company,rml_footer1:0
+msgid "Report Footer 1"
+msgstr "Report Footer 1"
+
+#. module: base
+#: field:res.company,rml_footer2:0
+msgid "Report Footer 2"
+msgstr "Report Footer 2"
+
+#. module: base
+#: view:ir.model.access:0
+#: model:ir.ui.menu,name:base.menu_security_access
+#: view:res.groups:0
+#: field:res.groups,model_access:0
+msgid "Access Controls"
+msgstr "Access Controls"
+
+#. module: base
+#: view:ir.module.module:0
+#: field:ir.module.module,dependencies_id:0
+msgid "Dependencies"
+msgstr "Dependencies"
+
+#. module: base
+#: field:res.partner,parent_id:0
+msgid "Main Company"
+msgstr "Main Company"
+
+#. module: base
+#: field:ir.report.custom.fields,bgcolor:0
+msgid "Background Color"
+msgstr "Background Color"
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "If you use a formula type, use a python expression using the variable 'object'."
+msgstr "If you use a formula type, use a python expression using the variable 'object'."
+
+#. module: base
+#: field:res.partner.address,birthdate:0
+msgid "Birthdate"
+msgstr "Birthdate"
+
+#. 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 "Contact Titles"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_som
+msgid "res.partner.som"
+msgstr "res.partner.som"
+
+#. module: base
+#: model:ir.model,name:base.model_workflow_activity
+msgid "workflow.activity"
+msgstr "workflow.activity"
+
+#. module: base
+#: field:ir.model.fields,select_level:0
+msgid "Searchable"
+msgstr "Searchable"
+
+#. module: base
+#: model:res.country,name:base.uy
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. module: base
+#: view:res.partner.event:0
+msgid "Document Link"
+msgstr "Document Link"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_title
+msgid "res.partner.title"
+msgstr "res.partner.title"
+
+#. module: base
+#: field:ir.sequence,prefix:0
+msgid "Prefix"
+msgstr "Prefix"
+
+#. module: base
+#: field:ir.actions.server,loop_action:0
+msgid "Loop Action"
+msgstr "Loop Action"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "German / Deutsch"
+msgstr "German / Deutsch"
+
+#. module: base
+#: help:ir.actions.server,trigger_name:0
+msgid "Select the Signal name that is to be used as the trigger."
+msgstr "Select the Signal name that is to be used as the trigger."
+
+#. module: base
+#: view:ir.actions.server:0
+msgid "Fields Mapping"
+msgstr "Fields Mapping"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_sir
+msgid "Sir"
+msgstr "Sir"
+
+#. module: base
+#: wizard_button:module.upgrade,next,start:0
+msgid "Start Upgrade"
+msgstr "Start Upgrade"
+
+#. module: base
+#: field:ir.default,ref_id:0
+msgid "ID Ref."
+msgstr "ID Ref."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "French / Français"
+msgstr "French / Français"
+
+#. module: base
+#: model:res.country,name:base.mt
+msgid "Malta"
+msgstr "Malta"
+
+#. module: base
+#: field:ir.actions.server,fields_lines:0
+msgid "Field Mappings."
+msgstr "Field Mappings."
+
+#. module: base
+#: model:ir.model,name:base.model_ir_module_module
+#: field:ir.model.data,module:0
+#: view:ir.module.module:0
+#: field:ir.module.module.dependency,module_id:0
+#: rml:ir.module.reference:0
+msgid "Module"
+msgstr "Module"
+
+#. module: base
+#: field:ir.attachment,description: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 "Description"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_attachment
+msgid "ir.attachment"
+msgstr "ir.attachment"
+
+#. module: base
+#: field:res.users,action_id:0
+msgid "Home Action"
+msgstr "Home Action"
+
+#. module: base
+#: field:res.lang,grouping:0
+msgid "Separator Format"
+msgstr "Separator Format"
+
+#. module: base
+#: view:wizard.module.lang.export:0
+msgid "Export language"
+msgstr "Export language"
+
+#. module: base
+#: selection:maintenance.contract.wizard,state:0
+msgid "Unvalidated"
+msgstr "Unvalidated"
+
+#. module: base
+#: model:ir.ui.menu,name:base.next_id_9
+msgid "Database Structure"
+msgstr "Database Structure"
+
+#. module: base
+#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard
+#: wizard_view:res.partner.spam_send,init:0
+msgid "Mass Mailing"
+msgstr "Mass Mailing"
+
+#. module: base
+#: model:res.country,name:base.yt
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "You can also import .po files."
+msgstr "You can also import .po files."
+
+#. module: base
+#: code:addons/base/maintenance/maintenance.py:0
+#, python-format
+msgid "Unable to find a valid contract"
+msgstr "Unable to find a valid contract"
+
+#. module: base
+#: code:addons/base/ir/ir_actions.py:0
+#, python-format
+msgid "Please specify an action to launch !"
+msgstr "Please specify an action to launch !"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_JUSTIFY_RIGHT"
+msgstr "STOCK_JUSTIFY_RIGHT"
+
+#. module: base
+#: model:ir.model,name:base.model_res_partner_function
+msgid "Function of the contact"
+msgstr "Function of the contact"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.open_module_tree_upgrade
+#: model:ir.ui.menu,name:base.menu_module_tree_upgrade
+msgid "Modules to be installed, upgraded or removed"
+msgstr "Modules to be installed, upgraded or removed"
+
+#. module: base
+#: view:res.payterm:0
+msgid "Payment Term"
+msgstr "Payment Term"
+
+#. module: base
+#: field:ir.report.custom,footer:0
+msgid "Report Footer"
+msgstr "Report Footer"
+
+#. module: base
+#: selection:res.lang,direction:0
+msgid "Right-to-Left"
+msgstr "Right-to-Left"
+
+#. module: base
+#: wizard_view:module.lang.import,init:0
+msgid "Import language"
+msgstr "Import language"
+
+#. 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 "Vremenski plan akcija"
+
+#. module: base
+#: field:res.partner,title:0
+#: field:res.partner.address,title:0
+#: field:res.partner.title,name:0
+msgid "Title"
+msgstr "Naslov"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE"
+msgstr "SKLADIÅ TE_SPREMI"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-account"
+msgstr "terp-račun"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "Recursion error in modules dependencies !"
+msgstr "Recursion error in modules dependencies !"
+
+#. module: base
+#: view:ir.model:0
+msgid "Create a Menu"
+msgstr "Create a Menu"
+
+#. 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 "Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement."
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_module_category_tree
+#: model:ir.ui.menu,name:base.menu_action_module_category_tree
+msgid "Categories of Modules"
+msgstr "Kategorije Modula"
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Ukrainian / украї́нська мо́ва"
+msgstr "Ukrainian / украї́нська мо́ва"
+
+#. module: base
+#: selection:ir.actions.todo,state:0
+msgid "Not Started"
+msgstr "Nije pokrenuto"
+
+#. module: base
+#: model:res.country,name:base.ru
+msgid "Russian Federation"
+msgstr "Russian Federation"
+
+#. module: base
+#: field:res.company,name:0
+msgid "Company Name"
+msgstr "Naziv firme"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_res_roles_form
+#: model:ir.ui.menu,name:base.menu_action_res_roles_form
+#: view:res.roles:0
+#: view:res.users:0
+#: field:res.users,roles_id:0
+msgid "Roles"
+msgstr "Uloge"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.action_country
+#: model:ir.ui.menu,name:base.menu_country_partner
+msgid "Countries"
+msgstr "Zemlje"
+
+#. module: base
+#: view:ir.rule.group:0
+msgid "Record rules"
+msgstr "Record rules"
+
+#. module: base
+#: field:res.partner,vat:0
+msgid "VAT"
+msgstr "VAT"
+
+#. module: base
+#: view:res.lang:0
+msgid "12. %w              ==> 5 ( Friday is the 6th day)"
+msgstr "12. %w              ==> 5 ( Petak je 6. dan)"
+
+#. module: base
+#: constraint:res.partner.category:0
+msgid "Error ! You can not create recursive categories."
+msgstr "Error ! You can not create recursive categories."
+
+#. module: base
+#: view:res.lang:0
+msgid "%x - Appropriate date representation."
+msgstr "%x - Appropriate date representation."
+
+#. module: base
+#: help:ir.module.repository,filter:0
+msgid "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+msgstr "Regexp to search module on the repository webpage:\n"
+"- The first parenthesis must match the name of the module.\n"
+"- The second parenthesis must match the whole version number.\n"
+"- The last parenthesis must match the extension of the module."
+
+#. module: base
+#: view:res.lang:0
+msgid "%M - Minute as a decimal number [00,59]."
+msgstr "%M - Minute kao decimalni broj [00,59]."
+
+#. module: base
+#: model:res.country,name:base.tj
+msgid "Tajikistan"
+msgstr "Tajikistan"
+
+#. module: base
+#: help:ir.actions.report.xml,header:0
+msgid "Add or not the coporate RML header"
+msgstr "Add or not the coporate RML header"
+
+#. module: base
+#: model:ir.actions.act_window,name:base.act_values_form_action
+#: model:ir.ui.menu,name:base.menu_values_form_action
+msgid "Connect Actions To Client Events"
+msgstr "Poveži akcije na događaje klijenta"
+
+#. module: base
+#: selection:ir.module.module,license:0
+msgid "GPL-2 or later version"
+msgstr "GPL-2 ili novija verzija"
+
+#. module: base
+#: selection:res.partner.event,type:0
+msgid "Prospect Contact"
+msgstr "Mogući kontakt"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_actions_wizard
+#: selection:ir.ui.menu,action:0
+msgid "ir.actions.wizard"
+msgstr "ir.actions.wizard"
+
+#. module: base
+#: model:res.country,name:base.nr
+msgid "Nauru"
+msgstr "Nauru"
+
+#. module: base
+#: model:ir.model,name:base.model_ir_property
+msgid "ir.property"
+msgstr "ir.svojstvo"
+
+#. module: base
+#: selection:ir.actions.act_window,view_type:0
+#: 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 "Form"
+msgstr "Obrazac"
+
+#. module: base
+#: model:res.country,name:base.me
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_QUIT"
+msgstr "SKLADIÅ TE_NAPUSTI"
+
+#. module: base
+#: view:ir.cron:0
+msgid "Technical Data"
+msgstr "Technical Data"
+
+#. module: base
+#: view:res.partner:0
+#: field:res.partner,category_id:0
+msgid "Categories"
+msgstr "Categories"
+
+#. module: base
+#: selection:ir.module.module,state:0
+#: selection:ir.module.module.dependency,state:0
+msgid "To be upgraded"
+msgstr "Treba biti nadograđeno"
+
+#. module: base
+#: model:res.country,name:base.ly
+msgid "Libya"
+msgstr "Libya"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "terp-purchase"
+msgstr "terp-kupovina"
+
+#. module: base
+#: wizard_field:module.module.update,init,repositories:0
+msgid "Repositories"
+msgstr "Repositories"
+
+#. module: base
+#: model:res.country,name:base.cf
+msgid "Central African Republic"
+msgstr "Central African Republic"
+
+#. module: base
+#: model:res.country,name:base.li
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. module: base
+#: model:res.partner.title,name:base.res_partner_title_ltd
+msgid "Ltd"
+msgstr "d.o.o."
+
+#. module: base
+#: field:res.partner,ean13:0
+msgid "EAN13"
+msgstr "EAN13"
+
+#. module: base
+#: model:res.country,name:base.pt
+msgid "Portugal"
+msgstr "Portugal"
+
+#. module: base
+#: selection:maintenance.contract,state:0
+msgid "Unvalid"
+msgstr "Unvalid"
+
+#. module: base
+#: field:ir.module.module,certificate:0
+msgid "Quality Certificate"
+msgstr "Quality Certificate"
+
+#. module: base
+#: view:res.lang:0
+msgid "6.  %d, %m         ==> 05, 12"
+msgstr "6.  %d, %m         ==> 05, 12"
+
+#. module: base
+#: help:res.partner,customer:0
+msgid "Check this box if the partner is a customer."
+msgstr "Check this box if the partner is a customer."
+
+#. 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 "Jezici"
+
+#. module: base
+#: model:res.country,name:base.pw
+msgid "Palau"
+msgstr "Palau"
+
+#. module: base
+#: model:res.country,name:base.ec
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. module: base
+#: code:addons/base/module/wizard/wizard_export_lang.py:0
+#, 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 "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."
+
+#. module: base
+#: model:res.country,name:base.au
+msgid "Australia"
+msgstr "Australia"
+
+#. 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 "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."
+
+#. module: base
+#: rml:ir.module.reference:0
+msgid "Menu :"
+msgstr "Menu :"
+
+#. module: base
+#: selection:ir.model.fields,state:0
+msgid "Base Field"
+msgstr "Osnovno polje"
+
+#. module: base
+#: wizard_view:module.module.update,update:0
+msgid "New modules"
+msgstr "Novi moduli"
+
+#. 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 "SXW sadržaj"
+
+#. module: base
+#: view:ir.cron:0
+msgid "Action to Trigger"
+msgstr "Action to Trigger"
+
+#. module: base
+#: field:ir.report.custom.fields,fc0_operande:0
+#: field:ir.report.custom.fields,fc1_operande:0
+#: field:ir.report.custom.fields,fc2_operande:0
+#: field:ir.report.custom.fields,fc3_operande:0
+#: selection:ir.translation,type:0
+msgid "Constraint"
+msgstr "Ograničenje"
+
+#. module: base
+#: selection:ir.values,key:0
+#: selection:res.partner.address,type:0
+msgid "Default"
+msgstr "Uobičajeno"
+
+#. module: base
+#: help:res.partner.bank,acc_number:0
+msgid "Bank account number"
+msgstr "Bank account number"
+
+#. module: base
+#: field:ir.model.fields,required:0
+#: field:res.partner.bank.type.field,required:0
+msgid "Required"
+msgstr "Zahtijevano"
+
+#. module: base
+#: field:ir.model.fields,domain:0
+#: field:ir.rule,domain:0
+#: field:res.partner.title,domain:0
+msgid "Domain"
+msgstr "Domain"
+
+#. module: base
+#: field:res.request.history,name:0
+msgid "Summary"
+msgstr "Sažetak"
+
+#. 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 "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`"
+
+#. module: base
+#: view:res.company:0
+msgid "Header/Footer"
+msgstr "Zaglavlje/Podnožje"
+
+#. module: base
+#: model:res.country,name:base.lb
+msgid "Lebanon"
+msgstr "Lebanon"
+
+#. module: base
+#: wizard_field:module.lang.import,init,name:0
+msgid "Language name"
+msgstr "Naziv jezika"
+
+#. module: base
+#: model:res.country,name:base.va
+msgid "Holy See (Vatican City State)"
+msgstr "Holy See (Vatican City State)"
+
+#. 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 "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price"
+
+#. module: base
+#: wizard_field:base.module.import,init,module_file:0
+msgid "Module .ZIP file"
+msgstr ".ZIP datoteka modula"
+
+#. module: base
+#: model:res.partner.category,name:base.res_partner_category_16
+msgid "Telecom sector"
+msgstr "Telecom sector"
+
+#. module: base
+#: field:workflow.transition,trigger_model:0
+msgid "Trigger Object"
+msgstr "Trigger Object"
+
+#. module: base
+#: selection:ir.report.custom,state:0
+msgid "Subscribed"
+msgstr "Subscribed"
+
+#. module: base
+#: wizard_view:module.lang.install,init:0
+#: wizard_view:module.upgrade,next:0
+msgid "System Upgrade"
+msgstr "Nadogradnja sistema"
+
+#. module: base
+#: field:workflow.activity,in_transitions:0
+msgid "Incoming Transitions"
+msgstr "Incoming Transitions"
+
+#. module: base
+#: model:res.country,name:base.sr
+msgid "Suriname"
+msgstr "Suriname"
+
+#. module: base
+#: field:ir.values,key2:0
+#: view:res.partner.event.type:0
+#: field:res.partner.event.type,name:0
+msgid "Event Type"
+msgstr "Tip događaja"
+
+#. module: base
+#: view:res.partner.bank:0
+#: model:res.partner.bank.type,name:base.bank_normal
+msgid "Bank account"
+msgstr "Bank account"
+
+#. module: base
+#: view:ir.sequence.type:0
+msgid "Sequence Type"
+msgstr "Sequence Type"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system."
+
+#. module: base
+#: view:res.partner.address:0
+msgid "Partner Address"
+msgstr "Partner Address"
+
+#. module: base
+#: field:ir.module.module,license:0
+msgid "License"
+msgstr "Licenca"
+
+#. module: base
+#: code:addons/base/ir/ir_report_custom.py:0
+#, python-format
+msgid "Invalid operation"
+msgstr "Invalid operation"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_SAVE_AS"
+msgstr "STOCK_SAVE_AS"
+
+#. module: base
+#: selection:ir.translation,type:0
+msgid "SQL Constraint"
+msgstr "SQL Constraint"
+
+#. module: base
+#: field:ir.actions.server,srcmodel_id:0
+msgid "Model"
+msgstr "Model"
+
+#. module: base
+#: code:addons/base/module/module.py:0
+#, python-format
+msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+msgstr "You try to install a module that depends on the module: %s.\nBut this module is not available in your system."
+
+#. 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 "View"
+
+#. module: base
+#: view:ir.actions.act_window:0
+msgid "Open a Window"
+msgstr "Open a Window"
+
+#. module: base
+#: model:res.country,name:base.gq
+msgid "Equatorial Guinea"
+msgstr "Equatorial Guinea"
+
+#. module: base
+#: wizard_view:base.module.import,init:0
+msgid "Module Import"
+msgstr "Module Import"
+
+#. module: base
+#: field:res.bank,zip:0
+#: field:res.partner.address,zip:0
+#: field:res.partner.bank,zip:0
+msgid "Zip"
+msgstr "Zip"
+
+#. module: base
+#: field:ir.module.module,author:0
+msgid "Author"
+msgstr "Autor"
+
+#. module: base
+#: selection:ir.ui.menu,icon:0
+msgid "STOCK_UNDELETE"
+msgstr "STOCK_UNDELETE"
+
+#. module: base
+#: view:res.lang:0
+msgid "%c - Appropriate date and time representation."
+msgstr "%c - Appropriate date and time representation."
+
+#. module: base
+#: selection:module.lang.install,init,lang:0
+msgid "Finland / Suomi"
+msgstr "Finland / Suomi"
+
+#. module: base
+#: model:res.country,name:base.bo
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. module: base
+#: model:res.country,name:base.gh
+msgid "Ghana"
+msgstr "Ghan

Follow ups