← Back to team overview

credativ team mailing list archive

[Merge] lp:openobject-client-web/6.0 into lp:~credativ/openobject-client-web/web-syrup

 

Dmitrijs Ledkovs has proposed merging lp:openobject-client-web/6.0 into lp:~credativ/openobject-client-web/web-syrup.

Requested reviews:
  credativ (credativ)
Related bugs:
  Bug #78439 in Ubuntu: "ubuntu bug report"
  https://bugs.launchpad.net/ubuntu/+bug/78439
  Bug #714557 in OpenERP Web Client: "Cant create new tasks in Project->Long Term Planning->Plannings->New->Time Encoding"
  https://bugs.launchpad.net/openobject-client-web/+bug/714557
  Bug #714610 in OpenERP Web Client: "Categories field in Partner list view has no effect"
  https://bugs.launchpad.net/openobject-client-web/+bug/714610
  Bug #715485 in OpenERP Web Client: "[PS] Product list view : filter :field stock location give traceback on web-client"
  https://bugs.launchpad.net/openobject-client-web/+bug/715485
  Bug #715688 in OpenERP Web Client: "[PS] web client : bank statement : import invoice doesn't work"
  https://bugs.launchpad.net/openobject-client-web/+bug/715688
  Bug #717344 in OpenERP Web Client: "[trunk] Paging Display amount not correct"
  https://bugs.launchpad.net/openobject-client-web/+bug/717344
  Bug #717376 in OpenERP Web Client: "[trunk] email_template template preview error"
  https://bugs.launchpad.net/openobject-client-web/+bug/717376
  Bug #718552 in OpenERP Web Client: "[6.0.1] Error on parsing of active_id in domain on act_windows"
  https://bugs.launchpad.net/openobject-client-web/+bug/718552
  Bug #719433 in OpenERP Web Client: "Clear button on the List view removes the Groups"
  https://bugs.launchpad.net/openobject-client-web/+bug/719433
  Bug #720173 in OpenERP Web Client: "O2Ms nested in O2M form can not be used if the O2M form object has no mandatory attribute"
  https://bugs.launchpad.net/openobject-client-web/+bug/720173
  Bug #720294 in OpenERP Web Client: "menu click went on wrong link"
  https://bugs.launchpad.net/openobject-client-web/+bug/720294
  Bug #720820 in OpenERP Web Client: "Switch to edition view when deleting the last item left on a page while in form view"
  https://bugs.launchpad.net/openobject-client-web/+bug/720820
  Bug #721840 in OpenERP Web Client: "[Trunk] wiki - groups do not show group name"
  https://bugs.launchpad.net/openobject-client-web/+bug/721840
  Bug #721868 in OpenERP Web Client: "Context values incorrectly set on home action"
  https://bugs.launchpad.net/openobject-client-web/+bug/721868
  Bug #724226 in OpenERP Web Client: "the no record found, create feature doesn't properly work"
  https://bugs.launchpad.net/openobject-client-web/+bug/724226
  Bug #729354 in OpenERP Web Client: "[trunk] ManyToOne().open_record() JS function on 'onclick' action doesn't work"
  https://bugs.launchpad.net/openobject-client-web/+bug/729354
  Bug #741765 in OpenERP Web Client: "[trunk] selection widget and unicode"
  https://bugs.launchpad.net/openobject-client-web/+bug/741765
  Bug #748238 in OpenERP Web Client: "search view - criteria are m2o fields instead of substring search"
  https://bugs.launchpad.net/openobject-client-web/+bug/748238
  Bug #753340 in OpenERP Web Client: "Menus with actions do not work if using the default icon (STOCK_OPEN)"
  https://bugs.launchpad.net/openobject-client-web/+bug/753340
  Bug #768973 in OpenERP Web Client: "controllers, i18n: improve messages when things bork"
  https://bugs.launchpad.net/openobject-client-web/+bug/768973
  Bug #791771 in OpenERP Web Client: "web client translation javascript domain update BUG"
  https://bugs.launchpad.net/openobject-client-web/+bug/791771
  Bug #795704 in OpenERP Web Client: "tree "unlimited" option only displayed the 50 records"
  https://bugs.launchpad.net/openobject-client-web/+bug/795704
  Bug #806861 in OpenERP Web Client: "installation documentation outdated"
  https://bugs.launchpad.net/openobject-client-web/+bug/806861
  Bug #816207 in OpenERP Web Client: "many2one widget issue in search form, revision 4670"
  https://bugs.launchpad.net/openobject-client-web/+bug/816207

For more details, see:
https://code.launchpad.net/~openerp/openobject-client-web/6.0/+merge/81598

Tracking merge proposal of tip into stable branch.
-- 
https://code.launchpad.net/~openerp/openobject-client-web/6.0/+merge/81598
Your team credativ is requested to review the proposed merge of lp:openobject-client-web/6.0 into lp:~credativ/openobject-client-web/web-syrup.
=== modified file 'addons/openerp/controllers/actions.py'
--- addons/openerp/controllers/actions.py	2011-10-03 15:00:20 +0000
+++ addons/openerp/controllers/actions.py	2011-11-08 15:41:11 +0000
@@ -347,7 +347,8 @@
     # for that passing active_id in headers, to get it in openAction
     if getattr(cherrypy.request, 'params', []):
         if getattr(cherrypy.request.params, 'context', {}):
-            cherrypy.response.headers['active_id'] = cherrypy.request.params.context.get('active_id')
+            cherrypy.response.headers['active_id'] = cherrypy.request.params.get('_terp_id')\
+            or cherrypy.request.params.context.get('active_id')
 
     # Add 'opened' mark to indicate we're now within the popup and can
     # continue on during the second round of execution
@@ -388,7 +389,7 @@
         #raise common.error('Error', 'Invalid action...')
         return;
 
-    data.setdefault('context', {}).update(expr_eval(action.get('context') or action.get('form_context', '{}'), data.get('context', {})))
+    data.setdefault('context', {}).update(expr_eval(action.get('form_context', '{}') or action.get('context','{}'), data.get('context', {})))
 
     action_executor = ACTIONS_BY_TYPE[action['type']]
     return action_executor(action, data)
@@ -446,6 +447,9 @@
         
     ctx = dict(rpc.session.context, **(data.get('context') or {}))   
 
+    # avoid reading large binary values that we won't even care about
+    ctx['bin_size'] = True
+
     res = rpc.session.execute('object', 'execute', type, 'read', act_id, False, ctx)
     return execute(res, **data)
 

=== modified file 'addons/openerp/controllers/form.py'
--- addons/openerp/controllers/form.py	2011-06-10 10:10:19 +0000
+++ addons/openerp/controllers/form.py	2011-11-08 15:41:11 +0000
@@ -412,7 +412,12 @@
                         if isinstance(original_value, tuple):
                             original_data[field] = original_value[0]
                         if field in data and data[field] != original_data[field]:
-                            modified[field] = data[field]
+                            #When field is many2many at that time following code will be applied
+                            if isinstance(data[field], list) and isinstance(data[field][0][2], list):
+                                if sorted(data[field][0][2]) != sorted(original_data[field]):
+                                    modified[field] = data[field]
+                            else:
+                                modified[field] = data[field]
 
                     ctx = utils.context_with_concurrency_info(params.context, params.concurrency_info)
                     Model.write([params.id], modified, ctx)
@@ -654,7 +659,7 @@
     @expose(content_type='application/octet-stream')
     def save_binary_data(self, _fname='file.dat', **kw):
         params, data = TinyDict.split(kw)
-
+        
         cherrypy.response.headers['Content-Disposition'] = 'attachment; filename="%s"' % _fname
 
         if params.datas:
@@ -991,7 +996,9 @@
 
         if type is None:
             action_type = rpc.RPCProxy('ir.actions.actions').read(act_id, ['type'], context)['type']
-            action = rpc.session.execute('object', 'execute', action_type, 'read', act_id, False, context)
+            # avoid reading large binary values that we won't even care about
+            ctx_no_bin = dict(context, bin_size=True)
+            action = rpc.session.execute('object', 'execute', action_type, 'read', act_id, False, ctx_no_bin)
 
         if domain:
             if isinstance(domain, basestring):
@@ -1020,6 +1027,10 @@
         model = data.pop('_terp_model')
         context = data.pop('_terp_context')
 
+        change_default = False
+        if '_terp_change_default' in data:
+            change_default = data.pop('_terp_change_default')
+
         try:
             context = eval(context) # convert to python dict
         except:
@@ -1123,6 +1134,13 @@
             for k in result['domain']:
                 result['domain'][k] = ustr(result['domain'][k])
 
+        if change_default:
+            value = data.get('_terp_value')
+            proxy = rpc.RPCProxy('ir.values')
+            values = proxy.get('default', '%s=%s' % (caller, value), [(model, False)], False, context)
+            for index, fname, value in values:
+                if fname not in result['value']:
+                    result['value'][fname] = value
         return result
 
     @expose('json')

=== modified file 'addons/openerp/controllers/openo2m.py'
--- addons/openerp/controllers/openo2m.py	2011-04-04 15:02:36 +0000
+++ addons/openerp/controllers/openo2m.py	2011-11-08 15:41:11 +0000
@@ -49,15 +49,15 @@
         form = tw.form_view.ViewForm(vp, name="view_form", action="/openerp/openo2m/save")
         cherrypy.request.terp_validators = {}
 
-        if '/' in params.o2m:
-            params.o2m = '.'.join(params.o2m.split('/')[-1:])
-
         wid = form.screen.widget.get_widgets_by_name(params.o2m)[0]
 
         # save view_params for later phazes
         vp = vp.make_plain('_terp_view_params/')
         hiddens = map(lambda x: tw.form.Hidden(name=x, default=ustr(vp[x])), vp)
 
+        if params.m2o:
+            hiddens += [tw.form.Hidden(name='_terp_m2o', default=params.m2o)]
+
         params.prefix = params.o2m
         params.views = wid.view
 
@@ -129,6 +129,8 @@
         if new_ids and params.source:
             current.id = new_ids[-1]
             params.o2m_id = current.id
+        else:
+            params.o2m_id = False
 
         # perform button action
         if params.button:

=== modified file 'addons/openerp/controllers/search.py'
--- addons/openerp/controllers/search.py	2011-06-08 05:35:56 +0000
+++ addons/openerp/controllers/search.py	2011-11-08 15:41:11 +0000
@@ -252,7 +252,7 @@
 
         c = search_context.get('context', {})
         v = search_context.get('value')
-        if v and '__' in v:
+        if v and isinstance(v, basestring) and '__' in v:
             value, operator = v.split('__')
             v = int(value)
         ctx = expr_eval(c, {'self':v})
@@ -359,8 +359,36 @@
             if selection_domain:
                 domain.extend(selection_domain)
 
+        for i,flt in enumerate(ncustom_domain):
+            if len(flt) > 1:
+
+                left_field = flt[0]
+                operator = flt[1]
+                right_val = flt[2]
+
+                if res[left_field]['type'] == 'selection' and right_val:
+
+                    if operator in ['ilike','=','in']:
+                        operator = 'in'
+                    else:
+                        operator = 'not in'
+
+                    keys = []
+                    if isinstance(right_val, list):
+                        for sel_val in res[left_field]['selection']:
+                            for rgt_val in right_val:
+                                if sel_val[1].lower().find(rgt_val.lower()) != -1 and sel_val[0] not in keys:
+                                    keys.append(sel_val[0])
+                    else:
+                        for sel_val in res[left_field]['selection']:
+                            if sel_val[1].lower().find(right_val.lower()) != -1:
+                                keys.append(sel_val[0])
+
+                    if keys:
+                        ncustom_domain[i] = (left_field, operator, keys)
+
         if not domain:
-            domain = '[]'
+            domain = None
         if not isinstance(group_by_ctx, list):
             group_by_ctx = [group_by_ctx]
         if group_by_ctx:

=== modified file 'addons/openerp/po/javascript/ar.po'
--- addons/openerp/po/javascript/ar.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/ar.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/bg.po'
--- addons/openerp/po/javascript/bg.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/ca.po'
--- addons/openerp/po/javascript/ca.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/cs.po'
--- addons/openerp/po/javascript/cs.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/cs.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Language: \n"
 "X-Poedit-Language: Czech\n"
 "Generated-By: Babel 0.9.5\n"

=== modified file 'addons/openerp/po/javascript/da.po'
--- addons/openerp/po/javascript/da.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/de.po'
--- addons/openerp/po/javascript/de.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/de.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/en_AU.po'
--- addons/openerp/po/javascript/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/en_CA.po'
--- addons/openerp/po/javascript/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/en_GB.po'
--- addons/openerp/po/javascript/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/es.po'
--- addons/openerp/po/javascript/es.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/es.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/es_CL.po'
--- addons/openerp/po/javascript/es_CL.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/es_CL.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format
@@ -36,7 +36,7 @@
 
 #: static/javascript/form.js:995
 msgid "You must save this record to perform the action !"
-msgstr ""
+msgstr "Debe guardar este registro para ejecutar la acción"
 
 #: static/javascript/form.js:1127
 msgid "Do you really want to delete the attachment"
@@ -74,7 +74,7 @@
 
 #: static/javascript/search.js:285
 msgid "Invalid Value"
-msgstr ""
+msgstr "Valor inválido"
 
 #: static/javascript/viewed.js:63
 msgid "Do you really want to remove this node?"

=== modified file 'addons/openerp/po/javascript/eu.po'
--- addons/openerp/po/javascript/eu.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/eu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:35+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Basque <eu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/fi.po'
--- addons/openerp/po/javascript/fi.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/fr.po'
--- addons/openerp/po/javascript/fr.po	2011-08-25 05:14:40 +0000
+++ addons/openerp/po/javascript/fr.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-08-24 19:57+0000\n"
-"Last-Translator: lholivier <olivier.lenoir@xxxxxxx>\n"
+"PO-Revision-Date: 2011-09-20 09:43+0000\n"
+"Last-Translator: Quentin THEURET <Unknown>\n"
 "Language-Team: fr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-25 05:14+0000\n"
-"X-Generator: Launchpad (build 13727)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92
@@ -26,8 +26,7 @@
 #: static/javascript/form.js:169
 msgid "Invalid form, correct red fields."
 msgstr ""
-"Le formulaire est incorrectement rempli, veuillez vérifier les champs "
-"surlignés en rouge"
+"Formulaire incomplet, veuillez mettre à jour les champs surlignés en rouge."
 
 #: static/javascript/form.js:204
 msgid "Do you really want to delete this record?"

=== modified file 'addons/openerp/po/javascript/gl.po'
--- addons/openerp/po/javascript/gl.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/he.po'
--- addons/openerp/po/javascript/he.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/he.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/hr.po'
--- addons/openerp/po/javascript/hr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/hr.po	2011-11-08 15:41:11 +0000
@@ -8,19 +8,19 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:35+0000\n"
-"Last-Translator: Goran Kliska <gkliska@xxxxxxxxx>\n"
+"PO-Revision-Date: 2011-10-04 18:19+0000\n"
+"Last-Translator: Goran Cvijanović <goranc@xxxxxxxxx>\n"
 "Language-Team: Croatian <hr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format
 msgid "You selected to open %(tabs)s tabs - do you want to continue?"
-msgstr ""
+msgstr "Odabrali ste otvaranje %(tabs)s jezičke - želite li nastaviti?"
 
 #: static/javascript/form.js:169
 msgid "Invalid form, correct red fields."
@@ -36,7 +36,7 @@
 
 #: static/javascript/form.js:995
 msgid "You must save this record to perform the action !"
-msgstr ""
+msgstr "Morate spremiti zapis prije izvršenja akcije"
 
 #: static/javascript/form.js:1127
 msgid "Do you really want to delete the attachment"
@@ -68,7 +68,7 @@
 
 #: static/javascript/m2o.js:526
 msgid "error in display::"
-msgstr ""
+msgstr "greška u prikazu::"
 
 #: static/javascript/o2m.js:67
 msgid "Do you really want to delete record ?"
@@ -76,7 +76,7 @@
 
 #: static/javascript/search.js:285
 msgid "Invalid Value"
-msgstr ""
+msgstr "Pogrešna vrijednost"
 
 #: static/javascript/viewed.js:63
 msgid "Do you really want to remove this node?"
@@ -88,7 +88,7 @@
 
 #: static/javascript/openerp/openerp.base.js:127
 msgid "doLoadingSuccess: Cannot parse JSON"
-msgstr ""
+msgstr "doLoadingSuccess: Nije moguće parsirati JSON"
 
 #: static/javascript/openerp/openerp.base.js:335
 msgid "Loading"

=== modified file 'addons/openerp/po/javascript/hu.po'
--- addons/openerp/po/javascript/hu.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/hu.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/id.po'
--- addons/openerp/po/javascript/id.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/it.po'
--- addons/openerp/po/javascript/it.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/it.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/lt.po'
--- addons/openerp/po/javascript/lt.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/lt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:34+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Lithuanian <lt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/lv.po'
--- addons/openerp/po/javascript/lv.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/lv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:34+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Latvian <lv@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/mk.po'
--- addons/openerp/po/javascript/mk.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/mk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/mn.po'
--- addons/openerp/po/javascript/mn.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/mn.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-05-30 06:56+0000\n"
+"PO-Revision-Date: 2011-10-02 19:01+0000\n"
 "Last-Translator: BAYARAA Sainbayar <Unknown>\n"
 "Language-Team: mn <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92
@@ -67,7 +67,7 @@
 
 #: static/javascript/m2o.js:526
 msgid "error in display::"
-msgstr "дэлгэцний алдаа::"
+msgstr "алдаа"
 
 #: static/javascript/o2m.js:67
 msgid "Do you really want to delete record ?"

=== modified file 'addons/openerp/po/javascript/nb.po'
--- addons/openerp/po/javascript/nb.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/nl.po'
--- addons/openerp/po/javascript/nl.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/nl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:10+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/pl.po'
--- addons/openerp/po/javascript/pl.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/pl.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:34+0000\n"
-"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@xxxxxxxxxxxx>\n"
+"PO-Revision-Date: 2011-09-23 09:40+0000\n"
+"Last-Translator: Wojciech Zylinski <Unknown>\n"
 "Language-Team: pl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92
@@ -78,7 +78,7 @@
 
 #: static/javascript/search.js:285
 msgid "Invalid Value"
-msgstr ""
+msgstr "Niewłaściwa wartość"
 
 #: static/javascript/viewed.js:63
 msgid "Do you really want to remove this node?"

=== modified file 'addons/openerp/po/javascript/pt.po'
--- addons/openerp/po/javascript/pt.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/pt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:33+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Portuguese <pt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/pt_BR.po'
--- addons/openerp/po/javascript/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/ro.po'
--- addons/openerp/po/javascript/ro.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/ro.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-03-15 08:06+0000\n"
-"Last-Translator: Mihai Satmarean <Unknown>\n"
+"PO-Revision-Date: 2011-09-16 16:34+0000\n"
+"Last-Translator: Syraxes <Unknown>\n"
 "Language-Team: Romanian <ro@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format
@@ -24,7 +24,7 @@
 
 #: static/javascript/form.js:169
 msgid "Invalid form, correct red fields."
-msgstr ""
+msgstr "Forma invalidă. Corectați cîmpurile colorate în roșu."
 
 #: static/javascript/form.js:204
 msgid "Do you really want to delete this record?"
@@ -32,70 +32,74 @@
 
 #: static/javascript/form.js:960
 msgid "You must select one or several records !"
-msgstr ""
+msgstr "Trebuie să selectați cel puțin o înregistrare !"
 
 #: static/javascript/form.js:995
 msgid "You must save this record to perform the action !"
-msgstr ""
+msgstr "Trebuie să salvați înregistrarea mai întîi !"
 
 #: static/javascript/form.js:1127
 msgid "Do you really want to delete the attachment"
-msgstr ""
+msgstr "Sigur doriți să ștergeți atașamentul"
 
 #: static/javascript/form.js:1161
 msgid "No record selected ! You can only attach to existing record."
 msgstr ""
+"Nu ați selectat nici o înregistrare ! Atașarea nu poate fi făcută decît la o "
+"înregistrare existentă."
 
 #: static/javascript/form.js:1220
 msgid "OpenERP - Error"
-msgstr ""
+msgstr "Eroare OpenERP"
 
 #: static/javascript/form.js:1291
 msgid ""
 "Warning, the record has been modified,\n"
 "your changes will be discarded."
 msgstr ""
+"Atenție: înregistrarea a fost modificată întretimp,\n"
+"așadar schimbările făcute de dvs vor fi anulate."
 
 #: static/javascript/listgrid.js:542 static/javascript/o2m.js:123
 msgid "To edit Record, please first save it."
-msgstr ""
+msgstr "Vă rugăm să salvați înregistrarea înainte de a încerca să o editați."
 
 #: static/javascript/listgrid.js:650
 msgid "Do you really want to delete selected record(s) ?"
-msgstr ""
+msgstr "Sigur doriți ștergerea înregistrărilor selectate ?"
 
 #: static/javascript/m2o.js:526
 msgid "error in display::"
-msgstr ""
+msgstr "eroare la afișare::"
 
 #: static/javascript/o2m.js:67
 msgid "Do you really want to delete record ?"
-msgstr ""
+msgstr "Sigur doriți să ștergeți înregistrarea ?"
 
 #: static/javascript/search.js:285
 msgid "Invalid Value"
-msgstr ""
+msgstr "Valoare incorectă"
 
 #: static/javascript/viewed.js:63
 msgid "Do you really want to remove this node?"
-msgstr ""
+msgstr "Sigur doriți ștergerea acestui nod ?"
 
 #: static/javascript/viewed.js:329
 msgid "Do you really wants to create an inherited view here?"
-msgstr ""
+msgstr "Sigur doriți crearea aici a unui view moștenit ?"
 
 #: static/javascript/openerp/openerp.base.js:127
 msgid "doLoadingSuccess: Cannot parse JSON"
-msgstr ""
+msgstr "doLoadingSuccess: Eroare la parsarea JSON"
 
 #: static/javascript/openerp/openerp.base.js:335
 msgid "Loading"
-msgstr ""
+msgstr "Se încarcă"
 
 #: static/javascript/openerp/openerp.ui.tips.js:51
 msgid "Object"
-msgstr ""
+msgstr "Obiect"
 
 #: static/javascript/openerp/openerp.ui.tips.js:52
 msgid "Field"
-msgstr ""
+msgstr "Câmp"

=== modified file 'addons/openerp/po/javascript/ru.po'
--- addons/openerp/po/javascript/ru.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/sk.po'
--- addons/openerp/po/javascript/sk.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== added file 'addons/openerp/po/javascript/sl.po'
--- addons/openerp/po/javascript/sl.po	1970-01-01 00:00:00 +0000
+++ addons/openerp/po/javascript/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,104 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-21 08:29+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/form.js:92
+#, python-format
+msgid "You selected to open %(tabs)s tabs - do you want to continue?"
+msgstr ""
+"Izbrali ste, da boste odprli zavihke %(tabs)s - ali želite nadaljevati?"
+
+#: static/javascript/form.js:169
+msgid "Invalid form, correct red fields."
+msgstr "Neveljavna oblika, popravite rdeča polja."
+
+#: static/javascript/form.js:204
+msgid "Do you really want to delete this record?"
+msgstr "Ali res želite izbrisati ta zapis?"
+
+#: static/javascript/form.js:960
+msgid "You must select one or several records !"
+msgstr "Izbrati morate enega ali več zapisov!"
+
+#: static/javascript/form.js:995
+msgid "You must save this record to perform the action !"
+msgstr "Morate shtaniti zapis za izvršitev tega dejanja!"
+
+#: static/javascript/form.js:1127
+msgid "Do you really want to delete the attachment"
+msgstr "Ali res želite izbrisati to priponko?"
+
+#: static/javascript/form.js:1161
+msgid "No record selected ! You can only attach to existing record."
+msgstr "Zapis ni izbran. Pripnete lahko samo na obstoječ zapis!"
+
+#: static/javascript/form.js:1220
+msgid "OpenERP - Error"
+msgstr "OpenERP - Napaka"
+
+#: static/javascript/form.js:1291
+msgid ""
+"Warning, the record has been modified,\n"
+"your changes will be discarded."
+msgstr ""
+"Opozorilo, zapis je bil spremenjen,\n"
+"vaše spremembe ne bodo upoštevane."
+
+#: static/javascript/listgrid.js:542 static/javascript/o2m.js:123
+msgid "To edit Record, please first save it."
+msgstr "Za urejanje zapisa, ga prosim najprej shranite."
+
+#: static/javascript/listgrid.js:650
+msgid "Do you really want to delete selected record(s) ?"
+msgstr "Ali res želite izbrisati izbrane zapise?"
+
+#: static/javascript/m2o.js:526
+msgid "error in display::"
+msgstr "napaka v prikazu::"
+
+#: static/javascript/o2m.js:67
+msgid "Do you really want to delete record ?"
+msgstr "Ali res želite izbrisati zapis?"
+
+#: static/javascript/search.js:285
+msgid "Invalid Value"
+msgstr "Neveljavna vrednost"
+
+#: static/javascript/viewed.js:63
+msgid "Do you really want to remove this node?"
+msgstr "Ali res želite izbrisati to vozlišče?"
+
+#: static/javascript/viewed.js:329
+msgid "Do you really wants to create an inherited view here?"
+msgstr "Ali res želite ustvariti deden pogled tukaj?"
+
+#: static/javascript/openerp/openerp.base.js:127
+msgid "doLoadingSuccess: Cannot parse JSON"
+msgstr "doLoadingSuccess: Ni mogoče razčleniti JSON"
+
+#: static/javascript/openerp/openerp.base.js:335
+msgid "Loading"
+msgstr "Nalaganje"
+
+#: static/javascript/openerp/openerp.ui.tips.js:51
+msgid "Object"
+msgstr "Predmet"
+
+#: static/javascript/openerp/openerp.ui.tips.js:52
+msgid "Field"
+msgstr "Polje"

=== modified file 'addons/openerp/po/javascript/sr.po'
--- addons/openerp/po/javascript/sr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/sr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:32+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/sr@xxxxxxxx'
--- addons/openerp/po/javascript/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:31+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Serbian latin <sr@latin@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/sv.po'
--- addons/openerp/po/javascript/sv.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/sv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:31+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sv <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/form.js:92

=== modified file 'addons/openerp/po/javascript/th.po'
--- addons/openerp/po/javascript/th.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/th.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/tr.po'
--- addons/openerp/po/javascript/tr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/tr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/uk.po'
--- addons/openerp/po/javascript/uk.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/javascript/zh_CN.po'
--- addons/openerp/po/javascript/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/javascript/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/form.js:92
 #, python-format

=== modified file 'addons/openerp/po/messages/ar.po'
--- addons/openerp/po/messages/ar.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/ar.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-03-26 15:22+0000\n"
+"PO-Revision-Date: 2011-09-02 22:08+0000\n"
 "Last-Translator: kifcaliph <kifcaliph@xxxxxxxxxxx>\n"
 "Language-Team: Arabic <ar@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"
@@ -967,7 +967,7 @@
 
 #: controllers/templates/header.mako:66 controllers/templates/header.mako:69
 msgid "About"
-msgstr "عن"
+msgstr "عن النظام"
 
 #: controllers/templates/header.mako:73 controllers/templates/header.mako:75
 msgid "Help"

=== modified file 'addons/openerp/po/messages/bg.po'
--- addons/openerp/po/messages/bg.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/ca.po'
--- addons/openerp/po/messages/ca.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/cs.po'
--- addons/openerp/po/messages/cs.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/cs.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-08-08 08:08+0000\n"
-"Last-Translator: Jiří Hajda <robie@xxxxxxxxxx>\n"
+"PO-Revision-Date: 2011-09-22 09:54+0000\n"
+"Last-Translator: Konki <pavel.konkol@xxxxxxxxx>\n"
 "Language-Team: Czech\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "X-Poedit-Language: Czech\n"
 "Generated-By: Babel 0.9.5\n"
 
@@ -1277,11 +1277,11 @@
 
 #: utils/rpc.py:131
 msgid "Access Denied"
-msgstr ""
+msgstr "Přístup odepřen"
 
 #: utils/rpc.py:238
 msgid "Unsupported protocol."
-msgstr ""
+msgstr "Nepodporovaný protokol."
 
 #: utils/rpc.py:342
 msgid ""
@@ -1291,15 +1291,15 @@
 
 #: utils/rpc.py:355
 msgid "Not logged..."
-msgstr ""
+msgstr "Nepřihlášen..."
 
 #: utils/rpc.py:355
 msgid "Authorization Error"
-msgstr ""
+msgstr "Chyba autorizace"
 
 #: utils/rpc.py:439
 msgid "== Access Denied =="
-msgstr ""
+msgstr "== Přístup odepřen =="
 
 #: widgets/_views.py:46
 msgid "Form"
@@ -1320,7 +1320,7 @@
 #: widgets/listgrid.py:368 widgets/form/_form.py:904
 #, python-format
 msgid "Invalid view, duplicate field: %s"
-msgstr ""
+msgstr "Neplatný náhled, duplicitní pole: %s"
 
 #: widgets/pager.py:56
 #, python-format

=== modified file 'addons/openerp/po/messages/da.po'
--- addons/openerp/po/messages/da.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/de.po'
--- addons/openerp/po/messages/de.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/de.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/en_AU.po'
--- addons/openerp/po/messages/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/en_CA.po'
--- addons/openerp/po/messages/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/en_GB.po'
--- addons/openerp/po/messages/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/es.po'
--- addons/openerp/po/messages/es.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/es.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/es_CL.po'
--- addons/openerp/po/messages/es_CL.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/es_CL.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/et.po'
--- addons/openerp/po/messages/et.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/et.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/eu.po'
--- addons/openerp/po/messages/eu.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/eu.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/fi.po'
--- addons/openerp/po/messages/fi.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/fr.po'
--- addons/openerp/po/messages/fr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/fr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/gl.po'
--- addons/openerp/po/messages/gl.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/he.po'
--- addons/openerp/po/messages/he.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/he.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/hr.po'
--- addons/openerp/po/messages/hr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/hr.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-28 12:02+0000\n"
-"Last-Translator: Goran Kliska (Aplikacija d.o.o.) <gkliska@xxxxxxxxx>\n"
+"PO-Revision-Date: 2011-10-04 18:36+0000\n"
+"Last-Translator: Goran Cvijanović <goranc@xxxxxxxxx>\n"
 "Language-Team: Croatian <hr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"
@@ -42,14 +42,14 @@
 msgid ""
 "The username portion of the email address is invalid (the portion before the "
 "@: %(username)s)"
-msgstr ""
+msgstr "Pogrešno korisničko ime u email adresi (dio prije @: %(username)s)"
 
 #: validators.py:250
 #, python-format
 msgid ""
 "The domain portion of the email address is invalid (the portion after the @: "
 "%(domain)s)"
-msgstr ""
+msgstr "Pogrešan naziv domene u email adresi (dio prije @: %(domain)s)"
 
 #: validators.py:254
 msgid "You must start your URL with http://, https://, etc"
@@ -194,11 +194,11 @@
 
 #: controllers/database.py:79
 msgid "Drop database"
-msgstr ""
+msgstr "Obriši bazu podataka"
 
 #: controllers/database.py:81 controllers/templates/database.mako:58
 msgid "Drop"
-msgstr ""
+msgstr "Obriši"
 
 #: controllers/database.py:83 controllers/database.py:91
 #: controllers/templates/login.mako:43
@@ -214,7 +214,7 @@
 
 #: controllers/database.py:88
 msgid "Backup database"
-msgstr ""
+msgstr "Napravi sigurnosnu kopiju baze"
 
 #: controllers/database.py:90 controllers/templates/database.mako:60
 msgid "Backup"
@@ -226,7 +226,7 @@
 
 #: controllers/database.py:98 controllers/templates/database.mako:62
 msgid "Restore"
-msgstr ""
+msgstr "Obnovi"
 
 #: controllers/database.py:99
 msgid "File:"
@@ -283,15 +283,15 @@
 
 #: controllers/database.py:228
 msgid "Could not drop database"
-msgstr ""
+msgstr "Ne mogu obrisati bazu"
 
 #: controllers/database.py:251
 msgid "Could not create backup."
-msgstr ""
+msgstr "Ne mogu kreirati sigurnosnu kopiju."
 
 #: controllers/database.py:275
 msgid "Could not restore database"
-msgstr ""
+msgstr "Ne mogu obnoviti bazu"
 
 #: controllers/database.py:298
 msgid "Error, password not changed."
@@ -302,6 +302,8 @@
 "Your problem has been sent to the quality team\n"
 "We will recontact you after analysing the problem."
 msgstr ""
+"Vaša prijava problema je poslana timu za podršku\n"
+"Javiti ćemo vam se nakon analize problema."
 
 #: controllers/error_page.py:81
 #, python-format
@@ -339,25 +341,27 @@
 
 #: controllers/form.py:1124
 msgid "Set to default value"
-msgstr ""
+msgstr "Postavi na predefiniranu vrijednost"
 
 #: controllers/form.py:1125
 msgid "Set as default"
-msgstr ""
+msgstr "Postavi kao predefinirano"
 
 #: controllers/form.py:1132
 msgid "Action"
-msgstr ""
+msgstr "Akcija"
 
 #: controllers/form.py:1133
 msgid "Report"
-msgstr ""
+msgstr "Izvještaj"
 
 #: controllers/impex.py:66
 msgid ""
 "Operation failed\n"
 "I/O error"
 msgstr ""
+"Neuspješna radnja\n"
+"I/O greška"
 
 #: controllers/impex.py:402
 msgid "Export Error"
@@ -365,7 +369,7 @@
 
 #: controllers/impex.py:469
 msgid "Database ID"
-msgstr ""
+msgstr "Oznaka baze"
 
 #: controllers/impex.py:476
 msgid "Error opening .CSV file"

=== modified file 'addons/openerp/po/messages/hu.po'
--- addons/openerp/po/messages/hu.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/hu.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/id.po'
--- addons/openerp/po/messages/id.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/it.po'
--- addons/openerp/po/messages/it.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/it.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/ln.po'
--- addons/openerp/po/messages/ln.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/ln.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/lt.po'
--- addons/openerp/po/messages/lt.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/lt.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/lv.po'
--- addons/openerp/po/messages/lv.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/lv.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/mk.po'
--- addons/openerp/po/messages/mk.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/mk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/mn.po'
--- addons/openerp/po/messages/mn.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/mn.po	2011-11-08 15:41:11 +0000
@@ -8,19 +8,19 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-05-26 03:23+0000\n"
+"PO-Revision-Date: 2011-10-02 19:39+0000\n"
 "Last-Translator: BAYARAA Sainbayar <Unknown>\n"
 "Language-Team: mn <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"
-msgstr "Тоон утга буруу байна"
+msgstr "Бутархай тоо бичигдлийн алдаатай байна"
 
 #: validators.py:114 validators.py:119 validators.py:262
 msgid "Invalid datetime format"
@@ -262,7 +262,7 @@
 "We suggest you to drop this database."
 msgstr ""
 "Сервер суулгах явцад алдаа гарлаа.\n"
-"Бид танд үүссэн өгөгдлийн сангаа устгахыг зөвлөж байна."
+"Бид танд энэ үүссэн өгөгдлийн сангаа устгахыг зөвлөж байна."
 
 #: controllers/database.py:195
 msgid "Error during database creation"
@@ -271,27 +271,27 @@
 #: controllers/database.py:198 controllers/database.py:225
 #: controllers/database.py:271 controllers/database.py:294
 msgid "Bad super admin password"
-msgstr ""
+msgstr "Супер админ нууц үгийн сонголт муу"
 
 #: controllers/database.py:202
 msgid "Could not create database."
-msgstr ""
+msgstr "Өгөгдлийн санг үүсгэх боломжгүй"
 
 #: controllers/database.py:228
 msgid "Could not drop database"
-msgstr ""
+msgstr "Өгөгдлийн санг устгах боломжгүй"
 
 #: controllers/database.py:251
 msgid "Could not create backup."
-msgstr ""
+msgstr "Өгөгдлийн санг нөөцлөх боломжгүй"
 
 #: controllers/database.py:275
 msgid "Could not restore database"
-msgstr ""
+msgstr "Өгөгдлийн санг сэргээх боломжгүй"
 
 #: controllers/database.py:298
 msgid "Error, password not changed."
-msgstr ""
+msgstr "Алдаа, нууц үг солигдсонгүй."
 
 #: controllers/error_page.py:79
 msgid ""
@@ -309,15 +309,15 @@
 #: controllers/form.py:561
 #, python-format
 msgid "Invalid button type \"%s\""
-msgstr ""
+msgstr "\"%s\" товчны төрөл тодорхойгүй"
 
 #: controllers/form.py:944 controllers/tree.py:243
 msgid "No record selected"
-msgstr ""
+msgstr "Сонгогдсон бичлэг байхгүй"
 
 #: controllers/form.py:949
 msgid "Print Screen"
-msgstr "Дэлгэц олдсонгүй"
+msgstr "Дэлгэц хэвлэх"
 
 #: controllers/form.py:1016 widgets/listgrid.py:305 widgets/listgrid.py:366
 #: widgets/form/_form.py:910
@@ -331,76 +331,79 @@
 
 #: controllers/form.py:1121
 msgid "Open resource"
-msgstr ""
+msgstr "Нөөцийг нээх"
 
 #: controllers/form.py:1124
 msgid "Set to default value"
-msgstr ""
+msgstr "Үндсэн утга олгох"
 
 #: controllers/form.py:1125
 msgid "Set as default"
-msgstr ""
+msgstr "Үндсэн утгаар тохируулах"
 
 #: controllers/form.py:1132
 msgid "Action"
-msgstr ""
+msgstr "Үйлдэл"
 
 #: controllers/form.py:1133
 msgid "Report"
-msgstr ""
+msgstr "Тайлан"
 
 #: controllers/impex.py:66
 msgid ""
 "Operation failed\n"
 "I/O error"
 msgstr ""
+"Үйлдэл алдаатай\n"
+"Оролт/гаралтын алдаа"
 
 #: controllers/impex.py:402
 msgid "Export Error"
-msgstr ""
+msgstr "Экспорт алдаа"
 
 #: controllers/impex.py:469
 msgid "Database ID"
-msgstr ""
+msgstr "Өгөгдлийн сангийн дугаар"
 
 #: controllers/impex.py:476
 msgid "Error opening .CSV file"
-msgstr ""
+msgstr ".CSV  файлыг нээхэд алдаа гарлаа"
 
 #: controllers/impex.py:476
 msgid "Input Error."
-msgstr ""
+msgstr "Оролтын алдаа."
 
 #: controllers/impex.py:498
 #, python-format
 msgid "You cannot import the field '%s', because we cannot auto-detect it"
 msgstr ""
+"Та, автоматаар олох боломжгүй учир '%s' талбарыг импорт хийх боломжгүй."
 
 #: controllers/impex.py:501
 #, python-format
 msgid "Error processing the first line of the file. Field \"%s\" is unknown"
-msgstr ""
+msgstr "Файлын эхний мөр дээрх үйлдэлийн алдаа. '%s' талбар тодорхойгүй"
 
 #: controllers/impex.py:72 controllers/impex.py:501
 msgid "Import Error."
-msgstr ""
+msgstr "Импортын алдаа"
 
 #: controllers/impex.py:520
 msgid "The CSV delimiter must be a single character"
-msgstr ""
+msgstr "CSV ганц тэмдэгтээр хязгаарлагдсан байх ёстой"
 
 #: controllers/impex.py:532
 msgid "File Format Error"
-msgstr ""
+msgstr "Файлын формат алдаатай"
 
 #: controllers/impex.py:550
 msgid "XML-RPC error"
-msgstr ""
+msgstr "XML-RPC алдаатай"
 
 #: controllers/impex.py:555
 #, python-format
 msgid "Imported %d objects"
-msgstr ""
+msgstr "%d объект импортлогдсон"
 
 #: controllers/impex.py:560
 #, python-format
@@ -421,7 +424,7 @@
 
 #: controllers/preferences.py:65 controllers/templates/header.mako:59
 msgid "Preferences"
-msgstr "Хувийн тохиргоо"
+msgstr "Тохируулга"
 
 #: controllers/preferences.py:92
 msgid "All passwords have to be filled."
@@ -433,11 +436,11 @@
 
 #: controllers/preferences.py:103
 msgid "Could not change your password."
-msgstr ""
+msgstr "Таны нууц үгийг өөрчлөх боломжгүй"
 
 #: controllers/preferences.py:105
 msgid "Original password incorrect, your password was not changed."
-msgstr ""
+msgstr "Жинхэнэ нууц үг алдаатай, таны нууц үг солигдсонгүй"
 
 #: controllers/root.py:174
 #, python-format
@@ -446,15 +449,15 @@
 
 #: controllers/translator.py:136
 msgid "You need to save the resource before adding translations."
-msgstr ""
+msgstr "Та орчуулгыг нэмэхээс өмнө нөөцийг хадгалах шаардлагатай"
 
 #: controllers/tree.py:274
 msgid "No resource selected"
-msgstr ""
+msgstr "Нөөц сонгогдоогүй байна"
 
 #: controllers/utils.py:43
 msgid "Could not connect to server"
-msgstr ""
+msgstr "Сервертэй холбогдох боломжгүй"
 
 #: controllers/utils.py:127 controllers/templates/login_ajax.mako:111
 msgid "Bad username or password"
@@ -474,11 +477,11 @@
 
 #: controllers/view_log.py:35
 msgid "Latest Modification by"
-msgstr "Хамгийн сүүлд зассан"
+msgstr "Сүүлд өөрчилсөн хэрэглэгч"
 
 #: controllers/view_log.py:36
 msgid "Latest Modification Date"
-msgstr "Хамгийн сүүлд зассан огноо"
+msgstr "Сүүлд өөрчилсөн огноо"
 
 #: controllers/view_log.py:37
 msgid "Owner"
@@ -486,7 +489,7 @@
 
 #: controllers/view_log.py:38
 msgid "Group Owner"
-msgstr ""
+msgstr "Эзэмшигч групп"
 
 #: controllers/view_log.py:39
 msgid "Access Level"
@@ -494,19 +497,19 @@
 
 #: controllers/view_log.py:40
 msgid "Internal module data ID"
-msgstr ""
+msgstr "Гадаад модулийн өгөгдлийн дугаар"
 
 #: controllers/viewed.py:221
 msgid "Invalid view id."
-msgstr ""
+msgstr "Харагдагцын дугаар алдаатай"
 
 #: controllers/viewed.py:499
 msgid "Unable to create inherited view."
-msgstr ""
+msgstr "Харагдагцаас удамшуулаж үүсгэх боломжгүй"
 
 #: controllers/viewed.py:501
 msgid "Can't create inherited view here."
-msgstr ""
+msgstr "Энд харагдагцаас удамшуулан үүсгэж болохгүй"
 
 #: controllers/viewed.py:504
 msgid "Not implemented yet!"
@@ -522,43 +525,44 @@
 
 #: controllers/viewed.py:871
 msgid "Save Button"
-msgstr ""
+msgstr "Хадгалах товч"
 
 #: controllers/viewed.py:871
 msgid "Cancel Button"
-msgstr ""
+msgstr "Болих товч"
 
 #: controllers/viewed.py:871
 msgid "Open Button"
-msgstr ""
+msgstr "Нээх товч"
 
 #: controllers/viewed.py:877
 msgid "Left"
-msgstr ""
+msgstr "Зүүн"
 
 #: controllers/viewed.py:877
 msgid "Center"
-msgstr ""
+msgstr "Төв"
 
 #: controllers/viewed.py:877
 msgid "Right"
-msgstr ""
+msgstr "Баруун"
 
 #: controllers/templates/about.mako:4
 msgid "About the OpenERP Web"
-msgstr ""
+msgstr "OpenERP Web тухай"
 
 #: controllers/templates/about.mako:27
 msgid "OpenERP Web"
-msgstr ""
+msgstr "OpenERP Web"
 
 #: controllers/templates/about.mako:30
 msgid "Copyright &copy; 2006-TODAY OpenERP SA. All Rights Reserved."
 msgstr ""
+"Copyright &copy; 2006-TODAY OpenERP SA. Бүх эрх хуулиар хамгаалагдсан."
 
 #: controllers/templates/about.mako:31
 msgid "OpenERP is a trademark of the OpenERP SA Company."
-msgstr ""
+msgstr "OpenERP барааны таних тэмдэгийг эзэмшигч OpenERP SA компани"
 
 #: controllers/templates/about.mako:33
 #, python-format

=== modified file 'addons/openerp/po/messages/nb.po'
--- addons/openerp/po/messages/nb.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/nl.po'
--- addons/openerp/po/messages/nl.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/nl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/pl.po'
--- addons/openerp/po/messages/pl.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/pl.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-28 12:02+0000\n"
-"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@xxxxxxxxxxxx>\n"
+"PO-Revision-Date: 2011-09-23 09:38+0000\n"
+"Last-Translator: Wojciech Zylinski <Unknown>\n"
 "Language-Team: pl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75
@@ -344,7 +344,7 @@
 
 #: controllers/form.py:1121
 msgid "Open resource"
-msgstr ""
+msgstr "Otwórz zasób"
 
 #: controllers/form.py:1124
 msgid "Set to default value"
@@ -356,11 +356,11 @@
 
 #: controllers/form.py:1132
 msgid "Action"
-msgstr ""
+msgstr "Akcja"
 
 #: controllers/form.py:1133
 msgid "Report"
-msgstr ""
+msgstr "Raport"
 
 #: controllers/impex.py:66
 msgid ""
@@ -587,7 +587,7 @@
 
 #: controllers/templates/about.mako:42
 msgid "About OpenERP"
-msgstr ""
+msgstr "O OpenERP"
 
 #: controllers/templates/about.mako:44
 #, python-format
@@ -637,7 +637,7 @@
 
 #: controllers/templates/error_page.mako:84
 msgid "Let me fix it"
-msgstr ""
+msgstr "Pozwól mi to naprawić"
 
 #: controllers/templates/error_page.mako:91
 #: controllers/templates/error_page.mako:93
@@ -664,7 +664,7 @@
 
 #: controllers/templates/error_page.mako:120
 msgid "Other Comments:"
-msgstr ""
+msgstr "Pozostałe komentarze:"
 
 #: controllers/templates/error_page.mako:132
 msgid "Send to Publisher Warranty Team"
@@ -707,7 +707,7 @@
 
 #: controllers/templates/exp.mako:166
 msgid "Export Type:"
-msgstr ""
+msgstr "Typ eksportu:"
 
 #: controllers/templates/exp.mako:169
 msgid "Import Compatible Export"
@@ -719,7 +719,7 @@
 
 #: controllers/templates/exp.mako:190
 msgid "Available fields"
-msgstr ""
+msgstr "Dostępne pola"
 
 #: controllers/templates/exp.mako:192
 msgid "Fields to export"
@@ -727,16 +727,16 @@
 
 #: controllers/templates/exp.mako:194
 msgid "Save fields list"
-msgstr ""
+msgstr "Zapisz listę pól"
 
 #: controllers/templates/exp.mako:196
 msgid "Save as:"
-msgstr ""
+msgstr "Zapisz jako:"
 
 #: controllers/templates/exp.mako:198 controllers/templates/fieldpref.mako:102
 #: controllers/templates/selection.mako:45
 msgid "OK"
-msgstr ""
+msgstr "OK"
 
 #: controllers/templates/exp.mako:202
 msgid "Saved exports:"
@@ -765,7 +765,7 @@
 
 #: controllers/templates/exp.mako:234
 msgid "Remove All"
-msgstr ""
+msgstr "Usuń wszystko"
 
 #: controllers/templates/exp.mako:252
 msgid "Export to File"
@@ -986,11 +986,11 @@
 
 #: controllers/templates/imp.mako:105
 msgid "CSV File:"
-msgstr ""
+msgstr "Plik CSV:"
 
 #: controllers/templates/imp.mako:123
 msgid "2. Check your file format"
-msgstr ""
+msgstr "2. Sprawdź format pliku"
 
 #: controllers/templates/imp.mako:130
 #, python-format

=== modified file 'addons/openerp/po/messages/pt.po'
--- addons/openerp/po/messages/pt.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/pt.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/pt_BR.po'
--- addons/openerp/po/messages/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/ro.po'
--- addons/openerp/po/messages/ro.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/ro.po	2011-11-08 15:41:11 +0000
@@ -8,34 +8,34 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-04-20 18:54+0000\n"
-"Last-Translator: Mihai Satmarean <Unknown>\n"
+"PO-Revision-Date: 2011-09-16 17:21+0000\n"
+"Last-Translator: Syraxes <Unknown>\n"
 "Language-Team: Romanian <ro@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"
-msgstr ""
+msgstr "Număr real invalid"
 
 #: validators.py:114 validators.py:119 validators.py:262
 msgid "Invalid datetime format"
-msgstr ""
+msgstr "Format data+timp incorect"
 
 #: validators.py:166
 msgid "Please select a file."
-msgstr "Selectați un fișier."
+msgstr "Alegeți un fișier."
 
 #: validators.py:247
 msgid "Please enter an email address"
-msgstr ""
+msgstr "Introduceți o adresă email"
 
 #: validators.py:248
 msgid "An email address must contain a single @"
-msgstr ""
+msgstr "O adresă email conține un singur @"
 
 #: validators.py:249
 #, python-format
@@ -53,11 +53,11 @@
 
 #: validators.py:254
 msgid "You must start your URL with http://, https://, etc"
-msgstr ""
+msgstr "URL-ul trebuie să înceapă cu http://, https://, etc"
 
 #: validators.py:255
 msgid "That is not a valid URL"
-msgstr ""
+msgstr "URL incorect"
 
 #: validators.py:256
 #, python-format
@@ -66,15 +66,15 @@
 
 #: validators.py:260
 msgid "Please enter an integer value"
-msgstr ""
+msgstr "Introduceți un număr întreg"
 
 #: validators.py:261
 msgid "Please enter a number"
-msgstr "Vă rog introduceți un număr"
+msgstr "Introduceți un număr"
 
 #: controllers/actions.py:94
 msgid "Invalid View"
-msgstr ""
+msgstr "View invalid"
 
 #: controllers/actions.py:127
 msgid "Error no report"
@@ -90,11 +90,11 @@
 
 #: controllers/actions.py:397
 msgid "Relative URLs are not supported"
-msgstr ""
+msgstr "URL-urile relative nu sînt suportate"
 
 #: controllers/actions.py:425
 msgid "Action not found"
-msgstr ""
+msgstr "Acțiune necunoscută"
 
 #: controllers/actions.py:474
 msgid "No action defined"
@@ -103,10 +103,12 @@
 #: controllers/attachment.py:55
 msgid "No record selected, You can only attach to existing record..."
 msgstr ""
+"Nu este selectată nici o înregistrare. Atașarea nu poate fi făcută decît la "
+"o înregistrare existentă ..."
 
 #: controllers/database.py:63
 msgid "Create database"
-msgstr ""
+msgstr "Crearea unei baze de date"
 
 #: controllers/database.py:65 controllers/templates/database.mako:56
 #: controllers/templates/search.mako:145
@@ -141,7 +143,7 @@
 
 #: controllers/database.py:70
 msgid "Load Demonstration data:"
-msgstr ""
+msgstr "Încărcare date demo:"
 
 #: controllers/database.py:70
 msgid ""
@@ -155,7 +157,7 @@
 
 #: controllers/database.py:71
 msgid "Default Language:"
-msgstr ""
+msgstr "Limba implicită:"
 
 #: controllers/database.py:71
 msgid ""
@@ -192,11 +194,11 @@
 
 #: controllers/database.py:79
 msgid "Drop database"
-msgstr ""
+msgstr "Ștergerea bazei de date"
 
 #: controllers/database.py:81 controllers/templates/database.mako:58
 msgid "Drop"
-msgstr ""
+msgstr "Ștergere"
 
 #: controllers/database.py:83 controllers/database.py:91
 #: controllers/templates/login.mako:43
@@ -253,6 +255,7 @@
 #: controllers/database.py:173
 msgid "You must avoid all accents, space or special characters."
 msgstr ""
+"Trebuie să evitați toate accentele , spațiile și caracterele speciale."
 
 #: controllers/database.py:174
 msgid "Bad database name"
@@ -273,7 +276,7 @@
 #: controllers/database.py:198 controllers/database.py:225
 #: controllers/database.py:271 controllers/database.py:294
 msgid "Bad super admin password"
-msgstr ""
+msgstr "Parola de superadmin este incorectă"
 
 #: controllers/database.py:202
 msgid "Could not create database."
@@ -281,7 +284,7 @@
 
 #: controllers/database.py:228
 msgid "Could not drop database"
-msgstr ""
+msgstr "Baza de date nu a putut fi ștearsă"
 
 #: controllers/database.py:251
 msgid "Could not create backup."
@@ -300,6 +303,8 @@
 "Your problem has been sent to the quality team\n"
 "We will recontact you after analysing the problem."
 msgstr ""
+"Problema dumneavoastră a fost trimisă echipei responsabile cu calitatea\n"
+"Vă vom contacta după analizarea problemei."
 
 #: controllers/error_page.py:81
 #, python-format
@@ -307,11 +312,14 @@
 "Your problem could not be sent to the quality team\n"
 "Please report this error manually at %s"
 msgstr ""
+"Problema dumneavoastră nu a putut fi trimisă echipei responsabile cu "
+"calitatea\n"
+"Vă rugăm să raportați eroarea manual la %s"
 
 #: controllers/form.py:561
 #, python-format
 msgid "Invalid button type \"%s\""
-msgstr ""
+msgstr "Tipul butonului este invalid \"%s\""
 
 #: controllers/form.py:944 controllers/tree.py:243
 msgid "No record selected"
@@ -329,11 +337,11 @@
 #: controllers/form.py:1016
 #, python-format
 msgid "Wrong on_change trigger: %s"
-msgstr ""
+msgstr "on_change trigger incorect : %s"
 
 #: controllers/form.py:1121
 msgid "Open resource"
-msgstr ""
+msgstr "Deschidere resursă"
 
 #: controllers/form.py:1124
 msgid "Set to default value"
@@ -356,6 +364,8 @@
 "Operation failed\n"
 "I/O error"
 msgstr ""
+"Operațiune eșuată\n"
+"I/O error"
 
 #: controllers/impex.py:402
 msgid "Export Error"
@@ -363,7 +373,7 @@
 
 #: controllers/impex.py:469
 msgid "Database ID"
-msgstr ""
+msgstr "ID-ul bazei de date"
 
 #: controllers/impex.py:476
 msgid "Error opening .CSV file"
@@ -371,17 +381,19 @@
 
 #: controllers/impex.py:476
 msgid "Input Error."
-msgstr ""
+msgstr "Eroare de input."
 
 #: controllers/impex.py:498
 #, python-format
 msgid "You cannot import the field '%s', because we cannot auto-detect it"
 msgstr ""
+"Cîmpul %s' nu poate fi importat deoarece nu a reușit auto-detectarea sa"
 
 #: controllers/impex.py:501
 #, python-format
 msgid "Error processing the first line of the file. Field \"%s\" is unknown"
 msgstr ""
+"Eroare la procesarea primei linii din fișier. Cîmpul \"%s\" este necunoscut"
 
 #: controllers/impex.py:72 controllers/impex.py:501
 msgid "Import Error."
@@ -389,33 +401,33 @@
 
 #: controllers/impex.py:520
 msgid "The CSV delimiter must be a single character"
-msgstr ""
+msgstr "Delimitatorul CSV trebuie să fie un singur caracter"
 
 #: controllers/impex.py:532
 msgid "File Format Error"
-msgstr ""
+msgstr "Eroare cauzată de tipul fișierului"
 
 #: controllers/impex.py:550
 msgid "XML-RPC error"
-msgstr ""
+msgstr "Eroare XML-RPC"
 
 #: controllers/impex.py:555
 #, python-format
 msgid "Imported %d objects"
-msgstr ""
+msgstr "Au fost importate %d obiecte"
 
 #: controllers/impex.py:560
 #, python-format
 msgid "Error trying to import this record:%s. ErrorMessage:%s %s"
-msgstr ""
+msgstr "Eroare la importarea acestei înregistrări : %s. ErrorMessage:%s %s"
 
 #: controllers/impex.py:561
 msgid "ImportationError"
-msgstr ""
+msgstr "ImportationError"
 
 #: controllers/listgrid.py:52
 msgid "Parent record doesn't exists..."
-msgstr ""
+msgstr "Înregistrarea părinte nu există ..."
 
 #: controllers/preferences.py:35
 msgid "Change your password"
@@ -427,19 +439,19 @@
 
 #: controllers/preferences.py:92
 msgid "All passwords have to be filled."
-msgstr ""
+msgstr "Toate parolele trebui completate."
 
 #: controllers/preferences.py:94
 msgid "The new password and its confirmation must be identical."
-msgstr ""
+msgstr "Parola nouă și confirmarea ei trebuie să fie identice."
 
 #: controllers/preferences.py:103
 msgid "Could not change your password."
-msgstr ""
+msgstr "Nu puteți modifica parola."
 
 #: controllers/preferences.py:105
 msgid "Original password incorrect, your password was not changed."
-msgstr ""
+msgstr "Parola veche nu corespunde. Parola nu a fost modificată."
 
 #: controllers/root.py:174
 #, python-format
@@ -448,11 +460,11 @@
 
 #: controllers/translator.py:136
 msgid "You need to save the resource before adding translations."
-msgstr ""
+msgstr "Resursa trebuie să fie salvată înainte de a adăuga traduceri."
 
 #: controllers/tree.py:274
 msgid "No resource selected"
-msgstr ""
+msgstr "Nu este selectată nici o resursă"
 
 #: controllers/utils.py:43
 msgid "Could not connect to server"
@@ -460,7 +472,7 @@
 
 #: controllers/utils.py:127 controllers/templates/login_ajax.mako:111
 msgid "Bad username or password"
-msgstr ""
+msgstr "Utilizatorul sau parola incorecte"
 
 #: controllers/view_log.py:32
 msgid "ID"
@@ -492,7 +504,7 @@
 
 #: controllers/view_log.py:39
 msgid "Access Level"
-msgstr ""
+msgstr "Nivel de acces"
 
 #: controllers/view_log.py:40
 msgid "Internal module data ID"
@@ -500,7 +512,7 @@
 
 #: controllers/viewed.py:221
 msgid "Invalid view id."
-msgstr ""
+msgstr "Id view invalid."
 
 #: controllers/viewed.py:499
 msgid "Unable to create inherited view."
@@ -512,11 +524,11 @@
 
 #: controllers/viewed.py:504
 msgid "Not implemented yet!"
-msgstr ""
+msgstr "Nu este încă implementat !"
 
 #: controllers/viewed.py:609
 msgid "Unable to update the view."
-msgstr ""
+msgstr "View-ul nu a putut fi actualizat."
 
 #: controllers/viewed.py:859
 msgid "New Window"
@@ -548,19 +560,19 @@
 
 #: controllers/templates/about.mako:4
 msgid "About the OpenERP Web"
-msgstr ""
+msgstr "Despre OpenERP Web"
 
 #: controllers/templates/about.mako:27
 msgid "OpenERP Web"
-msgstr ""
+msgstr "OpenERP Web"
 
 #: controllers/templates/about.mako:30
 msgid "Copyright &copy; 2006-TODAY OpenERP SA. All Rights Reserved."
-msgstr ""
+msgstr "Copyright &copy; 2006-TODAY OpenERP SA. All Rights Reserved."
 
 #: controllers/templates/about.mako:31
 msgid "OpenERP is a trademark of the OpenERP SA Company."
-msgstr ""
+msgstr "OpenERP este marcă înregistrată a OpenERP SA Company."
 
 #: controllers/templates/about.mako:33
 #, python-format
@@ -574,7 +586,7 @@
 
 #: controllers/templates/about.mako:42
 msgid "About OpenERP"
-msgstr ""
+msgstr "Despre OpenERP"
 
 #: controllers/templates/about.mako:44
 #, python-format
@@ -606,6 +618,8 @@
 "Depending on your needs, OpenERP is available through a web or application "
 "client."
 msgstr ""
+"În funcție de necesitățile dumneavoastră, OpenERP este disponibil atît sub "
+"formă de client web cît și sub formă de aplicație."
 
 #: controllers/templates/database.mako:54 controllers/templates/login.mako:4
 #: controllers/templates/login.mako:71 controllers/templates/login_ajax.mako:85
@@ -689,7 +703,7 @@
 
 #: controllers/templates/exp.mako:166
 msgid "Export Type:"
-msgstr ""
+msgstr "Tipul exportului :"
 
 #: controllers/templates/exp.mako:169
 msgid "Import Compatible Export"
@@ -697,7 +711,7 @@
 
 #: controllers/templates/exp.mako:172
 msgid "Export all Data"
-msgstr ""
+msgstr "Exportă toate datele"
 
 #: controllers/templates/exp.mako:190
 msgid "Available fields"
@@ -705,7 +719,7 @@
 
 #: controllers/templates/exp.mako:192
 msgid "Fields to export"
-msgstr ""
+msgstr "Cîmpurile de exportat"
 
 #: controllers/templates/exp.mako:194
 msgid "Save fields list"
@@ -722,7 +736,7 @@
 
 #: controllers/templates/exp.mako:202
 msgid "Saved exports:"
-msgstr ""
+msgstr "Exporturi salvate :"
 
 #: controllers/templates/exp.mako:211 controllers/templates/form.mako:136
 #: widgets/form/templates/one2many.mako:23 widgets/templates/sidebar.mako:67
@@ -751,7 +765,7 @@
 
 #: controllers/templates/exp.mako:252
 msgid "Export to File"
-msgstr ""
+msgstr "Export într-un fișier"
 
 #: controllers/templates/fieldpref.mako:4
 #: controllers/templates/fieldpref.mako:29
@@ -772,7 +786,7 @@
 
 #: controllers/templates/fieldpref.mako:57
 msgid "Value applicable for:"
-msgstr ""
+msgstr "Valoarea este aplicabilă pentru :"
 
 #: controllers/templates/fieldpref.mako:63
 msgid "Only for you"
@@ -784,11 +798,11 @@
 
 #: controllers/templates/fieldpref.mako:76
 msgid "Value applicable if:"
-msgstr ""
+msgstr "Valoare alpicabilă dacă :"
 
 #: controllers/templates/fieldpref.mako:79
 msgid "Always applicable!"
-msgstr ""
+msgstr "Aplicabil întotdeauna !"
 
 #: controllers/templates/fieldpref.mako:99 controllers/templates/imp.mako:204
 #: controllers/templates/index.mako:201 controllers/templates/openm2.mako:52
@@ -808,23 +822,23 @@
 #: controllers/templates/footer.mako:3
 #, python-format
 msgid "&copy; 2008-2010 %(ooweb)s  SA. All Rights Reserved "
-msgstr ""
+msgstr "&copy; 2008-2010 %(ooweb)s  SA. All Rights Reserved "
 
 #: controllers/templates/footer.mako:6
 msgid "Significant contributions to the web client have been made by"
-msgstr ""
+msgstr "Contribuții semnificative la clientul web au fost făcute de"
 
 #: controllers/templates/form.mako:64 controllers/templates/tree.mako:33
 msgid "Disable all Tips"
-msgstr ""
+msgstr "Dezactivarea tuturor sugestiilor"
 
 #: controllers/templates/form.mako:65 controllers/templates/tree.mako:34
 msgid "Hide this Tip"
-msgstr ""
+msgstr "Ascunde sugestia"
 
 #: controllers/templates/form.mako:83 controllers/templates/tree.mako:41
 msgid "Add / Remove Shortcut..."
-msgstr ""
+msgstr "Adăugare / Ștergere shortcut ..."
 
 #: controllers/templates/form.mako:87
 #, python-format
@@ -837,7 +851,7 @@
 
 #: controllers/templates/form.mako:100
 msgid "Show Logs..."
-msgstr ""
+msgstr "Afișare log-uri ..."
 
 #: controllers/templates/form.mako:112
 msgid "Create a new resource"
@@ -855,7 +869,7 @@
 
 #: controllers/templates/form.mako:117
 msgid "Edit this resource"
-msgstr ""
+msgstr "Editarea resursei"
 
 #: controllers/templates/form.mako:118 controllers/templates/viewlist.mako:122
 #: widgets/templates/listgrid/listgrid.mako:83
@@ -867,7 +881,7 @@
 
 #: controllers/templates/form.mako:122
 msgid "Save this resource"
-msgstr ""
+msgstr "Salvarea resursei"
 
 #: controllers/templates/form.mako:123 controllers/templates/openm2.mako:48
 #: controllers/templates/save_filter.mako:41
@@ -890,7 +904,7 @@
 
 #: controllers/templates/form.mako:130
 msgid "Duplicate this resource"
-msgstr ""
+msgstr "Duplicarea resursei"
 
 #: controllers/templates/form.mako:131
 msgid "Duplicate"
@@ -906,11 +920,11 @@
 
 #: controllers/templates/form.mako:145
 msgid "Create new node"
-msgstr ""
+msgstr "Crearea unui nod nou"
 
 #: controllers/templates/form.mako:146
 msgid "New Node"
-msgstr ""
+msgstr "Nod Nou"
 
 #: controllers/templates/form.mako:150
 msgid "Show grid in workflow canvas"
@@ -940,7 +954,7 @@
 
 #: controllers/templates/header.mako:62
 msgid "Edit Preferences"
-msgstr ""
+msgstr "Preferințe"
 
 #: controllers/templates/header.mako:66 controllers/templates/header.mako:69
 msgid "About"
@@ -964,7 +978,7 @@
 
 #: controllers/templates/imp.mako:89
 msgid "1. Import a .CSV file"
-msgstr ""
+msgstr "1. Importarea unui fișier .CSV"
 
 #: controllers/templates/imp.mako:105
 msgid "CSV File:"
@@ -972,7 +986,7 @@
 
 #: controllers/templates/imp.mako:123
 msgid "2. Check your file format"
-msgstr ""
+msgstr "2. Verificarea formatului de fișier"
 
 #: controllers/templates/imp.mako:130
 #, python-format
@@ -985,7 +999,7 @@
 
 #: controllers/templates/imp.mako:157
 msgid "CSV Options"
-msgstr ""
+msgstr "Opțiuni CSV"
 
 #: controllers/templates/imp.mako:160
 msgid "Separator:"
@@ -1005,7 +1019,7 @@
 
 #: controllers/templates/imp.mako:187
 msgid "3. File imported"
-msgstr ""
+msgstr "3. Fișierul importat"
 
 #: controllers/templates/imp.mako:205
 msgid "Import File"
@@ -1013,7 +1027,7 @@
 
 #: controllers/templates/index.mako:167
 msgid "System Logs"
-msgstr ""
+msgstr "Log-uri sistem"
 
 #: controllers/templates/index.mako:192
 msgid "More"
@@ -1039,7 +1053,7 @@
 
 #: controllers/templates/login.mako:88
 msgid "Top Contributor:"
-msgstr ""
+msgstr "Contribuitor de top :"
 
 #: controllers/templates/login.mako:98
 msgid ""
@@ -1063,7 +1077,7 @@
 
 #: controllers/templates/login.mako:116
 msgid "Open Source"
-msgstr ""
+msgstr "Open Source"
 
 #: controllers/templates/login.mako:117
 msgid ""
@@ -1082,11 +1096,11 @@
 
 #: controllers/templates/modules.mako:4
 msgid "Module Management"
-msgstr ""
+msgstr "Gestionarea modulelor"
 
 #: controllers/templates/modules.mako:17
 msgid "Web Modules"
-msgstr ""
+msgstr "Module Web"
 
 #: controllers/templates/openo2m.mako:34
 msgid "Save & Close"
@@ -1098,7 +1112,7 @@
 
 #: controllers/templates/save_filter.mako:18
 msgid "Save as Filter"
-msgstr ""
+msgstr "Salvare sub formă de filtru"
 
 #: controllers/templates/save_filter.mako:30
 msgid "Filter Name"
@@ -1142,7 +1156,7 @@
 
 #: controllers/templates/translator.mako:4
 msgid "Add Translations"
-msgstr ""
+msgstr "Adăugare traduceri"
 
 #: controllers/templates/translator.mako:17
 msgid "Add Translation"
@@ -1150,7 +1164,7 @@
 
 #: controllers/templates/translator.mako:27
 msgid "Add Translation for:"
-msgstr ""
+msgstr "Adăugare traduceri pentru :"
 
 #: controllers/templates/translator.mako:31
 msgid "Fields"
@@ -1195,7 +1209,7 @@
 
 #: controllers/templates/viewed_add.mako:6
 msgid "Node Type:"
-msgstr ""
+msgstr "Tipul nodului :"
 
 #: controllers/templates/viewed_add.mako:23
 msgid "New Field"
@@ -1209,20 +1223,20 @@
 #: controllers/templates/viewlist.mako:108
 #, python-format
 msgid "Manage Views (%s)"
-msgstr ""
+msgstr "Gestionare View-uri (%s)"
 
 #: controllers/templates/viewlist.mako:146
 #, python-format
 msgid "Create a view (%s)"
-msgstr ""
+msgstr "Creare view (%s)"
 
 #: controllers/templates/viewlist.mako:174
 msgid "View Name:"
-msgstr ""
+msgstr "Numele view-ului :"
 
 #: controllers/templates/viewlist.mako:178
 msgid "View Type:"
-msgstr ""
+msgstr "Tipul view-ului :"
 
 #: controllers/templates/viewlist.mako:189
 msgid "Priority:"
@@ -1238,11 +1252,11 @@
 
 #: utils/rpc.py:131
 msgid "Access Denied"
-msgstr ""
+msgstr "Acces interzis"
 
 #: utils/rpc.py:238
 msgid "Unsupported protocol."
-msgstr ""
+msgstr "Protocolul nu este suportat."
 
 #: utils/rpc.py:342
 msgid ""
@@ -1252,15 +1266,15 @@
 
 #: utils/rpc.py:355
 msgid "Not logged..."
-msgstr ""
+msgstr "Nu sînteți logat ..."
 
 #: utils/rpc.py:355
 msgid "Authorization Error"
-msgstr ""
+msgstr "Eroare la autorizare"
 
 #: utils/rpc.py:439
 msgid "== Access Denied =="
-msgstr ""
+msgstr "== Acces Interzis =="
 
 #: widgets/_views.py:46
 msgid "Form"
@@ -1272,16 +1286,16 @@
 
 #: widgets/_views.py:78
 msgid "Search view..."
-msgstr ""
+msgstr "Căutare view ..."
 
 #: widgets/listgrid.py:305
 msgid "Wrong on_change trigger"
-msgstr ""
+msgstr "on_change trigger incorect"
 
 #: widgets/listgrid.py:368 widgets/form/_form.py:904
 #, python-format
 msgid "Invalid view, duplicate field: %s"
-msgstr ""
+msgstr "View invalid , cîmp duplicat: %s"
 
 #: widgets/pager.py:56
 #, python-format
@@ -1341,7 +1355,7 @@
 #: widgets/templates/listgrid/listgrid.mako:162
 #: widgets/templates/listgrid/listgroup.mako:20
 msgid "Create new record."
-msgstr ""
+msgstr "Creare înregistrare nouă."
 
 #: widgets/form/_o2m.py:110
 msgid "Save/New"
@@ -1349,7 +1363,7 @@
 
 #: widgets/form/_o2m.py:110
 msgid "Save parent record."
-msgstr ""
+msgstr "Salvarea înregistrării părinte."
 
 #: widgets/form/_o2m.py:229
 #, python-format
@@ -1359,7 +1373,7 @@
 #: widgets/form/_o2m.py:231
 #, python-format
 msgid "- of %d"
-msgstr ""
+msgstr "- din %d"
 
 #: widgets/form/templates/binary.mako:28
 msgid "Save As"
@@ -1367,11 +1381,11 @@
 
 #: widgets/form/templates/binary.mako:31
 msgid "add attachment"
-msgstr ""
+msgstr "adăugare atașament"
 
 #: widgets/form/templates/image.mako:6
 msgid "Replace image"
-msgstr ""
+msgstr "Înlocuire imagine"
 
 #: widgets/form/templates/many2one.mako:2
 #: widgets/form/templates/reference.mako:30
@@ -1381,15 +1395,15 @@
 #: widgets/form/templates/many2one.mako:2
 #: widgets/form/templates/reference.mako:30
 msgid "Open a resource"
-msgstr ""
+msgstr "Deschidere resursă"
 
 #: widgets/form/templates/one2many.mako:21
 msgid "Create new record..."
-msgstr ""
+msgstr "Creare înregistrare nouă ..."
 
 #: widgets/form/templates/one2many.mako:23
 msgid "Delete record..."
-msgstr ""
+msgstr "Ștergere"
 
 #: widgets/form/templates/one2many.mako:29
 msgid "Translate me."
@@ -1397,11 +1411,11 @@
 
 #: widgets/form/templates/one2many.mako:48
 msgid "Previous record..."
-msgstr ""
+msgstr "Înregistrarea precedentă ..."
 
 #: widgets/form/templates/one2many.mako:50
 msgid "Next record..."
-msgstr ""
+msgstr "Înregistrarea următoare ..."
 
 #: widgets/templates/logs.mako:22
 msgid "More..."
@@ -1469,7 +1483,7 @@
 
 #: widgets/templates/sidebar.mako:89
 msgid "Manage Views"
-msgstr ""
+msgstr "Gestionare view-uri"
 
 #: widgets/templates/sidebar.mako:93
 msgid "Edit workflow of the current object"
@@ -1477,7 +1491,7 @@
 
 #: widgets/templates/sidebar.mako:94
 msgid "Edit Workflow"
-msgstr ""
+msgstr "Editare workflow"
 
 #: widgets/templates/sidebar.mako:98
 msgid "Customize current object or create a new object"
@@ -1485,7 +1499,7 @@
 
 #: widgets/templates/sidebar.mako:100
 msgid "Customize Object"
-msgstr ""
+msgstr "Customizare obiect"
 
 #: widgets/templates/sidebar.mako:106
 msgid "Other Options"
@@ -1505,11 +1519,11 @@
 
 #: widgets/templates/sidebar.mako:131
 msgid "View Log"
-msgstr ""
+msgstr "Afișare log"
 
 #: widgets/templates/viewform.mako:25
 msgid "Filter records."
-msgstr ""
+msgstr "Filtrarea înregistrărilor."
 
 #: widgets/templates/viewform.mako:33
 msgid "Clear all."
@@ -1525,11 +1539,11 @@
 
 #: widgets/templates/viewform.mako:45
 msgid "Saved Filters"
-msgstr ""
+msgstr "Filtre salvate."
 
 #: widgets/templates/viewform.mako:52
 msgid "New Filter"
-msgstr ""
+msgstr "Filtru nou"
 
 #: widgets/templates/viewform.mako:53
 msgid "Save Filter"
@@ -1545,9 +1559,9 @@
 
 #: widgets/templates/listgrid/listgrid.mako:152
 msgid "Add records..."
-msgstr ""
+msgstr "Adăugare înregistrări"
 
 #: widgets/templates/listgrid/listgrid.mako:190
 #: widgets/templates/listgrid/listgrid.mako:194
 msgid "Delete record(s)."
-msgstr ""
+msgstr "Ștergere înregistrare (înregistrări)."

=== modified file 'addons/openerp/po/messages/ru.po'
--- addons/openerp/po/messages/ru.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/sk.po'
--- addons/openerp/po/messages/sk.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== added file 'addons/openerp/po/messages/sl.po'
--- addons/openerp/po/messages/sl.po	1970-01-01 00:00:00 +0000
+++ addons/openerp/po/messages/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,1593 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-28 08:38+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: validators.py:75
+msgid "Invalid literal for float"
+msgstr "Neveljavno dobesedno za plavajoče"
+
+#: validators.py:114 validators.py:119 validators.py:262
+msgid "Invalid datetime format"
+msgstr "Napačen format datumčas"
+
+#: validators.py:166
+msgid "Please select a file."
+msgstr "Izberite datoteko."
+
+#: validators.py:247
+msgid "Please enter an email address"
+msgstr "Prosim vnesite e-poštni naslov"
+
+#: validators.py:248
+msgid "An email address must contain a single @"
+msgstr "E-poštni naslov mora vsebovati samo en @"
+
+#: validators.py:249
+#, python-format
+msgid ""
+"The username portion of the email address is invalid (the portion before the "
+"@: %(username)s)"
+msgstr ""
+"Uporabniško ime dela e-poštnega naslova je napačen(del pred @: %(username)s)"
+
+#: validators.py:250
+#, python-format
+msgid ""
+"The domain portion of the email address is invalid (the portion after the @: "
+"%(domain)s)"
+msgstr "Domena dela e-poštnega naslova je napačna (del pred @: %(domain)s)"
+
+#: validators.py:254
+msgid "You must start your URL with http://, https://, etc"
+msgstr "Vaš URL mora začeti z http://, https://, itd"
+
+#: validators.py:255
+msgid "That is not a valid URL"
+msgstr "To ni veljaven URL"
+
+#: validators.py:256
+#, python-format
+msgid "You must provide a full domain name (like %(domain)s.com)"
+msgstr "Navesti morate polno ime domene (podobno kot %(domain)s.com)"
+
+#: validators.py:260
+msgid "Please enter an integer value"
+msgstr "Prosim, vnesite celo število"
+
+#: validators.py:261
+msgid "Please enter a number"
+msgstr "Prosim, vnesite številko"
+
+#: controllers/actions.py:94
+msgid "Invalid View"
+msgstr "Napačen pogled"
+
+#: controllers/actions.py:127
+msgid "Error no report"
+msgstr "Napaka na poročilu"
+
+#: controllers/actions.py:153
+msgid "Nothing to print"
+msgstr "Nič ni za natisniti"
+
+#: controllers/actions.py:173
+msgid "Printing aborted, too long delay"
+msgstr "Tiskanje prekinjeno, predolga zakasnitev"
+
+#: controllers/actions.py:397
+msgid "Relative URLs are not supported"
+msgstr "Relativni URL-ji niso podprti"
+
+#: controllers/actions.py:425
+msgid "Action not found"
+msgstr "Opravila ni mogoče najti"
+
+#: controllers/actions.py:474
+msgid "No action defined"
+msgstr "NI definiranega opravila"
+
+#: controllers/attachment.py:55
+msgid "No record selected, You can only attach to existing record..."
+msgstr "Noben zapis ni izbran. Pripnete lahko samo k obstoječemu zapisu..."
+
+#: controllers/database.py:63
+msgid "Create database"
+msgstr "Ustvari podatkovno bazo"
+
+#: controllers/database.py:65 controllers/templates/database.mako:56
+#: controllers/templates/search.mako:145
+msgid "Create"
+msgstr "Ustvari"
+
+#: controllers/database.py:68
+msgid "Super admin password:"
+msgstr "Geslo super admina:"
+
+#: controllers/database.py:68
+msgid ""
+"This is the password of the user that have the rights to administer "
+"databases. This is not a OpenERP user, just a super administrator. If you "
+"did not changed it, the password is 'admin' after installation."
+msgstr ""
+"To geslo uporabnika ima pravice za administracijo podatkovne baze. To ni "
+"OpenERP uporabni, samo super administrator. Če ga niste spremenili, potem je "
+"geslo ob namestitvi 'admin'."
+
+#: controllers/database.py:69 controllers/database.py:101
+msgid "New database name:"
+msgstr "Ime nove podatkovne baze"
+
+#: controllers/database.py:69
+msgid ""
+"Choose the name of the database that will be created. The name must not "
+"contain any special character. Exemple: 'terp'."
+msgstr ""
+"Izberite ime podatkovne baze, ki bo ustvarjena. Ime ne sme vsebovati nobenih "
+"posebnih znakov. Primer: 'terp'."
+
+#: controllers/database.py:70
+msgid "Load Demonstration data:"
+msgstr "Naloži demonstracijske podatke:"
+
+#: controllers/database.py:70
+msgid ""
+"Check this box if you want demonstration data to be installed on your new "
+"database. These data will help you to understand OpenERP, with predefined "
+"products, partners, etc."
+msgstr ""
+"Označite ta kvadratek, če želite da so nameščeni demonstracijski podatki za "
+"vašo novo podatkovno bazo. Ti podatki vam pomagajo pri razumevanju OpenERP z "
+"predefiniranimi produkti, partnerji, itd."
+
+#: controllers/database.py:71
+msgid "Default Language:"
+msgstr "Privzeti jezik:"
+
+#: controllers/database.py:71
+msgid ""
+"Choose the default language that will be installed for this database. You "
+"will be able to install new languages after installation through the "
+"administration menu."
+msgstr ""
+"Izberite privzeti jezik, ki bo nameščen za to podatkovno bazo. Po namestitvi "
+"boste imeli možnost namestitve novega jezika skozi administratorki meni."
+
+#: controllers/database.py:72
+msgid "Administrator password:"
+msgstr "Geslo administatorja:"
+
+#: controllers/database.py:72
+msgid ""
+"This is the password of the 'admin' user that will be created in your new "
+"database."
+msgstr ""
+"To je geslo za 'admin' uporabnika, ki bo ustvarjen v vaši novi podatkovni "
+"bazi."
+
+#: controllers/database.py:73
+msgid "Confirm password:"
+msgstr "Potrdite geslo"
+
+#: controllers/database.py:73
+msgid ""
+"This is the password of the 'admin' user that will be created in your new "
+"database. It has to be the same than the above field."
+msgstr ""
+"To je geslo je za 'admin' uporabnika, ki bo ustvarjen v vaši novi podatkovni "
+"bazi. Mora biti enak kot v polju zgoraj."
+
+#: controllers/database.py:79
+msgid "Drop database"
+msgstr "Izbriši podatkovno bazo"
+
+#: controllers/database.py:81 controllers/templates/database.mako:58
+msgid "Drop"
+msgstr "Izbriši"
+
+#: controllers/database.py:83 controllers/database.py:91
+#: controllers/templates/login.mako:43
+msgid "Database:"
+msgstr "Podatkovna baza"
+
+#: controllers/database.py:84 controllers/database.py:92
+#: controllers/database.py:100 controllers/templates/login.mako:61
+#: controllers/templates/login_ajax.mako:78
+#: controllers/templates/login_ajax.mako:98
+msgid "Password:"
+msgstr "Geslo:"
+
+#: controllers/database.py:88
+msgid "Backup database"
+msgstr "Varnostna kopija podatkovne baze"
+
+#: controllers/database.py:90 controllers/templates/database.mako:60
+msgid "Backup"
+msgstr "Varnostna kopija"
+
+#: controllers/database.py:96
+msgid "Restore database"
+msgstr "Obnovi podatkovno bazo"
+
+#: controllers/database.py:98 controllers/templates/database.mako:62
+msgid "Restore"
+msgstr "Obnovi"
+
+#: controllers/database.py:99
+msgid "File:"
+msgstr "Datoteka:"
+
+#: controllers/database.py:105
+msgid "Change Administrator Password"
+msgstr "Spremeni geslo administratorja"
+
+#: controllers/database.py:107 controllers/templates/preferences/index.mako:37
+msgid "Change Password"
+msgstr "Spremeni geslo"
+
+#: controllers/database.py:108
+msgid "Old Password:"
+msgstr "Staro geslo:"
+
+#: controllers/database.py:109
+msgid "New Password:"
+msgstr "Novo geslo:"
+
+#: controllers/database.py:110
+msgid "Confirm Password:"
+msgstr "Potrditev gesla:"
+
+#: controllers/database.py:173
+msgid "You must avoid all accents, space or special characters."
+msgstr "Izogibati se morate vsem poudarkom, prostoru ali posebnim znakom."
+
+#: controllers/database.py:174
+msgid "Bad database name"
+msgstr "Napačno ime podatkovne baze"
+
+#: controllers/database.py:194
+msgid ""
+"The server crashed during installation.\n"
+"We suggest you to drop this database."
+msgstr ""
+"Strežnik se je zrušil med namestitvijo.\n"
+"Predlagamo, da izbrišete to podatkovno bazo."
+
+#: controllers/database.py:195
+msgid "Error during database creation"
+msgstr "Napaka med ustvarjanjem podatkovne baze"
+
+#: controllers/database.py:198 controllers/database.py:225
+#: controllers/database.py:271 controllers/database.py:294
+msgid "Bad super admin password"
+msgstr "Napačno geslo super admin-a"
+
+#: controllers/database.py:202
+msgid "Could not create database."
+msgstr "Ne morem ustvariti podatkovne baze!"
+
+#: controllers/database.py:228
+msgid "Could not drop database"
+msgstr "Ni mogoče izbrisati podatkovne baze"
+
+#: controllers/database.py:251
+msgid "Could not create backup."
+msgstr "Ni mogoče ustvariti varnostne kopije"
+
+#: controllers/database.py:275
+msgid "Could not restore database"
+msgstr "Ni mogoče obnoviti podatkovne baze"
+
+#: controllers/database.py:298
+msgid "Error, password not changed."
+msgstr "Napaka, geslo ni bilo spremenjeno."
+
+#: controllers/error_page.py:79
+msgid ""
+"Your problem has been sent to the quality team\n"
+"We will recontact you after analysing the problem."
+msgstr ""
+"Vaš problem je bil poslan ekipi kvalitete\n"
+"Kontaktirali vas bomo po analiziranju problema."
+
+#: controllers/error_page.py:81
+#, python-format
+msgid ""
+"Your problem could not be sent to the quality team\n"
+"Please report this error manually at %s"
+msgstr ""
+"Vaše problema ni bilo mogoče poslati ekipi kvalitete\n"
+"Prosim, sporočite to napako ročno na %s"
+
+#: controllers/form.py:561
+#, python-format
+msgid "Invalid button type \"%s\""
+msgstr "Neveljaven tip gumba \"%s\""
+
+#: controllers/form.py:944 controllers/tree.py:243
+msgid "No record selected"
+msgstr "Noben zapis ni izbran"
+
+#: controllers/form.py:949
+msgid "Print Screen"
+msgstr "Natisni zaslon"
+
+#: controllers/form.py:1016 widgets/listgrid.py:305 widgets/listgrid.py:366
+#: widgets/form/_form.py:910
+msgid "Application Error"
+msgstr "Programska napaka"
+
+#: controllers/form.py:1016
+#, python-format
+msgid "Wrong on_change trigger: %s"
+msgstr "Napačen sprožilec(on_change) spremembe: %s"
+
+#: controllers/form.py:1121
+msgid "Open resource"
+msgstr "Odpri vir"
+
+#: controllers/form.py:1124
+msgid "Set to default value"
+msgstr "Nastavi na privzeto vrednost"
+
+#: controllers/form.py:1125
+msgid "Set as default"
+msgstr "Nastavi kot privzeto"
+
+#: controllers/form.py:1132
+msgid "Action"
+msgstr "Dejanje"
+
+#: controllers/form.py:1133
+msgid "Report"
+msgstr "Poročilo"
+
+#: controllers/impex.py:66
+msgid ""
+"Operation failed\n"
+"I/O error"
+msgstr ""
+"Operacija ni uspela\n"
+"I/O napaka"
+
+#: controllers/impex.py:402
+msgid "Export Error"
+msgstr "Napaka pri izvozu"
+
+#: controllers/impex.py:469
+msgid "Database ID"
+msgstr "ID podatkovne baze"
+
+#: controllers/impex.py:476
+msgid "Error opening .CSV file"
+msgstr "Napaka pri odpiranju .CSV datoteke"
+
+#: controllers/impex.py:476
+msgid "Input Error."
+msgstr "Napaka vnosa."
+
+#: controllers/impex.py:498
+#, python-format
+msgid "You cannot import the field '%s', because we cannot auto-detect it"
+msgstr "Ne morete uvoziti polja '%s', ker ga ne moremo avto-zaznati"
+
+#: controllers/impex.py:501
+#, python-format
+msgid "Error processing the first line of the file. Field \"%s\" is unknown"
+msgstr ""
+"Napaka pri procesiranju prve vrstice datoteke. Polje \"%s\" je neznano"
+
+#: controllers/impex.py:72 controllers/impex.py:501
+msgid "Import Error."
+msgstr "Napaka pri uvozu."
+
+#: controllers/impex.py:520
+msgid "The CSV delimiter must be a single character"
+msgstr "CSV delimiter mora biti en znak"
+
+#: controllers/impex.py:532
+msgid "File Format Error"
+msgstr "Napaka formata datoteke"
+
+#: controllers/impex.py:550
+msgid "XML-RPC error"
+msgstr "XML-RPC napaka"
+
+#: controllers/impex.py:555
+#, python-format
+msgid "Imported %d objects"
+msgstr "Uvoženih %d predmetov"
+
+#: controllers/impex.py:560
+#, python-format
+msgid "Error trying to import this record:%s. ErrorMessage:%s %s"
+msgstr "Napaka pri poizkusu uvoza tega zapisa: %s. SporočiloNapake:%s %s"
+
+#: controllers/impex.py:561
+msgid "ImportationError"
+msgstr "Napaka uvažanja"
+
+#: controllers/listgrid.py:52
+msgid "Parent record doesn't exists..."
+msgstr "Izvorni vir ne obstaja..."
+
+#: controllers/preferences.py:35
+msgid "Change your password"
+msgstr "Spremeni geslo"
+
+#: controllers/preferences.py:65 controllers/templates/header.mako:59
+msgid "Preferences"
+msgstr "Možnosti"
+
+#: controllers/preferences.py:92
+msgid "All passwords have to be filled."
+msgstr "Vsa gesla morajo biti vnešena."
+
+#: controllers/preferences.py:94
+msgid "The new password and its confirmation must be identical."
+msgstr "Novo geslo in njegova potrditev morata biti identična."
+
+#: controllers/preferences.py:103
+msgid "Could not change your password."
+msgstr "Ni mogoče spremeniti vašega gesla."
+
+#: controllers/preferences.py:105
+msgid "Original password incorrect, your password was not changed."
+msgstr "Originalno geslo je napačno, zato vaše geslo ni bilo spremenjeno."
+
+#: controllers/root.py:174
+#, python-format
+msgid "Version %s"
+msgstr "Verzija %s"
+
+#: controllers/translator.py:136
+msgid "You need to save the resource before adding translations."
+msgstr "Najprej morate shraniti vir pred dodajanjem prevodov."
+
+#: controllers/tree.py:274
+msgid "No resource selected"
+msgstr "Noben vir ni izbran"
+
+#: controllers/utils.py:43
+msgid "Could not connect to server"
+msgstr "Povezava s strežnikom ni uspela"
+
+#: controllers/utils.py:127 controllers/templates/login_ajax.mako:111
+msgid "Bad username or password"
+msgstr "Napačno uporabniško ime ali geslo"
+
+#: controllers/view_log.py:32
+msgid "ID"
+msgstr "ID"
+
+#: controllers/view_log.py:33
+msgid "Creation User"
+msgstr "Ustvarjanje uporabnika"
+
+#: controllers/view_log.py:34
+msgid "Creation Date"
+msgstr "Ustvarjeno dne"
+
+#: controllers/view_log.py:35
+msgid "Latest Modification by"
+msgstr "Nazadnje spremenil"
+
+#: controllers/view_log.py:36
+msgid "Latest Modification Date"
+msgstr "Nazadnje spremenjeno"
+
+#: controllers/view_log.py:37
+msgid "Owner"
+msgstr "Lastnik"
+
+#: controllers/view_log.py:38
+msgid "Group Owner"
+msgstr "Lastnik skupine"
+
+#: controllers/view_log.py:39
+msgid "Access Level"
+msgstr "Nivo dostopa"
+
+#: controllers/view_log.py:40
+msgid "Internal module data ID"
+msgstr "Notranji ID modula podatkov"
+
+#: controllers/viewed.py:221
+msgid "Invalid view id."
+msgstr "Napačen ID pogleda"
+
+#: controllers/viewed.py:499
+msgid "Unable to create inherited view."
+msgstr "Ni mogoče ustvariti dednega pogleda."
+
+#: controllers/viewed.py:501
+msgid "Can't create inherited view here."
+msgstr "Tukaj ni mogoče ustvariti dednega pogleda."
+
+#: controllers/viewed.py:504
+msgid "Not implemented yet!"
+msgstr "Še ni implementirano!"
+
+#: controllers/viewed.py:609
+msgid "Unable to update the view."
+msgstr "Ni mogoče posodobiti pogleda."
+
+#: controllers/viewed.py:859
+msgid "New Window"
+msgstr "Novo okno"
+
+#: controllers/viewed.py:871
+msgid "Save Button"
+msgstr "Gumb shrani"
+
+#: controllers/viewed.py:871
+msgid "Cancel Button"
+msgstr "Gumb prekliči"
+
+#: controllers/viewed.py:871
+msgid "Open Button"
+msgstr "Gumb odpri"
+
+#: controllers/viewed.py:877
+msgid "Left"
+msgstr "Levo"
+
+#: controllers/viewed.py:877
+msgid "Center"
+msgstr "Sredinsko"
+
+#: controllers/viewed.py:877
+msgid "Right"
+msgstr "Desno"
+
+#: controllers/templates/about.mako:4
+msgid "About the OpenERP Web"
+msgstr "O OpenERP Web"
+
+#: controllers/templates/about.mako:27
+msgid "OpenERP Web"
+msgstr "OpenERP Web"
+
+#: controllers/templates/about.mako:30
+msgid "Copyright &copy; 2006-TODAY OpenERP SA. All Rights Reserved."
+msgstr ""
+"Avtorske pravice &copy; 2006-DANES OpenERP SA. Vse pravice pridržane."
+
+#: controllers/templates/about.mako:31
+msgid "OpenERP is a trademark of the OpenERP SA Company."
+msgstr "OpenERP je zaščitena znamka podjeta OpenERP SA"
+
+#: controllers/templates/about.mako:33
+#, python-format
+msgid "%(ooweb)s is jointly developed by %(tiny)s and %(axelor)s."
+msgstr "%(ooweb)s je skupaj razvito med %(tiny)s in %(axelor)s."
+
+#: controllers/templates/about.mako:39
+#, python-format
+msgid "Licenced under the terms of %(license)s"
+msgstr "Licencirano pod pogoji %(license)s"
+
+#: controllers/templates/about.mako:42
+msgid "About OpenERP"
+msgstr "O OpenERP"
+
+#: controllers/templates/about.mako:44
+#, python-format
+msgid ""
+"%(openobject)s is a free enterprise-scale software system that is designed "
+"to boost\n"
+"                    productivity and profit through data integration. It "
+"connects, improves and\n"
+"                    manages business processes in areas such as sales, "
+"finance, supply chain,\n"
+"                    project management, production, services, CRM, etc..\n"
+"                    "
+msgstr ""
+"%(openobject)s je svobodno podjetniške  sistemske programske opreme, ki je "
+"namenjena za povečanje\n"
+"                    produktivnost in dobiček s povezovanjem podatkov. "
+"Povezuje, izboljšuje in\n"
+"                    upravlja poslovne procese na področjih, kot so prodaja, "
+"finance, dobavne verige,\n"
+"                    vodenje projektov, proizvodnja, storitve, CRM, itd.\n"
+"                    "
+
+#: controllers/templates/about.mako:51
+msgid ""
+"The system is platform-independent, and can be installed on Windows, Mac OS "
+"X,\n"
+"                    and various Linux and other Unix-based distributions. "
+"Its architecture enables\n"
+"                    new functionality to be rapidly created, modifications "
+"to be made to a\n"
+"                    production system and migration to a new version to be "
+"straightforward."
+msgstr ""
+"Sistem je neodvisen od platforme in se lahko namesti na Windows, Mac OS X,\n"
+"                    in različne Linux in druge Unixu temelječe distribucije. "
+"Njegova arhitektura omogoča\n"
+"                    novo funkcionalnosti, ki se hitro ustvarijo, spremembe, "
+"ki se opravijo na\n"
+"                    produkcijskem  sistem in prehod na novo različico, ki se "
+"enostavno izvede."
+
+#: controllers/templates/about.mako:57
+msgid ""
+"Depending on your needs, OpenERP is available through a web or application "
+"client."
+msgstr ""
+"Glede na vaše potrebe, je OpenERP  na voljo prek spleta ali programskega "
+"klienta."
+
+#: controllers/templates/database.mako:54 controllers/templates/login.mako:4
+#: controllers/templates/login.mako:71 controllers/templates/login_ajax.mako:85
+#: controllers/templates/login_ajax.mako:104
+msgid "Login"
+msgstr "Prijava"
+
+#: controllers/templates/database.mako:64
+msgid "Password"
+msgstr "Geslo"
+
+#: controllers/templates/error_page.mako:82
+#, python-format
+msgid "An %(error_type)s has been reported."
+msgstr "%(error_type)s je bila sporočena."
+
+#: controllers/templates/error_page.mako:84
+msgid "Let me fix it"
+msgstr "Sam bom popravil"
+
+#: controllers/templates/error_page.mako:91
+#: controllers/templates/error_page.mako:93
+msgid "Fix it for me"
+msgstr "Popravite namesto mene"
+
+#: controllers/templates/error_page.mako:99
+msgid "Publisher warranty contract."
+msgstr "Pogodbe založniške garancije"
+
+#: controllers/templates/error_page.mako:100
+msgid ""
+"Your request will be sent to OpenERP and publisher warranty team will reply "
+"you shortly."
+msgstr ""
+"Vaša zahteva bo poslana na OpenERP in ekipa založniške garancije bo v "
+"kratkem odgovorila."
+
+#: controllers/templates/error_page.mako:104
+msgid "Summary of the problem:"
+msgstr "Opis problema"
+
+#: controllers/templates/error_page.mako:111
+msgid "Explain what you did:"
+msgstr "Razložite kaj ste naredili:"
+
+#: controllers/templates/error_page.mako:120
+msgid "Other Comments:"
+msgstr "Ostali komentarji:"
+
+#: controllers/templates/error_page.mako:132
+msgid "Send to Publisher Warranty Team"
+msgstr "Pošlji ekipi garancije založnika"
+
+#: controllers/templates/error_page.mako:159
+msgid "Write concurrency warning :"
+msgstr "Izpiši opozorilo sočasnosti:"
+
+#: controllers/templates/error_page.mako:164
+msgid ""
+"This document has been modified while you were editing it.\n"
+"Choose:\n"
+"\n"
+"    - \"Cancel\" to cancel saving.\n"
+"    - \"Write anyway\" to save your current version."
+msgstr ""
+"Ta dokument je bil spremenjen medtem kot ste ga vi urejali.\n"
+"Izberite:\n"
+"    - \"Primerjaj\" za ogled spremenjene verzije.\n"
+"    - \"Vseeno zapiši\" za shranitev vaše trenutne verzije."
+
+#: controllers/templates/error_page.mako:178 controllers/templates/exp.mako:251
+#: controllers/templates/form.mako:141 controllers/templates/openo2m.mako:41
+#: controllers/templates/selection.mako:43
+#: controllers/templates/viewlist.mako:160
+#: controllers/templates/preferences/index.mako:38
+#: widgets/templates/listgrid/listgrid.mako:41
+msgid "Cancel"
+msgstr "Prekliči"
+
+#: controllers/templates/error_page.mako:179
+msgid "Write Anyway"
+msgstr "Vseeno zapiši"
+
+#: controllers/templates/exp.mako:151
+msgid "Export Data"
+msgstr "Izvozi podatke"
+
+#: controllers/templates/exp.mako:166
+msgid "Export Type:"
+msgstr "Tip izvoza:"
+
+#: controllers/templates/exp.mako:169
+msgid "Import Compatible Export"
+msgstr "Uvozi kompatibilen izvoz"
+
+#: controllers/templates/exp.mako:172
+msgid "Export all Data"
+msgstr "Izvozi vse podatke"
+
+#: controllers/templates/exp.mako:190
+msgid "Available fields"
+msgstr "Razpoložljiva polja"
+
+#: controllers/templates/exp.mako:192
+msgid "Fields to export"
+msgstr "Polja za izvoz"
+
+#: controllers/templates/exp.mako:194
+msgid "Save fields list"
+msgstr "Shrani seznam polj"
+
+#: controllers/templates/exp.mako:196
+msgid "Save as:"
+msgstr "Shrani kot:"
+
+#: controllers/templates/exp.mako:198 controllers/templates/fieldpref.mako:102
+#: controllers/templates/selection.mako:45
+msgid "OK"
+msgstr "V redu"
+
+#: controllers/templates/exp.mako:202
+msgid "Saved exports:"
+msgstr "Shranjeni izvozi:"
+
+#: controllers/templates/exp.mako:211 controllers/templates/form.mako:136
+#: widgets/form/templates/one2many.mako:23 widgets/templates/sidebar.mako:67
+#: widgets/templates/listgrid/listgrid.mako:119
+#: widgets/templates/listgrid/listgrid.mako:123
+#: widgets/templates/listgrid/listgrid.mako:127
+#: widgets/templates/listgrid/listgrid.mako:191
+#: widgets/templates/listgrid/listgrid.mako:196
+#: widgets/templates/listgrid/listgroup.mako:131
+#: widgets/templates/listgrid/multiple_group.mako:81
+msgid "Delete"
+msgstr "Izbriši"
+
+#: controllers/templates/exp.mako:224 widgets/templates/sidebar.mako:56
+#: widgets/templates/listgrid/listgrid.mako:153
+msgid "Add"
+msgstr "Dodaj"
+
+#: controllers/templates/exp.mako:229 controllers/templates/viewlist.mako:125
+msgid "Remove"
+msgstr "Odstrani"
+
+#: controllers/templates/exp.mako:234
+msgid "Remove All"
+msgstr "Odstrani vse"
+
+#: controllers/templates/exp.mako:252
+msgid "Export to File"
+msgstr "Izvozi v datoteko"
+
+#: controllers/templates/fieldpref.mako:4
+#: controllers/templates/fieldpref.mako:29
+msgid "Field Preferences"
+msgstr "Možnosti polja"
+
+#: controllers/templates/fieldpref.mako:39
+msgid "Field Name:"
+msgstr "Ime polja:"
+
+#: controllers/templates/fieldpref.mako:43
+msgid "Domain:"
+msgstr "Domena:"
+
+#: controllers/templates/fieldpref.mako:47
+msgid "Default Value:"
+msgstr "Privzeta vrednost:"
+
+#: controllers/templates/fieldpref.mako:57
+msgid "Value applicable for:"
+msgstr "Uporabna vrednost za:"
+
+#: controllers/templates/fieldpref.mako:63
+msgid "Only for you"
+msgstr "Samo za vas"
+
+#: controllers/templates/fieldpref.mako:67
+msgid "For all"
+msgstr "Za vse"
+
+#: controllers/templates/fieldpref.mako:76
+msgid "Value applicable if:"
+msgstr "Uporabna vrednost če:"
+
+#: controllers/templates/fieldpref.mako:79
+msgid "Always applicable!"
+msgstr "Vedno uporabno!"
+
+#: controllers/templates/fieldpref.mako:99 controllers/templates/imp.mako:204
+#: controllers/templates/index.mako:201 controllers/templates/openm2.mako:52
+#: controllers/templates/save_filter.mako:42
+#: controllers/templates/search.mako:129
+#: controllers/templates/translator.mako:41
+#: controllers/templates/translator.mako:108
+#: controllers/templates/viewed.mako:37
+#: controllers/templates/viewed_new.mako:43
+#: controllers/templates/viewed_new_model.mako:42
+#: controllers/templates/viewed_preview.mako:28
+#: controllers/templates/viewlist.mako:129 widgets/templates/sidebar.mako:67
+#: widgets/templates/viewform.mako:37
+msgid "Close"
+msgstr "Zapri"
+
+#: controllers/templates/footer.mako:3
+#, python-format
+msgid "&copy; 2008-2010 %(ooweb)s  SA. All Rights Reserved "
+msgstr "&copy; 2008-2010 %(ooweb)s SA. Vse pravice pridržane. "
+
+#: controllers/templates/footer.mako:6
+msgid "Significant contributions to the web client have been made by"
+msgstr "Pomemben prispevek k spletnemi odjemalcu so opravili"
+
+#: controllers/templates/form.mako:64 controllers/templates/tree.mako:33
+msgid "Disable all Tips"
+msgstr "Onemogoči vse namige"
+
+#: controllers/templates/form.mako:65 controllers/templates/tree.mako:34
+msgid "Hide this Tip"
+msgstr "Skrij ta namig"
+
+#: controllers/templates/form.mako:83 controllers/templates/tree.mako:41
+msgid "Add / Remove Shortcut..."
+msgstr "Dodaj / Odstrani bližnjico..."
+
+#: controllers/templates/form.mako:87
+#, python-format
+msgid "Search: %s"
+msgstr "Iskanje: %s"
+
+#: controllers/templates/form.mako:94
+msgid "Corporate Intelligence..."
+msgstr "Korporativna inteligenca..."
+
+#: controllers/templates/form.mako:100
+msgid "Show Logs..."
+msgstr "Prikaži dnevnike..."
+
+#: controllers/templates/form.mako:112
+msgid "Create a new resource"
+msgstr "Ustvari nov vir!"
+
+#: controllers/templates/form.mako:113 controllers/templates/search.mako:128
+#: controllers/templates/viewed_new_model.mako:36
+#: controllers/templates/viewlist.mako:119 widgets/form/_o2m.py:97
+#: widgets/form/templates/one2many.mako:21
+#: widgets/templates/listgrid/listgrid.mako:158
+#: widgets/templates/listgrid/listgrid.mako:162
+#: widgets/templates/listgrid/listgroup.mako:20
+msgid "New"
+msgstr "Novo"
+
+#: controllers/templates/form.mako:117
+msgid "Edit this resource"
+msgstr "Uredi ta vir"
+
+#: controllers/templates/form.mako:118 controllers/templates/viewlist.mako:122
+#: widgets/templates/listgrid/listgrid.mako:83
+#: widgets/templates/listgrid/listgrid.mako:93
+#: widgets/templates/listgrid/listgroup.mako:112
+#: widgets/templates/listgrid/multiple_group.mako:63
+msgid "Edit"
+msgstr "Uredi"
+
+#: controllers/templates/form.mako:122
+msgid "Save this resource"
+msgstr "Shrani ta vir"
+
+#: controllers/templates/form.mako:123 controllers/templates/openm2.mako:48
+#: controllers/templates/save_filter.mako:41
+#: controllers/templates/translator.mako:39
+#: controllers/templates/translator.mako:106
+#: controllers/templates/viewed_new.mako:40
+#: controllers/templates/viewed_new_model.mako:39
+#: controllers/templates/viewlist.mako:157
+#: controllers/templates/preferences/index.mako:39
+msgid "Save"
+msgstr "Shrani"
+
+#: controllers/templates/form.mako:125
+msgid "Save & Edit this resource"
+msgstr "Shrani & Uredi ta vir"
+
+#: controllers/templates/form.mako:126
+msgid "Save & Edit"
+msgstr "Shrani % Uredi"
+
+#: controllers/templates/form.mako:130
+msgid "Duplicate this resource"
+msgstr "Podvoji ta vir"
+
+#: controllers/templates/form.mako:131
+msgid "Duplicate"
+msgstr "Podvoji"
+
+#: controllers/templates/form.mako:135
+msgid "Delete this resource"
+msgstr "Izbriši  ta vir"
+
+#: controllers/templates/form.mako:140
+msgid "Cancel editing the current resource"
+msgstr "Prekliči urejanje trenutnega vira"
+
+#: controllers/templates/form.mako:145
+msgid "Create new node"
+msgstr "Ustvari novo vozlišče"
+
+#: controllers/templates/form.mako:146
+msgid "New Node"
+msgstr "Novo vozlišče"
+
+#: controllers/templates/form.mako:150
+msgid "Show grid in workflow canvas"
+msgstr "Prikaži mrežo v prikazu delovnega procesa"
+
+#: controllers/templates/form.mako:151
+msgid "Show grid"
+msgstr "Prikaži mrežo"
+
+#: controllers/templates/header.mako:33
+#, python-format
+msgid "%(company)s"
+msgstr "%(company)s"
+
+#: controllers/templates/header.mako:34 controllers/templates/index.mako:230
+#, python-format
+msgid "%(user)s"
+msgstr "%(user)s"
+
+#: controllers/templates/header.mako:45 controllers/templates/header.mako:47
+msgid "Home"
+msgstr "Domov"
+
+#: controllers/templates/header.mako:53
+msgid "Requests"
+msgstr "Zahteve"
+
+#: controllers/templates/header.mako:62
+msgid "Edit Preferences"
+msgstr "Uredi Nastavitve"
+
+#: controllers/templates/header.mako:66 controllers/templates/header.mako:69
+msgid "About"
+msgstr "O programu"
+
+#: controllers/templates/header.mako:73 controllers/templates/header.mako:75
+msgid "Help"
+msgstr "Pomoč"
+
+#: controllers/templates/header.mako:81 controllers/templates/header.mako:84
+msgid "Clear Cache"
+msgstr "Počisti predpomnilnik"
+
+#: controllers/templates/header.mako:89
+msgid "Logout"
+msgstr "Odjava"
+
+#: controllers/templates/imp.mako:79
+msgid "Import Data"
+msgstr "Uvozi podatke"
+
+#: controllers/templates/imp.mako:89
+msgid "1. Import a .CSV file"
+msgstr "1. Uvozi .CSV datoteko"
+
+#: controllers/templates/imp.mako:105
+msgid "CSV File:"
+msgstr "CSV datoteka:"
+
+#: controllers/templates/imp.mako:123
+msgid "2. Check your file format"
+msgstr "2. Preveri format datoteke"
+
+#: controllers/templates/imp.mako:130
+#, python-format
+msgid "The import failed due to: %(message)s"
+msgstr "Uvoz ni uspet zaradi: %(message)s"
+
+#: controllers/templates/imp.mako:132
+msgid "Here is a preview of the file we could not import:"
+msgstr "Tukaj je predogled datoteke, ki je nismo mogli uvozit"
+
+#: controllers/templates/imp.mako:157
+msgid "CSV Options"
+msgstr "CSV možnosti"
+
+#: controllers/templates/imp.mako:160
+msgid "Separator:"
+msgstr "Ločitelj:"
+
+#: controllers/templates/imp.mako:162
+msgid "Delimiter:"
+msgstr "Razmejitelj:"
+
+#: controllers/templates/imp.mako:166
+msgid "Encoding:"
+msgstr "Nabor znakov:"
+
+#: controllers/templates/imp.mako:173
+msgid "Lines to skip:"
+msgstr "Preskoči naslednje vrstice:"
+
+#: controllers/templates/imp.mako:187
+msgid "3. File imported"
+msgstr "3. Datoteka uvožena"
+
+#: controllers/templates/imp.mako:205
+msgid "Import File"
+msgstr "Uvozi datoteko"
+
+#: controllers/templates/index.mako:167
+msgid "System Logs"
+msgstr "Sistemski dnevniki"
+
+#: controllers/templates/index.mako:192
+msgid "More"
+msgstr "Več"
+
+#: controllers/templates/index.mako:193
+msgid "Widgets"
+msgstr "Gradniki"
+
+#: controllers/templates/index.mako:233 controllers/templates/index.mako:238
+#, python-format
+msgid "Powered by %(openerp)s "
+msgstr "Poganja %(openerp)s "
+
+#: controllers/templates/login.mako:57 controllers/templates/login_ajax.mako:72
+#: controllers/templates/login_ajax.mako:94
+msgid "User:"
+msgstr "Uporabnik:"
+
+#: controllers/templates/login.mako:68
+msgid "Databases"
+msgstr "Podatkovne baze"
+
+#: controllers/templates/login.mako:88
+msgid "Top Contributor:"
+msgstr "Najboljši sodelovec:"
+
+#: controllers/templates/login.mako:98
+msgid ""
+"We think that daily job activities can be more intuitive, efficient, "
+"automated, .. and even fun."
+msgstr ""
+"Menimo, da so lahko dnevne dejavnosti dela bolj intuitivna, učinkovita, "
+"avtomatska, .. in celo zabavna."
+
+#: controllers/templates/login.mako:99
+msgid "OpenERP's vision to be:"
+msgstr "Vizija OpenERP je:"
+
+#: controllers/templates/login.mako:107
+msgid "Full featured"
+msgstr "Oblikovno popoln"
+
+#: controllers/templates/login.mako:108
+msgid ""
+"Today's enterprise challenges are multiple. We provide one module for each "
+"need."
+msgstr ""
+"Današnja podjetja imajo več izzivov. Nudimo en modul za vsako potrebo."
+
+#: controllers/templates/login.mako:116
+msgid "Open Source"
+msgstr "Odprta koda"
+
+#: controllers/templates/login.mako:117
+msgid ""
+"To Build a great product, we rely on the knowledge of thousands of "
+"contributors."
+msgstr ""
+"Za zgraditev odličnega izdeleka, se zanašamo na znanje tisočih sodelavcev."
+
+#: controllers/templates/login.mako:125
+msgid "User Friendly"
+msgstr "Prijazen do uporabnika"
+
+#: controllers/templates/login.mako:126
+msgid ""
+"In order to be productive, people need clean and easy to use interface."
+msgstr ""
+"Da bi bili produktivni, ljudje potrebujejo čist in enostaven za  uporabniški "
+"vmesnik."
+
+#: controllers/templates/modules.mako:4
+msgid "Module Management"
+msgstr "Upravljanje modulov"
+
+#: controllers/templates/modules.mako:17
+msgid "Web Modules"
+msgstr "Spletni moduli"
+
+#: controllers/templates/openo2m.mako:34
+msgid "Save & Close"
+msgstr "Shrani & Zapri"
+
+#: controllers/templates/openo2m.mako:37
+msgid "Save & New"
+msgstr "Shrani & Novo"
+
+#: controllers/templates/save_filter.mako:18
+msgid "Save as Filter"
+msgstr "Shrani kot filter"
+
+#: controllers/templates/save_filter.mako:30
+msgid "Filter Name"
+msgstr "Ime filtra"
+
+#: controllers/templates/search.mako:110
+#, python-format
+msgid "Search %(name)s"
+msgstr "Iskanje %(name)s"
+
+#: controllers/templates/search.mako:125 widgets/form/templates/datetime.mako:8
+msgid "Select"
+msgstr "Izberi"
+
+#: controllers/templates/search.mako:127 widgets/_views.py:77
+#: widgets/form/templates/many2one.mako:22
+#: widgets/form/templates/reference.mako:27 widgets/templates/viewform.mako:26
+msgid "Search"
+msgstr "Iskanje"
+
+#: controllers/templates/search.mako:143
+#, python-format
+msgid "No record found : '%(searched_string)s'."
+msgstr "Ni mogoče najti zapisa: '%(searched_string)s'."
+
+#: controllers/templates/selection.mako:4
+msgid "Select action"
+msgstr "Izberi dejanje"
+
+#: controllers/templates/selection.mako:23
+msgid "Select your action"
+msgstr "Izberi tvoje dejanje"
+
+#: controllers/templates/server_log.mako:4
+msgid "Server Actions..."
+msgstr "Dejanja strežnika..."
+
+#: controllers/templates/server_log.mako:14
+msgid "Server Actions"
+msgstr "Dejanja strežnika"
+
+#: controllers/templates/translator.mako:4
+msgid "Add Translations"
+msgstr "Dodaj prevode"
+
+#: controllers/templates/translator.mako:17
+msgid "Add Translation"
+msgstr "Dodaj prevod"
+
+#: controllers/templates/translator.mako:27
+msgid "Add Translation for:"
+msgstr "Dodaj prevod za:"
+
+#: controllers/templates/translator.mako:31
+msgid "Fields"
+msgstr "Polja"
+
+#: controllers/templates/translator.mako:32
+msgid "Labels"
+msgstr "Oznake"
+
+#: controllers/templates/translator.mako:33
+msgid "Relates"
+msgstr "Soroden"
+
+#: controllers/templates/translator.mako:34
+msgid "View"
+msgstr "Pogled"
+
+#: controllers/templates/translator.mako:53
+msgid "Field"
+msgstr "Polje"
+
+#: controllers/templates/view_log.mako:4 controllers/templates/view_log.mako:12
+msgid "Information"
+msgstr "Informacije"
+
+#: controllers/templates/viewed.mako:17
+#, python-format
+msgid "View Editor %s - %s"
+msgstr "Urejevalnik pogleda %s - %s"
+
+#: controllers/templates/viewed.mako:31
+msgid "Create a new inherited view"
+msgstr "Ustvari nov podedovan pogled"
+
+#: controllers/templates/viewed.mako:31
+msgid "Inherited View"
+msgstr "Podedovan pogled"
+
+#: controllers/templates/viewed.mako:34
+msgid "Preview"
+msgstr "Predogled"
+
+#: controllers/templates/viewed_add.mako:6
+msgid "Node Type:"
+msgstr "Tip vozlišča:"
+
+#: controllers/templates/viewed_add.mako:23
+msgid "New Field"
+msgstr "Novo polje"
+
+#: controllers/templates/viewed_add.mako:27
+msgid "Position:"
+msgstr "Položaj:"
+
+#: controllers/templates/viewlist.mako:4
+#: controllers/templates/viewlist.mako:108
+#, python-format
+msgid "Manage Views (%s)"
+msgstr "Upravljanje pogledov (%s)"
+
+#: controllers/templates/viewlist.mako:146
+#, python-format
+msgid "Create a view (%s)"
+msgstr "Ustvari pogled (%s)"
+
+#: controllers/templates/viewlist.mako:174
+msgid "View Name:"
+msgstr "Ime pogleda:"
+
+#: controllers/templates/viewlist.mako:178
+msgid "View Type:"
+msgstr "Tip pogleda:"
+
+#: controllers/templates/viewlist.mako:189
+msgid "Priority:"
+msgstr "Prioriteta:"
+
+#: utils/common.py:24
+msgid "Error"
+msgstr "Napaka"
+
+#: utils/common.py:27
+msgid "Warning"
+msgstr "Opozorilo"
+
+#: utils/rpc.py:131
+msgid "Access Denied"
+msgstr "Dostop je zavrnjen"
+
+#: utils/rpc.py:238
+msgid "Unsupported protocol."
+msgstr "Protokol ni podprt."
+
+#: utils/rpc.py:342
+msgid ""
+"You select a timezone but OpenERP could not find pytz library!\n"
+"The timezone functionality will be disable."
+msgstr ""
+"Izbrali ste časovni pas, ampak OpenERP ne more najti pytz knjižnice!\n"
+"Funkcionalnosti časovnega pasa bodo onemogočene."
+
+#: utils/rpc.py:355
+msgid "Not logged..."
+msgstr "Niste prijavljeni..."
+
+#: utils/rpc.py:355
+msgid "Authorization Error"
+msgstr "Avtorizacijska napaka"
+
+#: utils/rpc.py:439
+msgid "== Access Denied =="
+msgstr "== Dostop je zavrnjen =="
+
+#: widgets/_views.py:46
+msgid "Form"
+msgstr "Obrazec"
+
+#: widgets/_views.py:47
+msgid "Form view..."
+msgstr "Pogled obrazca..."
+
+#: widgets/_views.py:78
+msgid "Search view..."
+msgstr "Pogled iskanja..."
+
+#: widgets/listgrid.py:305
+msgid "Wrong on_change trigger"
+msgstr "Napačen sprožilec (on_change) spremembe"
+
+#: widgets/listgrid.py:368 widgets/form/_form.py:904
+#, python-format
+msgid "Invalid view, duplicate field: %s"
+msgstr "Neveljaven pogled, podvojeno polje: %s"
+
+#: widgets/pager.py:56
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#: widgets/pager.py:68
+#, python-format
+msgid "%s - %s"
+msgstr "%s - %s"
+
+#: widgets/search.py:280
+msgid "contains"
+msgstr "vsebuje"
+
+#: widgets/search.py:280
+msgid "doesn't contain"
+msgstr "ne vsebuje"
+
+#: widgets/search.py:281
+msgid "is equal to"
+msgstr "je enako kot"
+
+#: widgets/search.py:281
+msgid "is not equal to"
+msgstr "ni enako kot"
+
+#: widgets/search.py:282
+msgid "greater than"
+msgstr "večje kot"
+
+#: widgets/search.py:282
+msgid "less than"
+msgstr "manjše kot"
+
+#: widgets/search.py:283
+msgid "in"
+msgstr "v"
+
+#: widgets/search.py:283
+msgid "not in"
+msgstr "ni v"
+
+#: widgets/search.py:392
+msgid "Yes"
+msgstr "Da"
+
+#: widgets/search.py:392
+msgid "No"
+msgstr "Ne"
+
+#: widgets/form/_action.py:48
+msgid "Action not found!"
+msgstr "Dejanja ni mogoče najti!"
+
+#: widgets/form/_o2m.py:97 widgets/templates/listgrid/listgrid.mako:156
+#: widgets/templates/listgrid/listgrid.mako:162
+#: widgets/templates/listgrid/listgroup.mako:20
+msgid "Create new record."
+msgstr "Ustvari nov zapis."
+
+#: widgets/form/_o2m.py:110
+msgid "Save/New"
+msgstr "Shrani/Novo"
+
+#: widgets/form/_o2m.py:110
+msgid "Save parent record."
+msgstr "Shrani matični z apis."
+
+#: widgets/form/_o2m.py:229
+#, python-format
+msgid "%d of %d"
+msgstr "%d od %d"
+
+#: widgets/form/_o2m.py:231
+#, python-format
+msgid "- of %d"
+msgstr "- od %d"
+
+#: widgets/form/templates/binary.mako:28
+msgid "Save As"
+msgstr "Shrani kot"
+
+#: widgets/form/templates/binary.mako:31
+msgid "add attachment"
+msgstr "dodaj priponko"
+
+#: widgets/form/templates/image.mako:6
+msgid "Replace image"
+msgstr "Zamenjaj sliko"
+
+#: widgets/form/templates/many2one.mako:2
+#: widgets/form/templates/reference.mako:30
+msgid "Open"
+msgstr "Odpri"
+
+#: widgets/form/templates/many2one.mako:2
+#: widgets/form/templates/reference.mako:30
+msgid "Open a resource"
+msgstr "Odpri vir"
+
+#: widgets/form/templates/one2many.mako:21
+msgid "Create new record..."
+msgstr "Ustvari nov zapis..."
+
+#: widgets/form/templates/one2many.mako:23
+msgid "Delete record..."
+msgstr "Izbriši zapis..."
+
+#: widgets/form/templates/one2many.mako:29
+msgid "Translate me."
+msgstr "Prevedi me."
+
+#: widgets/form/templates/one2many.mako:48
+msgid "Previous record..."
+msgstr "Prejšnji zapis.."
+
+#: widgets/form/templates/one2many.mako:50
+msgid "Next record..."
+msgstr "Naslednji zapis..."
+
+#: widgets/templates/logs.mako:22
+msgid "More..."
+msgstr "Več ..."
+
+#: widgets/templates/logs.mako:35
+msgid "Less..."
+msgstr "Manj.."
+
+#: widgets/templates/pager.mako:9
+msgid "<< First"
+msgstr "<<Prvi"
+
+#: widgets/templates/pager.mako:14
+msgid "< Previous"
+msgstr "< Prejšnji"
+
+#: widgets/templates/pager.mako:19
+msgid "of"
+msgstr "od"
+
+#: widgets/templates/pager.mako:24
+msgid "Next >"
+msgstr "Naslednji >"
+
+#: widgets/templates/pager.mako:29
+msgid "Last >>"
+msgstr "Zadnji>>"
+
+#: widgets/templates/pager.mako:37
+msgid "Change Limit:"
+msgstr "Spremeni  limit:"
+
+#: widgets/templates/sidebar.mako:37
+msgid "Reports"
+msgstr "Poročila"
+
+#: widgets/templates/sidebar.mako:41 widgets/templates/viewform.mako:51
+msgid "Actions"
+msgstr "Dejanja"
+
+#: widgets/templates/sidebar.mako:45
+msgid "Links"
+msgstr "Povezave"
+
+#: widgets/templates/sidebar.mako:49
+msgid "Submenu"
+msgstr "Podmeni"
+
+#: widgets/templates/sidebar.mako:54
+msgid "Attachments"
+msgstr "Priloge"
+
+#: widgets/templates/sidebar.mako:74
+msgid "File"
+msgstr "Datoteka"
+
+#: widgets/templates/sidebar.mako:83
+msgid "Customize"
+msgstr "Prilagodi"
+
+#: widgets/templates/sidebar.mako:87
+msgid "Manage views of the current object"
+msgstr "Urejanje pogleda trenutnega predmeta"
+
+#: widgets/templates/sidebar.mako:89
+msgid "Manage Views"
+msgstr "Urejanje pogledov"
+
+#: widgets/templates/sidebar.mako:93
+msgid "Edit workflow of the current object"
+msgstr "Uredi delovni proces za trenuten predmet"
+
+#: widgets/templates/sidebar.mako:94
+msgid "Edit Workflow"
+msgstr "Uredi delovni proces"
+
+#: widgets/templates/sidebar.mako:98
+msgid "Customize current object or create a new object"
+msgstr "Prilagodi trenuten predmet ali ustavi nov predmet"
+
+#: widgets/templates/sidebar.mako:100
+msgid "Customize Object"
+msgstr "Prilagodi predmet"
+
+#: widgets/templates/sidebar.mako:106
+msgid "Other Options"
+msgstr "Druge možnosti"
+
+#: widgets/templates/sidebar.mako:111 widgets/templates/sidebar.mako:119
+msgid "Import"
+msgstr "Uvozi"
+
+#: widgets/templates/sidebar.mako:114 widgets/templates/sidebar.mako:122
+msgid "Export"
+msgstr "Izvozi"
+
+#: widgets/templates/sidebar.mako:126
+msgid "Translate"
+msgstr "Prevedi"
+
+#: widgets/templates/sidebar.mako:131
+msgid "View Log"
+msgstr "Pokaži dnevnik"
+
+#: widgets/templates/viewform.mako:25
+msgid "Filter records."
+msgstr "Filtriraj zapise."
+
+#: widgets/templates/viewform.mako:33
+msgid "Clear all."
+msgstr "Počisti vse."
+
+#: widgets/templates/viewform.mako:35
+msgid "Clear"
+msgstr "Počisti"
+
+#: widgets/templates/viewform.mako:43
+msgid "Filters"
+msgstr "Filtri"
+
+#: widgets/templates/viewform.mako:45
+msgid "Saved Filters"
+msgstr "Shranjeni filtri"
+
+#: widgets/templates/viewform.mako:52
+msgid "New Filter"
+msgstr "Nov filter"
+
+#: widgets/templates/viewform.mako:53
+msgid "Save Filter"
+msgstr "Shrani filter"
+
+#: widgets/templates/viewform.mako:54
+msgid "Manage Filters"
+msgstr "Upravljanje filtrov"
+
+#: widgets/templates/listgrid/listgrid.mako:23
+msgid "Update"
+msgstr "Posodobi"
+
+#: widgets/templates/listgrid/listgrid.mako:152
+msgid "Add records..."
+msgstr "Dodajanje zapisov..."
+
+#: widgets/templates/listgrid/listgrid.mako:190
+#: widgets/templates/listgrid/listgrid.mako:194
+msgid "Delete record(s)."
+msgstr "Izbriši zapise."

=== modified file 'addons/openerp/po/messages/sr.po'
--- addons/openerp/po/messages/sr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/sr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/sr@xxxxxxxx'
--- addons/openerp/po/messages/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/sv.po'
--- addons/openerp/po/messages/sv.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/sv.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/po/messages/th.po'
--- addons/openerp/po/messages/th.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/th.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/tr.po'
--- addons/openerp/po/messages/tr.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/tr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/uk.po'
--- addons/openerp/po/messages/uk.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/vi.po'
--- addons/openerp/po/messages/vi.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/vi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: validators.py:75
 msgid "Invalid literal for float"

=== modified file 'addons/openerp/po/messages/zh_CN.po'
--- addons/openerp/po/messages/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/openerp/po/messages/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:13+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:11+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: validators.py:75

=== modified file 'addons/openerp/static/javascript/binary.js'
--- addons/openerp/static/javascript/binary.js	2011-01-17 11:57:11 +0000
+++ addons/openerp/static/javascript/binary.js	2011-11-08 15:41:11 +0000
@@ -22,14 +22,14 @@
 function save_binary_data(src, filename) {
 
     var name = openobject.dom.get(src) ? openobject.dom.get(src).name : src;
-
+	
     var prefix = name.split('/');
     name = prefix.pop();
     prefix = prefix.join('/');
     prefix = prefix ? prefix + '/' : '';
-
+    
     var fname = openobject.dom.get(prefix + filename) || openobject.dom.get(prefix + 'name');
-
+	
     fname = fname ? fname.value || fname.innerHTML : null;
 
     var act = get_form_action('save_binary_data', undefined);

=== modified file 'addons/openerp/static/javascript/form.js'
--- addons/openerp/static/javascript/form.js	2011-08-03 11:02:15 +0000
+++ addons/openerp/static/javascript/form.js	2011-11-08 15:41:11 +0000
@@ -500,6 +500,7 @@
 
     openobject.http.postJSON(post_url, jQuery.extend({}, form_data, {
         _terp_callback: callback,
+        _terp_change_default: change_default,
         _terp_caller: $caller.attr('id').slice(id_slice_offset),
         _terp_value: $caller.val(),
         _terp_model: select('_terp_model').val(),

=== modified file 'addons/openerp/static/javascript/form_state.js'
--- addons/openerp/static/javascript/form_state.js	2011-05-09 13:41:12 +0000
+++ addons/openerp/static/javascript/form_state.js	2011-11-08 15:41:11 +0000
@@ -81,19 +81,19 @@
 
     var attr = states[value];
     if (has_readonly) {
-    	if (attr) {
-        	form_setReadonly(container, widget, attr['readonly']);
-    	}
-    	else {
-        	form_setReadonly(container, widget, parseInt($field.attr('fld_readonly')));
-    	}
+        if (attr) {
+            form_setReadonly(container, widget, attr['readonly']);
+        }
+        else {
+            form_setReadonly(container, widget, parseInt($field.attr('fld_readonly')));
+        }
     }
     if (has_required) {
-    	if (attr) {
-        	form_setRequired(container, widget, attr['required']);
-    	}
+        if (attr) {
+            form_setRequired(container, widget, attr['required']);
+        }
         else {
-        	form_setRequired(container, widget, parseInt($field.attr('required')));
+            form_setRequired(container, widget, parseInt($field.attr('fld_required')));
         }
     }
 }
@@ -174,6 +174,18 @@
     }
 }
 
+function matchArray(val,eval_value){
+    if (val.length != eval_value.length) { return false; }
+    var val = val.sort(),
+    eval_value = eval_value.sort();
+    for (var i = 0; val[i]; i++) {
+        if (val[i] !== eval_value[i]) { 
+            return false;
+        }
+    }
+    return true;
+}
+
 function form_evalExpr(prefix, expr, ref_elem) {
 
     var stack = [];
@@ -202,7 +214,22 @@
 
         var elem_value;
         if(elem.is(':input')) {
-            elem_value = elem.val();
+            elem_kind = elem.attr('kind')
+            if(elem_kind == 'float' || elem_kind == 'integer') {
+                elem_value = eval(elem.val());
+            } else {
+                elem_value = elem.val();
+            }
+        } else if(elem[0].nodeName == "TABLE"){
+            prefix = $(elem).attr('id')
+            elem_value = eval($(idSelector(prefix+"/_terp_ids")).val())
+            res = matchArray(eval(val), elem_value)
+            if(res){
+                val = elem_value = true
+            }else{
+                val = true
+                elem_value = false
+            }
         } else {
             elem_value = elem.attr('value') || elem.text();
         }
@@ -280,6 +307,12 @@
                 .attr({'disabled': readonly, 'readOnly': readonly});
         return;
     }
+    
+    if (type == 'hidden' && kind == 'many2one') {
+        ManyToOne(field_id).setReadonly(readonly);
+        $field = jQuery(idSelector(fieldName+'_text'));
+    }
+    
     $field.attr({'disabled':readonly, 'readOnly': readonly});
 
     if (readonly) {
@@ -296,10 +329,6 @@
         $field.css('color', '');
     }
 
-    if (type == 'hidden' && kind == 'many2one') {
-        ManyToOne(field_id).setReadonly(readonly);
-    }
-
     if (!kind && (jQuery(idSelector(field_id+'_btn_')).length || jQuery(idSelector('_o2m'+field_id)).length)) { // one2many
         new One2Many(field_id).setReadonly(readonly);
         return;
@@ -318,11 +347,16 @@
     var editable = getElement('_terp_editable').value;
 
     var $field = jQuery(idSelector(field));
+    
+    if (required == undefined){
+        required =  $field.attr("fld_required") == "1" ? true : false; 
+    }
+    
     if (editable == 'True' && required) {
         $field.toggleClass('requiredfield', required);
     }
     else {
-    	$field.removeClass('requiredfield');
+        $field.removeClass('requiredfield');
     }
     if(required) {
         $field.removeClass('readonlyfield');
@@ -330,9 +364,11 @@
     $field.removeClass('errorfield');
 
     var kind = $field.attr('kind');
-    
-    if (field.type == 'hidden' && kind == 'many2one') {
-        form_setRequired(container, openobject.dom.get(field.name + '_text'), required);
+    var type = $field.attr('type');
+    var name = $field.attr('name');
+
+    if (type == 'hidden' && kind == 'many2one') {
+        form_setRequired(container, name + '_text' , required);
     }
 }
 

=== modified file 'addons/openerp/static/javascript/o2m.js'
--- addons/openerp/static/javascript/o2m.js	2011-05-10 14:33:47 +0000
+++ addons/openerp/static/javascript/o2m.js	2011-11-08 15:41:11 +0000
@@ -41,7 +41,8 @@
     this.parent_view_id = openobject.dom.get(parent_prefix + '_terp_view_id').value;
     this.parent_view_ids = jQuery(idSelector(parent_prefix + '_terp_view_ids')).val();
     this.parent_view_mode = jQuery(idSelector(parent_prefix + '_terp_view_mode')).val();
-
+    this.parent_view_type = openobject.dom.get(parent_prefix + '_terp_view_type').value;
+    this.m2o = jQuery('#_terp_m2o').length ? "True" : "False";
     // hide new button when editors are visible
     if (this.mode == 'tree' && this.inline) {
         var self = this;
@@ -51,6 +52,18 @@
         });
     }
 
+    this.params_parent = false
+    if (this.m2o == "False"){
+        this.params_parent = {
+            '_terp_view_params/_terp_model': openobject.dom.get('_terp_model').value,
+            '_terp_view_params/_terp_id': openobject.dom.get('_terp_id').value,
+            '_terp_view_params/_terp_view_id':openobject.dom.get('_terp_view_id').value,
+            '_terp_view_params/_terp_view_ids': openobject.dom.get('_terp_view_ids').value,
+            '_terp_view_params/_terp_view_mode': openobject.dom.get('_terp_view_mode').value,
+            '_terp_view_params/_terp_context': openobject.dom.get('_terp_context').value || {},
+            '_terp_view_params/_terp_view_type': 'form'
+        };
+    }
     var $this = jQuery(idSelector('_o2m_' + name));
     var $list = jQuery(idSelector(name));
     $list.attr({
@@ -136,6 +149,15 @@
             '_terp_view_params/_terp_view_type': 'form'
         };
 
+        var o2m_name;
+        if (this.params_parent) {
+            params = this.params_parent;
+        }
+        else {
+            o2m_name = this.name.split('/');
+            o2m_name = o2m_name[o2m_name.length-1];
+        }
+
         while (names.length) {
             parents.push(names.shift());
             var prefix = parents.join('/');
@@ -153,9 +175,11 @@
             _terp_parent_model: this.parent_model,
             _terp_parent_id: this.parent_id,
             _terp_parent_view_id: this.parent_view_id,
-            _terp_o2m: this.name,
+            _terp_o2m: o2m_name ? o2m_name : this.name,
             _terp_o2m_model: this.model,
-            _terp_editable: readonly ? 0 : 1
+            _terp_parent_view_type: this.parent_view_type,
+            _terp_editable: readonly ? 0 : 1,
+            _terp_m2o: this.m2o
         });
 
         if(id != null) {

=== modified file 'addons/openerp/static/javascript/search.js'
--- addons/openerp/static/javascript/search.js	2011-06-08 05:35:56 +0000
+++ addons/openerp/static/javascript/search.js	2011-11-08 15:41:11 +0000
@@ -566,6 +566,11 @@
             else {
             	fld_value = parseInt(jQuery(idSelector(fld_name)).val()) || fld_value;
             }
+            fld_context = jQuery(idSelector(fld_name)).attr('context');
+            if (fld_context) {
+                search_context['context'] = fld_context;
+                search_context['value'] = fld_value;
+            }
         }
         
         if(kind == 'boolean' && fld_value) {

=== modified file 'addons/openerp/utils/rpc.py'
--- addons/openerp/utils/rpc.py	2011-02-08 18:57:20 +0000
+++ addons/openerp/utils/rpc.py	2011-11-08 15:41:11 +0000
@@ -28,6 +28,7 @@
 
 from tiny_socket import TinySocket
 from tiny_socket import TinySocketError
+from openobject.i18n import format
 
 class NotLoggedIn(openobject.errors.TinyError, openobject.errors.AuthenticationError): pass
 
@@ -349,6 +350,8 @@
         if lang_ids:
             self.storage['lang'] = self.execute(
                     'object', 'execute', 'res.lang', 'read', lang_ids[0], [])
+            lang_data = self.storage['lang']
+            format.set_locale_cache(lang_data)
 
     def execute(self, obj, method, *args):
         if not self.is_logged():

=== modified file 'addons/openerp/widgets/form/_binary.py'
--- addons/openerp/widgets/form/_binary.py	2011-05-03 12:53:07 +0000
+++ addons/openerp/widgets/form/_binary.py	2011-11-08 15:41:11 +0000
@@ -20,6 +20,7 @@
 ###############################################################################
 
 import random, time
+import binascii
 
 from openobject import tools
 from openerp import utils
@@ -40,10 +41,11 @@
 
 class Binary(TinyInputWidget):
     template = "/openerp/widgets/form/templates/binary.mako"
-    params = ["name", "text", "readonly", "filename", "bin_data", 'value_bin_size']
+    params = ["name", "text", "readonly", "filename", "bin_data", 'value_bin_size', 'val']
 
     text = None
     file_upload = True
+    val = True
 
     def __init__(self, **attrs):
         super(Binary, self).__init__(**attrs)
@@ -56,6 +58,10 @@
 
     def set_value(self, value):
         #XXX: server bug work-arround
+        try:
+            binascii.a2b_base64(value)
+        except:
+            self.val = False
         if self.value_bin_size:
             self.text = value
             return

=== modified file 'addons/openerp/widgets/form/_form.py'
--- addons/openerp/widgets/form/_form.py	2011-07-18 09:36:24 +0000
+++ addons/openerp/widgets/form/_form.py	2011-11-08 15:41:11 +0000
@@ -632,6 +632,9 @@
         # remove mnemonic
         self.string = re.sub('_(?!_)', '', self.string or '')
 
+        if (getattr(cherrypy.request, 'terp_params', {}) and 
+            cherrypy.request.terp_params.o2m and not cherrypy.request.terp_params.o2m_id):
+            self.readonly = True
         self.btype = attrs.get('special', attrs.get('type', 'workflow'))
         self.context = attrs.get("context", {})
         self.nolabel = True

=== modified file 'addons/openerp/widgets/form/templates/binary.mako'
--- addons/openerp/widgets/form/templates/binary.mako	2011-06-29 05:19:57 +0000
+++ addons/openerp/widgets/form/templates/binary.mako	2011-11-08 15:41:11 +0000
@@ -21,8 +21,8 @@
     </div>
     <div id="${name}_binary_buttons" class="binary_buttons">
         <input type="text" value="${value or text or ''}" readonly="readonly"/>
-        %if value:
-        	<input type="hidden" name="${name}" value="${value}"></input>
+        %if val:
+        	<input type="hidden" name="${name}" value="${text or ''}"></input>
        	% endif
         % if text:
         <a class="button-a" href="javascript: void(0)" onclick="save_binary_data('${name}', '${filename}')">${_("Save As")}</a>

=== modified file 'addons/openerp/widgets/form/templates/button.mako'
--- addons/openerp/widgets/form/templates/button.mako	2010-12-15 09:37:18 +0000
+++ addons/openerp/widgets/form/templates/button.mako	2011-11-08 15:41:11 +0000
@@ -3,9 +3,9 @@
         name="${name}"
         type="button"
         href="javascript: void(0)"
-        onclick="buttonClicked('${name}', '${btype}', '${model}', '${id}', '${confirm}', '${target}', getNodeAttribute(this, 'context'));"
+        onclick="buttonClicked('${name}', '${btype}', '${model}', '${id}', getNodeAttribute(this, 'confirm'), '${target}', getNodeAttribute(this, 'context'));"
         style="height: 20px;"
-        ${py.attrs(attrs, context=ctx)}>
+        ${py.attrs(attrs, confirm=confirm, context=ctx)}>
     % if string:
         % if icon:
             <img src="${icon}" width="16" height="16" alt="">&nbsp;<span>${string}</span>

=== modified file 'addons/openerp/widgets/form/templates/char.mako'
--- addons/openerp/widgets/form/templates/char.mako	2011-03-25 05:31:27 +0000
+++ addons/openerp/widgets/form/templates/char.mako	2011-11-08 15:41:11 +0000
@@ -2,7 +2,7 @@
     <span class="char">
         <input type="${password and 'password' or 'text'}" size="1"
             id="${name}" name="${name}" class="${css_class}"
-            ${py.attrs(attrs, kind=kind, maxlength=size, value=value, required=required and 1 or 0, fld_readonly=readonly and 1 or 0)}/>
+            ${py.attrs(attrs, kind=kind, maxlength=size, value=value, fld_required=required and 1 or 0, fld_readonly=readonly and 1 or 0)}/>
         % if translatable:
             <img src="/openerp/static/images/stock/stock_translate.png" class="translatable" />
             <script type="text/javascript">

=== modified file 'addons/openerp/widgets/form/templates/float.mako'
--- addons/openerp/widgets/form/templates/float.mako	2010-12-01 10:06:02 +0000
+++ addons/openerp/widgets/form/templates/float.mako	2011-11-08 15:41:11 +0000
@@ -6,7 +6,7 @@
         id ='${name}' 
         value="${value}" 
         size="1"
-        class="${css_class}" ${py.attrs(attrs)}/>
+        class="${css_class}" ${py.attrs(attrs, fld_required=required and 1 or 0, fld_readonly=readonly and 1 or 0)}/>
 % endif
 
 % if editable and error:

=== modified file 'addons/openerp/widgets/form/templates/many2one.mako'
--- addons/openerp/widgets/form/templates/many2one.mako	2011-03-25 05:31:27 +0000
+++ addons/openerp/widgets/form/templates/many2one.mako	2011-11-08 15:41:11 +0000
@@ -11,7 +11,7 @@
     <%self:m2o_container>
         <span class="m2o">
             <input type="hidden" id="${name}" name="${name}" class="${css_class}" value="${value}"
-                ${py.attrs(attrs, kind=kind, domain=domain, context=ctx, relation=relation, required=required and 1 or 0, fld_readonly=readonly and 1 or 0)}/>
+                ${py.attrs(attrs, kind=kind, domain=domain, context=ctx, relation=relation, fld_required=required and 1 or 0, fld_readonly=readonly and 1 or 0)}/>
             <input type="text" id="${name}_text" class="${css_class}" size="1"
                 ${py.attrs(attrs, kind=kind, relation=relation, value=text)}/>
 

=== modified file 'addons/openerp/widgets/listgrid.py'
--- addons/openerp/widgets/listgrid.py	2011-03-29 15:51:28 +0000
+++ addons/openerp/widgets/listgrid.py	2011-11-08 15:41:11 +0000
@@ -142,7 +142,6 @@
                 self.colors[colour] = test
 
         proxy = rpc.RPCProxy(model)
-        
         default_data = kw.get('default_data', [])
         search_text = terp_params.get('_terp_search_text', False)
         if not self.source:
@@ -651,6 +650,7 @@
         self.validator = self.widget.validator
         self.relation = attrs.get('relation') or None
         self.editable = self.readonly
+        self.color = None
         if 'field_id' not in attrs:
             self.field_id = self.name
 

=== modified file 'addons/openerp/widgets/listgroup.py'
--- addons/openerp/widgets/listgroup.py	2011-07-04 06:50:24 +0000
+++ addons/openerp/widgets/listgroup.py	2011-11-08 15:41:11 +0000
@@ -20,7 +20,7 @@
 ###############################################################################
 import random
 from operator import itemgetter
-
+import copy
 import cherrypy
 
 from openerp.utils import rpc
@@ -128,7 +128,7 @@
     def __init__(self, name, model, view, ids=[], domain=[], context={}, **kw):
 
         self.context = context or {}
-        self.domain = domain or []
+        self.domain = copy.deepcopy(domain) or []
         self.group_by_no_leaf = self.context.get('group_by_no_leaf', 0)
         self.selectable = kw.get('selectable', 0)
         self.editable = kw.get('editable', False)

=== modified file 'addons/openerp/widgets/templates/listgrid/listgrid.mako'
--- addons/openerp/widgets/templates/listgrid/listgrid.mako	2011-02-03 12:29:01 +0000
+++ addons/openerp/widgets/templates/listgrid/listgrid.mako	2011-11-08 15:41:11 +0000
@@ -321,6 +321,8 @@
                                             $ui.item.attr('record'),
                                             $ui.item.prevAll().length);
                                     }
+                                }).bind('mousedown.ui-disableSelection selectstart.ui-disableSelection', function(event) {
+                                    event.stopImmediatePropagation();
                                 }).disableSelection();
                             }
                         </script>

=== modified file 'addons/openerp/widgets/templates/listgrid/listgroup.mako'
--- addons/openerp/widgets/templates/listgrid/listgroup.mako	2011-03-03 10:48:53 +0000
+++ addons/openerp/widgets/templates/listgrid/listgroup.mako	2011-11-08 15:41:11 +0000
@@ -115,6 +115,7 @@
                         % for i, (field, field_attrs) in enumerate(headers):
                             % if field != 'button':
                                 <td class="grid-cell ${field_attrs.get('type', 'char')}"
+                                    style="${(ch.get(field).color or None) and 'color: ' + ch.get(field).color};"
                                     sortable_value="${ch.get(field).get_sortable_text()}">
                                     <span>${ch[field].display()}</span>
                                 </td>

=== modified file 'addons/openerp/widgets/templates/listgrid/multiple_group.mako'
--- addons/openerp/widgets/templates/listgrid/multiple_group.mako	2011-03-03 10:48:53 +0000
+++ addons/openerp/widgets/templates/listgrid/multiple_group.mako	2011-11-08 15:41:11 +0000
@@ -66,6 +66,7 @@
             % for i, (field, field_attrs) in enumerate(headers):
                 % if field != 'button':
                     <td class="grid-cell ${field_attrs.get('type', 'char')}"
+                        style="${(ch.get(field).color or None) and 'color: ' + ch.get(field).color};"
                         sortable_value="${ch.get(field).get_sortable_text()}">
                         <span>${ch[field].display()}</span>
                     </td>

=== modified file 'addons/view_calendar/po/javascript/ar.po'
--- addons/view_calendar/po/javascript/ar.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/ar.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/bg.po'
--- addons/view_calendar/po/javascript/bg.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/ca.po'
--- addons/view_calendar/po/javascript/ca.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/da.po'
--- addons/view_calendar/po/javascript/da.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/de.po'
--- addons/view_calendar/po/javascript/de.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/de.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== modified file 'addons/view_calendar/po/javascript/en_AU.po'
--- addons/view_calendar/po/javascript/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/en_CA.po'
--- addons/view_calendar/po/javascript/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/en_GB.po'
--- addons/view_calendar/po/javascript/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/es.po'
--- addons/view_calendar/po/javascript/es.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/es.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/eu.po'
--- addons/view_calendar/po/javascript/eu.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/eu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:29+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Basque <eu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/fa.po'
--- addons/view_calendar/po/javascript/fa.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/fa.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/fi.po'
--- addons/view_calendar/po/javascript/fi.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/fr.po'
--- addons/view_calendar/po/javascript/fr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/fr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:29+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: fr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== modified file 'addons/view_calendar/po/javascript/gl.po'
--- addons/view_calendar/po/javascript/gl.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/he.po'
--- addons/view_calendar/po/javascript/he.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/he.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/hr.po'
--- addons/view_calendar/po/javascript/hr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/hr.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:29+0000\n"
-"Last-Translator: Goran Kliska <gkliska@xxxxxxxxx>\n"
+"PO-Revision-Date: 2011-10-04 18:21+0000\n"
+"Last-Translator: Goran Cvijanović <goranc@xxxxxxxxx>\n"
 "Language-Team: Croatian <hr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"
@@ -58,9 +58,9 @@
 #: static/javascript/calendar_week.js:270
 #: static/javascript/calendar_week.js:673
 msgid "This calendar object can no longer be moved !"
-msgstr ""
+msgstr "Ovaj zapis kalendara ne može se micati !"
 
 #: static/javascript/calendar_gantt.js:320
 #: static/javascript/calendar_week.js:97
 msgid "This calendar object can no longer be resized !"
-msgstr ""
+msgstr "Ovaj zapis kalendara ne može se mijenjati !"

=== modified file 'addons/view_calendar/po/javascript/hu.po'
--- addons/view_calendar/po/javascript/hu.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/hu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:29+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Hungarian <hu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/id.po'
--- addons/view_calendar/po/javascript/id.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/it.po'
--- addons/view_calendar/po/javascript/it.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/it.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== modified file 'addons/view_calendar/po/javascript/ln.po'
--- addons/view_calendar/po/javascript/ln.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/ln.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/lt.po'
--- addons/view_calendar/po/javascript/lt.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/lt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:40+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Lithuanian <lt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/lv.po'
--- addons/view_calendar/po/javascript/lv.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/lv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:29+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Latvian <lv@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/mk.po'
--- addons/view_calendar/po/javascript/mk.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/mk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== added file 'addons/view_calendar/po/javascript/mn.po'
--- addons/view_calendar/po/javascript/mn.po	1970-01-01 00:00:00 +0000
+++ addons/view_calendar/po/javascript/mn.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,66 @@
+# Mongolian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-10-02 19:44+0000\n"
+"Last-Translator: BAYARAA Sainbayar <Unknown>\n"
+"Language-Team: Mongolian <mn@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/calendar_box.js:50
+msgid "Cancel"
+msgstr "Болих"
+
+#: static/javascript/calendar_box.js:51
+msgid "Edit"
+msgstr "Засах"
+
+#: static/javascript/calendar_box.js:52
+msgid "Duplicate"
+msgstr "Хувилах"
+
+#: static/javascript/calendar_box.js:53
+msgid "Delete"
+msgstr "Устгах"
+
+#: static/javascript/calendar_box.js:80
+msgid "Creation User: "
+msgstr "Үүсгэсэн хэрэглэгч: "
+
+#: static/javascript/calendar_box.js:81
+msgid "Creation Date: "
+msgstr "Үүсгэсэн огноо: "
+
+#: static/javascript/calendar_box.js:82
+msgid "Latest Modification by: "
+msgstr "Сүүлд өөрчилсөн хэрэглэгч: "
+
+#: static/javascript/calendar_box.js:83
+msgid "Latest Modification Date: "
+msgstr "Сүүлд өөрчилсөн огноо: "
+
+#: static/javascript/calendar_box.js:167
+msgid "Do you really want to delete this record?"
+msgstr "Та энэ бичлэгийг устгах уу?"
+
+#: static/javascript/calendar_gantt.js:258
+#: static/javascript/calendar_month.js:400
+#: static/javascript/calendar_week.js:270
+#: static/javascript/calendar_week.js:673
+msgid "This calendar object can no longer be moved !"
+msgstr ""
+
+#: static/javascript/calendar_gantt.js:320
+#: static/javascript/calendar_week.js:97
+msgid "This calendar object can no longer be resized !"
+msgstr ""

=== modified file 'addons/view_calendar/po/javascript/nb.po'
--- addons/view_calendar/po/javascript/nb.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/nl.po'
--- addons/view_calendar/po/javascript/nl.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/nl.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:28+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: nl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== modified file 'addons/view_calendar/po/javascript/pl.po'
--- addons/view_calendar/po/javascript/pl.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/pl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/pt.po'
--- addons/view_calendar/po/javascript/pt.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/pt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:28+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Portuguese <pt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/pt_BR.po'
--- addons/view_calendar/po/javascript/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:28+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: pt_BR <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== added file 'addons/view_calendar/po/javascript/ro.po'
--- addons/view_calendar/po/javascript/ro.po	1970-01-01 00:00:00 +0000
+++ addons/view_calendar/po/javascript/ro.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,66 @@
+# Romanian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-16 16:10+0000\n"
+"Last-Translator: Syraxes <Unknown>\n"
+"Language-Team: Romanian <ro@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/calendar_box.js:50
+msgid "Cancel"
+msgstr "Renunțare"
+
+#: static/javascript/calendar_box.js:51
+msgid "Edit"
+msgstr "Editare"
+
+#: static/javascript/calendar_box.js:52
+msgid "Duplicate"
+msgstr "Duplicare"
+
+#: static/javascript/calendar_box.js:53
+msgid "Delete"
+msgstr "Ştergere"
+
+#: static/javascript/calendar_box.js:80
+msgid "Creation User: "
+msgstr "Creatorul: "
+
+#: static/javascript/calendar_box.js:81
+msgid "Creation Date: "
+msgstr "Data creării: "
+
+#: static/javascript/calendar_box.js:82
+msgid "Latest Modification by: "
+msgstr "Ultima modificare a fost făcută de : "
+
+#: static/javascript/calendar_box.js:83
+msgid "Latest Modification Date: "
+msgstr "Data ultimei modificări: "
+
+#: static/javascript/calendar_box.js:167
+msgid "Do you really want to delete this record?"
+msgstr "Sigur doriți ștergerea acestei înregistrări?"
+
+#: static/javascript/calendar_gantt.js:258
+#: static/javascript/calendar_month.js:400
+#: static/javascript/calendar_week.js:270
+#: static/javascript/calendar_week.js:673
+msgid "This calendar object can no longer be moved !"
+msgstr "Acest obiect calendar nu poate fi mutat !"
+
+#: static/javascript/calendar_gantt.js:320
+#: static/javascript/calendar_week.js:97
+msgid "This calendar object can no longer be resized !"
+msgstr "Acest obiect calendar nu poate fi redimensionat !"

=== modified file 'addons/view_calendar/po/javascript/ru.po'
--- addons/view_calendar/po/javascript/ru.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/sk.po'
--- addons/view_calendar/po/javascript/sk.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== added file 'addons/view_calendar/po/javascript/sl.po'
--- addons/view_calendar/po/javascript/sl.po	1970-01-01 00:00:00 +0000
+++ addons/view_calendar/po/javascript/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,66 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-21 08:33+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/calendar_box.js:50
+msgid "Cancel"
+msgstr "Prekliči"
+
+#: static/javascript/calendar_box.js:51
+msgid "Edit"
+msgstr "Uredi"
+
+#: static/javascript/calendar_box.js:52
+msgid "Duplicate"
+msgstr "Podvoji"
+
+#: static/javascript/calendar_box.js:53
+msgid "Delete"
+msgstr "Izbriši"
+
+#: static/javascript/calendar_box.js:80
+msgid "Creation User: "
+msgstr "Ustvarjanje uporabnika: "
+
+#: static/javascript/calendar_box.js:81
+msgid "Creation Date: "
+msgstr "Datum ustvarjanja: "
+
+#: static/javascript/calendar_box.js:82
+msgid "Latest Modification by: "
+msgstr "Zadnje spremembe od: "
+
+#: static/javascript/calendar_box.js:83
+msgid "Latest Modification Date: "
+msgstr "Datum zadnje spremembe: "
+
+#: static/javascript/calendar_box.js:167
+msgid "Do you really want to delete this record?"
+msgstr "Ali res želite izbrisati ta zapis?"
+
+#: static/javascript/calendar_gantt.js:258
+#: static/javascript/calendar_month.js:400
+#: static/javascript/calendar_week.js:270
+#: static/javascript/calendar_week.js:673
+msgid "This calendar object can no longer be moved !"
+msgstr "Tega predmeta koledarja ni mogoče več premakniti!"
+
+#: static/javascript/calendar_gantt.js:320
+#: static/javascript/calendar_week.js:97
+msgid "This calendar object can no longer be resized !"
+msgstr "Tega predmeta koledarja ni mogoče več povečati!"

=== modified file 'addons/view_calendar/po/javascript/sr.po'
--- addons/view_calendar/po/javascript/sr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/sr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:27+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== modified file 'addons/view_calendar/po/javascript/sr@xxxxxxxx'
--- addons/view_calendar/po/javascript/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/sv.po'
--- addons/view_calendar/po/javascript/sv.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/sv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:27+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sv <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/calendar_box.js:50

=== modified file 'addons/view_calendar/po/javascript/tr.po'
--- addons/view_calendar/po/javascript/tr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/tr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:26+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Turkish <tr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/uk.po'
--- addons/view_calendar/po/javascript/uk.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/javascript/zh_CN.po'
--- addons/view_calendar/po/javascript/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/javascript/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:26+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Chinese (Simplified) <zh_CN@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/calendar_box.js:50
 msgid "Cancel"

=== modified file 'addons/view_calendar/po/messages/ar.po'
--- addons/view_calendar/po/messages/ar.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/ar.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/bg.po'
--- addons/view_calendar/po/messages/bg.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/ca.po'
--- addons/view_calendar/po/messages/ca.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/da.po'
--- addons/view_calendar/po/messages/da.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/de.po'
--- addons/view_calendar/po/messages/de.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/de.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/en_AU.po'
--- addons/view_calendar/po/messages/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/en_CA.po'
--- addons/view_calendar/po/messages/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/en_GB.po'
--- addons/view_calendar/po/messages/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/es.po'
--- addons/view_calendar/po/messages/es.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/es.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/eu.po'
--- addons/view_calendar/po/messages/eu.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/eu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:24+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Basque <eu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/fi.po'
--- addons/view_calendar/po/messages/fi.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/fr.po'
--- addons/view_calendar/po/messages/fr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/fr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:24+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: fr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/gl.po'
--- addons/view_calendar/po/messages/gl.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/he.po'
--- addons/view_calendar/po/messages/he.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/he.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/hr.po'
--- addons/view_calendar/po/messages/hr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/hr.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:23+0000\n"
-"Last-Translator: Goran Kliska <gkliska@xxxxxxxxx>\n"
+"PO-Revision-Date: 2011-10-04 18:22+0000\n"
+"Last-Translator: Goran Cvijanović <goranc@xxxxxxxxx>\n"
 "Language-Team: Croatian <hr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"
@@ -120,7 +120,7 @@
 #: widgets/utils.py:173
 #, python-format
 msgid "%(first)s to %(last)s %(month)s"
-msgstr ""
+msgstr "%(first)s do %(last)s %(month)s"
 
 #: widgets/widgets.py:281
 #, python-format
@@ -145,7 +145,7 @@
 #: widgets/widgets.py:330
 #, python-format
 msgid "W %s"
-msgstr ""
+msgstr "W %s"
 
 #: widgets/widgets.py:338 widgets/widgets.py:352
 #, python-format
@@ -207,7 +207,7 @@
 
 #: widgets/templates/sidebar.mako:3
 msgid "Navigator"
-msgstr ""
+msgstr "Navigator"
 
 #: widgets/templates/week.mako:13
 #, python-format

=== modified file 'addons/view_calendar/po/messages/hu.po'
--- addons/view_calendar/po/messages/hu.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/hu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:23+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Hungarian <hu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/id.po'
--- addons/view_calendar/po/messages/id.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/it.po'
--- addons/view_calendar/po/messages/it.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/it.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:23+0000\n"
-"Last-Translator: Davide Corio - agilebg.com <davide.corio@xxxxxxxxxxxx>\n"
+"Last-Translator: Davide Corio - agilebg.com <davide.corio@xxxxxxxxxxx>\n"
 "Language-Team: it <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/ln.po'
--- addons/view_calendar/po/messages/ln.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/ln.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/lt.po'
--- addons/view_calendar/po/messages/lt.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/lt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:22+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Lithuanian <lt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/lv.po'
--- addons/view_calendar/po/messages/lv.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/lv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:22+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Latvian <lv@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/nb.po'
--- addons/view_calendar/po/messages/nb.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/nl.po'
--- addons/view_calendar/po/messages/nl.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/nl.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:22+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: nl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/pl.po'
--- addons/view_calendar/po/messages/pl.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/pl.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:21+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: pl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/pt.po'
--- addons/view_calendar/po/messages/pt.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/pt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:21+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Portuguese <pt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/pt_BR.po'
--- addons/view_calendar/po/messages/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:19+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: pt_BR <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/ru.po'
--- addons/view_calendar/po/messages/ru.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/sk.po'
--- addons/view_calendar/po/messages/sk.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== added file 'addons/view_calendar/po/messages/sl.po'
--- addons/view_calendar/po/messages/sl.po	1970-01-01 00:00:00 +0000
+++ addons/view_calendar/po/messages/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,215 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-21 08:54+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: controllers/templates/calpopup.mako:83
+msgid "Save"
+msgstr "Shrani"
+
+#: controllers/templates/calpopup.mako:86
+msgid "Close"
+msgstr "Zapri"
+
+#: widgets/_views.py:10
+msgid "Calendar"
+msgstr "Koledar"
+
+#: widgets/_views.py:11
+msgid "Calendar view..."
+msgstr "Pogled koledarja..."
+
+#: widgets/_views.py:28
+msgid "Gantt"
+msgstr "Gantt"
+
+#: widgets/_views.py:29
+msgid "Gantt view..."
+msgstr "Gantt pogled..."
+
+#: widgets/utils.py:26
+msgid "Monday"
+msgstr "ponedeljek"
+
+#: widgets/utils.py:27
+msgid "Tuesday"
+msgstr "torek"
+
+#: widgets/utils.py:28
+msgid "Wednesday"
+msgstr "sreda"
+
+#: widgets/utils.py:29
+msgid "Thursday"
+msgstr "četrtek"
+
+#: widgets/utils.py:30
+msgid "Friday"
+msgstr "petek"
+
+#: widgets/utils.py:31
+msgid "Saturday"
+msgstr "sobota"
+
+#: widgets/utils.py:32
+msgid "Sunday"
+msgstr "nedelja"
+
+#: widgets/utils.py:35
+msgid "January"
+msgstr "januar"
+
+#: widgets/utils.py:36
+msgid "February"
+msgstr "februar"
+
+#: widgets/utils.py:37
+msgid "March"
+msgstr "marec"
+
+#: widgets/utils.py:38
+msgid "April"
+msgstr "april"
+
+#: widgets/utils.py:39
+msgid "May"
+msgstr "maj"
+
+#: widgets/utils.py:40
+msgid "June"
+msgstr "junij"
+
+#: widgets/utils.py:41
+msgid "July"
+msgstr "julij"
+
+#: widgets/utils.py:42
+msgid "August"
+msgstr "avgust"
+
+#: widgets/utils.py:43
+msgid "September"
+msgstr "september"
+
+#: widgets/utils.py:44
+msgid "October"
+msgstr "oktober"
+
+#: widgets/utils.py:45
+msgid "November"
+msgstr "november"
+
+#: widgets/utils.py:46
+msgid "December"
+msgstr "december"
+
+#: widgets/utils.py:173
+#, python-format
+msgid "%(first)s to %(last)s %(month)s"
+msgstr "%(first)s do %(last)s %(month)s"
+
+#: widgets/widgets.py:281
+#, python-format
+msgid "%s, Week %s"
+msgstr "%s, Teden %s"
+
+#: widgets/widgets.py:294
+#, python-format
+msgid "%s - %s"
+msgstr "%s - %s"
+
+#: widgets/widgets.py:296 widgets/widgets.py:319 widgets/widgets.py:363
+#, python-format
+msgid "Week %s"
+msgstr "Teden %s"
+
+#: widgets/widgets.py:311
+#, python-format
+msgid "%s, Qtr %s"
+msgstr "%s, Četrtina %s"
+
+#: widgets/widgets.py:330
+#, python-format
+msgid "W %s"
+msgstr "T %s"
+
+#: widgets/widgets.py:338 widgets/widgets.py:352
+#, python-format
+msgid "Year %s to Year %s"
+msgstr "Leto %s do leta %s"
+
+#: widgets/templates/day.mako:4 widgets/templates/day.mako:7
+#: widgets/templates/gantt.mako:5 widgets/templates/gantt.mako:8
+#: widgets/templates/month.mako:4 widgets/templates/week.mako:4
+msgid "Today"
+msgstr "Danes"
+
+#: widgets/templates/day.mako:21 widgets/templates/month.mako:15
+#: widgets/templates/week.mako:18
+msgid "Month Calendar..."
+msgstr "Mesečni koledar..."
+
+#: widgets/templates/day.mako:22 widgets/templates/month.mako:15
+#: widgets/templates/week.mako:19
+msgid "Month"
+msgstr "Mesec"
+
+#: widgets/templates/day.mako:25 widgets/templates/month.mako:18
+#: widgets/templates/week.mako:22
+msgid "Week Calendar..."
+msgstr "Tedenski koledar..."
+
+#: widgets/templates/day.mako:26 widgets/templates/month.mako:19
+#: widgets/templates/week.mako:22
+msgid "Week"
+msgstr "Teden"
+
+#: widgets/templates/day.mako:30 widgets/templates/month.mako:22
+#: widgets/templates/week.mako:25
+msgid "Day Calendar..."
+msgstr "Dnevni koledar..."
+
+#: widgets/templates/day.mako:30 widgets/templates/month.mako:23
+#: widgets/templates/week.mako:26
+msgid "Day"
+msgstr "Dan"
+
+#: widgets/templates/gantt.mako:7 widgets/templates/month.mako:3
+#: widgets/templates/week.mako:3
+msgid "Today..."
+msgstr "Danes..."
+
+#: widgets/templates/gantt.mako:22 widgets/templates/gantt.mako:24
+msgid "Zoom In"
+msgstr "Povečaj"
+
+#: widgets/templates/gantt.mako:30 widgets/templates/gantt.mako:32
+msgid "Zoom Out"
+msgstr "Pomanjšaj"
+
+#: widgets/templates/groups.mako:4
+msgid "Add"
+msgstr "Dodaj"
+
+#: widgets/templates/sidebar.mako:3
+msgid "Navigator"
+msgstr "Navigator"
+
+#: widgets/templates/week.mako:13
+#, python-format
+msgid "Week %(number)s"
+msgstr "Teden %(number)s"

=== modified file 'addons/view_calendar/po/messages/sr.po'
--- addons/view_calendar/po/messages/sr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/sr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:18+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/sr@xxxxxxxx'
--- addons/view_calendar/po/messages/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:17+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Serbian latin <sr@latin@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/po/messages/sv.po'
--- addons/view_calendar/po/messages/sv.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/sv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:17+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sv <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/tr.po'
--- addons/view_calendar/po/messages/tr.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/tr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/templates/calpopup.mako:83

=== modified file 'addons/view_calendar/po/messages/zh_CN.po'
--- addons/view_calendar/po/messages/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/view_calendar/po/messages/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:17+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Chinese (Simplified) <zh_CN@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/templates/calpopup.mako:83
 msgid "Save"

=== modified file 'addons/view_calendar/widgets/_base.py'
--- addons/view_calendar/widgets/_base.py	2011-06-30 05:04:45 +0000
+++ addons/view_calendar/widgets/_base.py	2011-11-08 15:41:11 +0000
@@ -262,18 +262,22 @@
                     self.fields[self.color_field].get('relation') == 'res.users':
                     need_to_add_the_user_to_the_list_of_users = True
                 clr_field = rpc.RPCProxy(self.fields[self.color_field]['relation']).search([], 0, 0, 0, ctx)
-                
+
                 if need_to_add_the_user_to_the_list_of_users and self.context.get('search_default_user_id') not in clr_field:
                     clr_field[search_limit-1] = self.context.get('search_default_user_id')
 
             domain.append((self.color_field, 'in', clr_field))
-
+        
         ids = proxy.search(domain, 0, 0, order_by, ctx)
-
+        splitIds = [tuple(x.split('-')) for x in ids if isinstance(x, str)]
+        splitIds.sort(key = lambda x: int(x[0]))
+        if splitIds:
+            ids = ["-".join(i) for i in splitIds]
         result = proxy.read(ids, self.fields.keys()+['__last_update'], ctx)
-
+        
         ConcurrencyInfo.update(self.model, result)
         self.concurrency_info = ConcurrencyInfo(self.model, ids)
+        colorCount = 1
         if self.color_field:
             for evt in result:
                 key = evt[self.color_field]
@@ -285,11 +289,10 @@
                 if isinstance(key, tuple): # M2O
                     value, name = key
 
-                self.colors[key] = (name, value, None)
-
-            colors = choice_colors(len(self.colors))
-            for i, (key, value) in enumerate(self.colors.items()):
-                self.colors[key] = (value[0], value[1], colors[i])
+                if key not in self.colors:
+                    colors = choice_colors(colorCount)
+                    self.colors[key] = (name, value, colors[-1])
+                    colorCount += 1
 
         events = []
 

=== modified file 'addons/view_diagram/po/javascript/ar.po'
--- addons/view_diagram/po/javascript/ar.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/ar.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/bg.po'
--- addons/view_diagram/po/javascript/bg.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/ca.po'
--- addons/view_diagram/po/javascript/ca.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== added file 'addons/view_diagram/po/javascript/cs.po'
--- addons/view_diagram/po/javascript/cs.po	1970-01-01 00:00:00 +0000
+++ addons/view_diagram/po/javascript/cs.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,46 @@
+# Czech translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-22 09:50+0000\n"
+"Last-Translator: Konki <pavel.konkol@xxxxxxxxx>\n"
+"Language-Team: Czech <cs@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/infobox.js:135
+msgid "Do you really want to delete this record?"
+msgstr "Opravdu chcete smazat tento záznam?"
+
+#: static/javascript/process.js:170
+msgid "Notes:"
+msgstr "Poznámky:"
+
+#: static/javascript/process.js:178
+msgid "Subflows:"
+msgstr ""
+
+#: static/javascript/process.js:182
+msgid "Related:"
+msgstr "Související:"
+
+#: static/javascript/process.js:266
+msgid "Help"
+msgstr "Nápověda"
+
+#: static/javascript/workflow.js:317
+msgid "state could not be created"
+msgstr ""
+
+#: static/javascript/workflow.js:354
+msgid "Could not create transaction at server"
+msgstr "Nelze vytvořit přenos na serveru"

=== modified file 'addons/view_diagram/po/javascript/da.po'
--- addons/view_diagram/po/javascript/da.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/de.po'
--- addons/view_diagram/po/javascript/de.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/de.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:17+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: de <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/en_AU.po'
--- addons/view_diagram/po/javascript/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/en_CA.po'
--- addons/view_diagram/po/javascript/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/en_GB.po'
--- addons/view_diagram/po/javascript/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/es.po'
--- addons/view_diagram/po/javascript/es.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/es.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/eu.po'
--- addons/view_diagram/po/javascript/eu.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/eu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:16+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Basque <eu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/fi.po'
--- addons/view_diagram/po/javascript/fi.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/fr.po'
--- addons/view_diagram/po/javascript/fr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/fr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/gl.po'
--- addons/view_diagram/po/javascript/gl.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/he.po'
--- addons/view_diagram/po/javascript/he.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/he.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/hr.po'
--- addons/view_diagram/po/javascript/hr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/hr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/hu.po'
--- addons/view_diagram/po/javascript/hu.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/hu.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/id.po'
--- addons/view_diagram/po/javascript/id.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/it.po'
--- addons/view_diagram/po/javascript/it.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/it.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/ln.po'
--- addons/view_diagram/po/javascript/ln.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/ln.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/lt.po'
--- addons/view_diagram/po/javascript/lt.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/lt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:14+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Lithuanian <lt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/lv.po'
--- addons/view_diagram/po/javascript/lv.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/lv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:14+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Latvian <lv@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/mk.po'
--- addons/view_diagram/po/javascript/mk.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/mk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/nb.po'
--- addons/view_diagram/po/javascript/nb.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/nl.po'
--- addons/view_diagram/po/javascript/nl.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/nl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/pl.po'
--- addons/view_diagram/po/javascript/pl.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/pl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:09+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/pt.po'
--- addons/view_diagram/po/javascript/pt.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/pt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:13+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Portuguese <pt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/pt_BR.po'
--- addons/view_diagram/po/javascript/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== added file 'addons/view_diagram/po/javascript/ro.po'
--- addons/view_diagram/po/javascript/ro.po	1970-01-01 00:00:00 +0000
+++ addons/view_diagram/po/javascript/ro.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,46 @@
+# Romanian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-16 16:13+0000\n"
+"Last-Translator: Syraxes <Unknown>\n"
+"Language-Team: Romanian <ro@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/infobox.js:135
+msgid "Do you really want to delete this record?"
+msgstr "Sigur doriți ștergerea acestei înregistrări?"
+
+#: static/javascript/process.js:170
+msgid "Notes:"
+msgstr "Observații:"
+
+#: static/javascript/process.js:178
+msgid "Subflows:"
+msgstr "Sub-fluxuri:"
+
+#: static/javascript/process.js:182
+msgid "Related:"
+msgstr "Corelat cu:"
+
+#: static/javascript/process.js:266
+msgid "Help"
+msgstr "Help"
+
+#: static/javascript/workflow.js:317
+msgid "state could not be created"
+msgstr "starea nu a putut fi creată"
+
+#: static/javascript/workflow.js:354
+msgid "Could not create transaction at server"
+msgstr "Tranzacția nu putu fi creată pe server"

=== modified file 'addons/view_diagram/po/javascript/ru.po'
--- addons/view_diagram/po/javascript/ru.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/sk.po'
--- addons/view_diagram/po/javascript/sk.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== added file 'addons/view_diagram/po/javascript/sl.po'
--- addons/view_diagram/po/javascript/sl.po	1970-01-01 00:00:00 +0000
+++ addons/view_diagram/po/javascript/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,46 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-21 08:37+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: static/javascript/infobox.js:135
+msgid "Do you really want to delete this record?"
+msgstr "Ali res želite izbrisati ta zapis?"
+
+#: static/javascript/process.js:170
+msgid "Notes:"
+msgstr "Opombe:"
+
+#: static/javascript/process.js:178
+msgid "Subflows:"
+msgstr "Obsežni:"
+
+#: static/javascript/process.js:182
+msgid "Related:"
+msgstr "V zvezi:"
+
+#: static/javascript/process.js:266
+msgid "Help"
+msgstr "Pomoč"
+
+#: static/javascript/workflow.js:317
+msgid "state could not be created"
+msgstr "stanje ne more biti ustvarjeno"
+
+#: static/javascript/workflow.js:354
+msgid "Could not create transaction at server"
+msgstr "Ni mogoče ustvariti izvršitve na strežniku"

=== modified file 'addons/view_diagram/po/javascript/sr.po'
--- addons/view_diagram/po/javascript/sr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/sr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:12+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/sr@xxxxxxxx'
--- addons/view_diagram/po/javascript/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:12+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Serbian latin <sr@latin@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/sv.po'
--- addons/view_diagram/po/javascript/sv.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/sv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:12+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sv <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/th.po'
--- addons/view_diagram/po/javascript/th.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/th.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/tr.po'
--- addons/view_diagram/po/javascript/tr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/tr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/javascript/uk.po'
--- addons/view_diagram/po/javascript/uk.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: static/javascript/infobox.js:135

=== modified file 'addons/view_diagram/po/javascript/zh_CN.po'
--- addons/view_diagram/po/javascript/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/javascript/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: static/javascript/infobox.js:135
 msgid "Do you really want to delete this record?"

=== modified file 'addons/view_diagram/po/messages/ar.po'
--- addons/view_diagram/po/messages/ar.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/ar.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/bg.po'
--- addons/view_diagram/po/messages/bg.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/ca.po'
--- addons/view_diagram/po/messages/ca.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/da.po'
--- addons/view_diagram/po/messages/da.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/de.po'
--- addons/view_diagram/po/messages/de.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/de.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/en_AU.po'
--- addons/view_diagram/po/messages/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/en_CA.po'
--- addons/view_diagram/po/messages/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/en_GB.po'
--- addons/view_diagram/po/messages/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/es.po'
--- addons/view_diagram/po/messages/es.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/es.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/eu.po'
--- addons/view_diagram/po/messages/eu.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/eu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:10+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Basque <eu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/fi.po'
--- addons/view_diagram/po/messages/fi.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/fr.po'
--- addons/view_diagram/po/messages/fr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/fr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:09+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: fr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/gl.po'
--- addons/view_diagram/po/messages/gl.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/hr.po'
--- addons/view_diagram/po/messages/hr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/hr.po	2011-11-08 15:41:11 +0000
@@ -8,35 +8,35 @@
 "Project-Id-Version: openobject-client-web\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:09+0000\n"
-"Last-Translator: Goran Kliska <gkliska@xxxxxxxxx>\n"
+"PO-Revision-Date: 2011-10-04 18:28+0000\n"
+"Last-Translator: Goran Cvijanović <goranc@xxxxxxxxx>\n"
 "Language-Team: Croatian <hr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"
-msgstr ""
+msgstr "Ne mogu obrisati status"
 
 #: controllers/_diagram.py:274
 msgid "No workflow associated!"
-msgstr ""
+msgstr "Nema pridruženog hodograma!"
 
 #: controllers/process.py:46
 msgid "Help: Not Defined"
-msgstr ""
+msgstr "Pomoć: Nije definirano"
 
 #: controllers/process.py:89
 #, python-format
 msgid "%(name)s - Resource: %(resource)s, State: %(state)s"
-msgstr ""
+msgstr "%(name)s - Resurs: %(resource)s, Status: %(state)s"
 
 #: controllers/process.py:101
 msgid "Last modified by:"
-msgstr ""
+msgstr "Promijenio:"
 
 #: controllers/templates/process.mako:4 controllers/templates/process.mako:87
 #: controllers/templates/process_tip.mako:5
@@ -49,7 +49,7 @@
 
 #: controllers/templates/process.mako:56
 msgid "Read Documentation Online"
-msgstr ""
+msgstr "Pogledajte dokumentaciju na internetu"
 
 #: controllers/templates/process.mako:62
 msgid "Forum"
@@ -57,7 +57,7 @@
 
 #: controllers/templates/process.mako:63
 msgid "Community Discussion"
-msgstr ""
+msgstr "Rasprave"
 
 #: controllers/templates/process.mako:68
 msgid "Books"
@@ -65,15 +65,15 @@
 
 #: controllers/templates/process.mako:69
 msgid "Get the book on Amazon"
-msgstr ""
+msgstr "Nabavite knjigu na Amazon-u"
 
 #: controllers/templates/process.mako:74
 msgid "Support / Publisher Warranty"
-msgstr ""
+msgstr "Podrška / Izdavačeva garancija"
 
 #: controllers/templates/process.mako:75
 msgid "Get the OpenERP Warranty"
-msgstr ""
+msgstr "Nabavite OpenERP garanciju"
 
 #: controllers/templates/process.mako:97
 msgid "Select Process"
@@ -85,15 +85,15 @@
 
 #: controllers/templates/process.mako:117
 msgid "[Edit Process]"
-msgstr ""
+msgstr "[Izmjena procesa]"
 
 #: controllers/templates/process.mako:119
 msgid "[show fields]"
-msgstr ""
+msgstr "[prikaži polja]"
 
 #: controllers/templates/process.mako:120
 msgid "[hide fields]"
-msgstr ""
+msgstr "[sakrij polja]"
 
 #: controllers/templates/process_open.mako:54
 #: controllers/templates/process_tip.mako:20
@@ -113,7 +113,7 @@
 #: controllers/templates/workflow.mako:20
 #, python-format
 msgid "Workflow (%s)"
-msgstr ""
+msgstr "Hodogram (%s)"
 
 #: widgets/_views.py:8
 msgid "Diagram"
@@ -121,7 +121,7 @@
 
 #: widgets/_views.py:9
 msgid "Diagram view..."
-msgstr ""
+msgstr "Pregled dijagrama..."
 
 #: widgets/templates/diagram.mako:27
 msgid "Loading..."

=== modified file 'addons/view_diagram/po/messages/hu.po'
--- addons/view_diagram/po/messages/hu.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/hu.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/id.po'
--- addons/view_diagram/po/messages/id.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/it.po'
--- addons/view_diagram/po/messages/it.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/it.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:08+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: it <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/ln.po'
--- addons/view_diagram/po/messages/ln.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/ln.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/lt.po'
--- addons/view_diagram/po/messages/lt.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/lt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:08+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Lithuanian <lt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/lv.po'
--- addons/view_diagram/po/messages/lv.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/lv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:08+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Latvian <lv@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/nb.po'
--- addons/view_diagram/po/messages/nb.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/nl.po'
--- addons/view_diagram/po/messages/nl.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/nl.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:07+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: nl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/pl.po'
--- addons/view_diagram/po/messages/pl.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/pl.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:40+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"PO-Revision-Date: 2011-09-23 09:41+0000\n"
+"Last-Translator: Wojciech Zylinski <Unknown>\n"
 "Language-Team: pl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
@@ -54,7 +54,7 @@
 
 #: controllers/templates/process.mako:62
 msgid "Forum"
-msgstr ""
+msgstr "Forum"
 
 #: controllers/templates/process.mako:63
 msgid "Community Discussion"

=== modified file 'addons/view_diagram/po/messages/pt.po'
--- addons/view_diagram/po/messages/pt.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/pt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:39+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Portuguese <pt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/pt_BR.po'
--- addons/view_diagram/po/messages/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:39+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: pt_BR <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== added file 'addons/view_diagram/po/messages/ro.po'
--- addons/view_diagram/po/messages/ro.po	1970-01-01 00:00:00 +0000
+++ addons/view_diagram/po/messages/ro.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,128 @@
+# Romanian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-16 16:22+0000\n"
+"Last-Translator: Syraxes <Unknown>\n"
+"Language-Team: Romanian <ro@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: controllers/_diagram.py:89 controllers/_diagram.py:210
+msgid "Could not delete state"
+msgstr "Starea nu a putut fi ștearsă"
+
+#: controllers/_diagram.py:274
+msgid "No workflow associated!"
+msgstr "Nu există nici un workflow asociat !"
+
+#: controllers/process.py:46
+msgid "Help: Not Defined"
+msgstr "Help: nedefinit"
+
+#: controllers/process.py:89
+#, python-format
+msgid "%(name)s - Resource: %(resource)s, State: %(state)s"
+msgstr ""
+
+#: controllers/process.py:101
+msgid "Last modified by:"
+msgstr "Modificat ultima dată de :"
+
+#: controllers/templates/process.mako:4 controllers/templates/process.mako:87
+#: controllers/templates/process_tip.mako:5
+msgid "Process"
+msgstr "Proces"
+
+#: controllers/templates/process.mako:55
+msgid "Documentation"
+msgstr "Documentație"
+
+#: controllers/templates/process.mako:56
+msgid "Read Documentation Online"
+msgstr "Documentație Online"
+
+#: controllers/templates/process.mako:62
+msgid "Forum"
+msgstr "Forum"
+
+#: controllers/templates/process.mako:63
+msgid "Community Discussion"
+msgstr "Discuții"
+
+#: controllers/templates/process.mako:68
+msgid "Books"
+msgstr "Cărți"
+
+#: controllers/templates/process.mako:69
+msgid "Get the book on Amazon"
+msgstr "Cumpărarea cărții de la Amazon"
+
+#: controllers/templates/process.mako:74
+msgid "Support / Publisher Warranty"
+msgstr "Suport / Garanție editor"
+
+#: controllers/templates/process.mako:75
+msgid "Get the OpenERP Warranty"
+msgstr "Obțineți garanția OpenERP"
+
+#: controllers/templates/process.mako:97
+msgid "Select Process"
+msgstr "Selectarea procesului"
+
+#: controllers/templates/process.mako:103
+msgid "Select"
+msgstr "Selectează"
+
+#: controllers/templates/process.mako:117
+msgid "[Edit Process]"
+msgstr "[Editare proces]"
+
+#: controllers/templates/process.mako:119
+msgid "[show fields]"
+msgstr "[afișare cîmpuri]"
+
+#: controllers/templates/process.mako:120
+msgid "[hide fields]"
+msgstr "[ascundere cîmpuri]"
+
+#: controllers/templates/process_open.mako:54
+#: controllers/templates/process_tip.mako:20
+#: controllers/templates/wkf_popup.mako:52
+msgid "Close"
+msgstr "Închidere"
+
+#: controllers/templates/process_open.mako:55
+#: controllers/templates/wkf_popup.mako:49
+msgid "Save"
+msgstr "Salvare"
+
+#: controllers/templates/workflow.mako:4
+msgid "Workflow"
+msgstr "Workflow"
+
+#: controllers/templates/workflow.mako:20
+#, python-format
+msgid "Workflow (%s)"
+msgstr "Workflow (%s)"
+
+#: widgets/_views.py:8
+msgid "Diagram"
+msgstr "Diagramă"
+
+#: widgets/_views.py:9
+msgid "Diagram view..."
+msgstr "Vizualizare diagramă ..."
+
+#: widgets/templates/diagram.mako:27
+msgid "Loading..."
+msgstr "Se încarcă..."

=== modified file 'addons/view_diagram/po/messages/ru.po'
--- addons/view_diagram/po/messages/ru.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/sk.po'
--- addons/view_diagram/po/messages/sk.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== added file 'addons/view_diagram/po/messages/sl.po'
--- addons/view_diagram/po/messages/sl.po	1970-01-01 00:00:00 +0000
+++ addons/view_diagram/po/messages/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,128 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-21 08:44+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: controllers/_diagram.py:89 controllers/_diagram.py:210
+msgid "Could not delete state"
+msgstr "Ni mogoče izbrisati stanja"
+
+#: controllers/_diagram.py:274
+msgid "No workflow associated!"
+msgstr "Ni povezanega delovnega procesa!"
+
+#: controllers/process.py:46
+msgid "Help: Not Defined"
+msgstr "Pomoč: Ni definirano"
+
+#: controllers/process.py:89
+#, python-format
+msgid "%(name)s - Resource: %(resource)s, State: %(state)s"
+msgstr "%(name)s - Vir:%(resource)s, Stanje: %(state)s"
+
+#: controllers/process.py:101
+msgid "Last modified by:"
+msgstr "Zadnja sprememba od:"
+
+#: controllers/templates/process.mako:4 controllers/templates/process.mako:87
+#: controllers/templates/process_tip.mako:5
+msgid "Process"
+msgstr "Procesiraj"
+
+#: controllers/templates/process.mako:55
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: controllers/templates/process.mako:56
+msgid "Read Documentation Online"
+msgstr "Preberi spletno dokumentacijo"
+
+#: controllers/templates/process.mako:62
+msgid "Forum"
+msgstr "Forum"
+
+#: controllers/templates/process.mako:63
+msgid "Community Discussion"
+msgstr "Razprava skupnosti"
+
+#: controllers/templates/process.mako:68
+msgid "Books"
+msgstr "Knjige"
+
+#: controllers/templates/process.mako:69
+msgid "Get the book on Amazon"
+msgstr "Pridodbi knjigo na Amazon-u"
+
+#: controllers/templates/process.mako:74
+msgid "Support / Publisher Warranty"
+msgstr "Podpora / Garancija založnika"
+
+#: controllers/templates/process.mako:75
+msgid "Get the OpenERP Warranty"
+msgstr "Pridobi OPpenERP garancijo"
+
+#: controllers/templates/process.mako:97
+msgid "Select Process"
+msgstr "Izberi postopek"
+
+#: controllers/templates/process.mako:103
+msgid "Select"
+msgstr "Izberi"
+
+#: controllers/templates/process.mako:117
+msgid "[Edit Process]"
+msgstr "[Uredi opravilo]"
+
+#: controllers/templates/process.mako:119
+msgid "[show fields]"
+msgstr "[prikaži polja]"
+
+#: controllers/templates/process.mako:120
+msgid "[hide fields]"
+msgstr "[skrij polja]"
+
+#: controllers/templates/process_open.mako:54
+#: controllers/templates/process_tip.mako:20
+#: controllers/templates/wkf_popup.mako:52
+msgid "Close"
+msgstr "Zapri"
+
+#: controllers/templates/process_open.mako:55
+#: controllers/templates/wkf_popup.mako:49
+msgid "Save"
+msgstr "Shrani"
+
+#: controllers/templates/workflow.mako:4
+msgid "Workflow"
+msgstr "Delovni proces"
+
+#: controllers/templates/workflow.mako:20
+#, python-format
+msgid "Workflow (%s)"
+msgstr "Delovni proces (%s)"
+
+#: widgets/_views.py:8
+msgid "Diagram"
+msgstr "Diagram"
+
+#: widgets/_views.py:9
+msgid "Diagram view..."
+msgstr "Pogled diagrama...."
+
+#: widgets/templates/diagram.mako:27
+msgid "Loading..."
+msgstr "Nalaganje …"

=== modified file 'addons/view_diagram/po/messages/sr.po'
--- addons/view_diagram/po/messages/sr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/sr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:38+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/sr@xxxxxxxx'
--- addons/view_diagram/po/messages/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:38+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Serbian latin <sr@latin@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/sv.po'
--- addons/view_diagram/po/messages/sv.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/sv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:38+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sv <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/th.po'
--- addons/view_diagram/po/messages/th.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/th.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/tr.po'
--- addons/view_diagram/po/messages/tr.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/tr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_diagram/po/messages/uk.po'
--- addons/view_diagram/po/messages/uk.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210

=== modified file 'addons/view_diagram/po/messages/zh_CN.po'
--- addons/view_diagram/po/messages/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/view_diagram/po/messages/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: controllers/_diagram.py:89 controllers/_diagram.py:210
 msgid "Could not delete state"

=== modified file 'addons/view_graph/po/javascript/de.po'
--- addons/view_graph/po/javascript/de.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/de.po	2011-11-08 15:41:11 +0000
@@ -14,7 +14,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 

=== modified file 'addons/view_graph/po/javascript/fr.po'
--- addons/view_graph/po/javascript/fr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/fr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/gl.po'
--- addons/view_graph/po/javascript/gl.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/gl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/it.po'
--- addons/view_graph/po/javascript/it.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/it.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/nl.po'
--- addons/view_graph/po/javascript/nl.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/nl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/pt_BR.po'
--- addons/view_graph/po/javascript/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/sr.po'
--- addons/view_graph/po/javascript/sr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/sr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/sr@xxxxxxxx'
--- addons/view_graph/po/javascript/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/sv.po'
--- addons/view_graph/po/javascript/sv.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/sv.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/javascript/tr.po'
--- addons/view_graph/po/javascript/tr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/tr.po	2011-11-08 15:41:11 +0000
@@ -14,7 +14,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 

=== modified file 'addons/view_graph/po/javascript/uk.po'
--- addons/view_graph/po/javascript/uk.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/javascript/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/view_graph/po/messages/ar.po'
--- addons/view_graph/po/messages/ar.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/ar.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/bg.po'
--- addons/view_graph/po/messages/bg.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/bg.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/ca.po'
--- addons/view_graph/po/messages/ca.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/ca.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== added file 'addons/view_graph/po/messages/cs.po'
--- addons/view_graph/po/messages/cs.po	1970-01-01 00:00:00 +0000
+++ addons/view_graph/po/messages/cs.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,26 @@
+# Czech translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-22 09:46+0000\n"
+"Last-Translator: Konki <pavel.konkol@xxxxxxxxx>\n"
+"Language-Team: Czech <cs@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: widgets/_views.py:8
+msgid "Graph"
+msgstr "Graf"
+
+#: widgets/_views.py:9
+msgid "Graph view..."
+msgstr "Náhled grafu..."

=== modified file 'addons/view_graph/po/messages/da.po'
--- addons/view_graph/po/messages/da.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/da.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/de.po'
--- addons/view_graph/po/messages/de.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/de.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== modified file 'addons/view_graph/po/messages/en_AU.po'
--- addons/view_graph/po/messages/en_AU.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/en_AU.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/en_CA.po'
--- addons/view_graph/po/messages/en_CA.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/en_CA.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/en_GB.po'
--- addons/view_graph/po/messages/en_GB.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/en_GB.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/es.po'
--- addons/view_graph/po/messages/es.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/es.po	2011-11-08 15:41:11 +0000
@@ -15,8 +15,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/eu.po'
--- addons/view_graph/po/messages/eu.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/eu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:06+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Basque <eu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/fi.po'
--- addons/view_graph/po/messages/fi.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/fi.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/fr.po'
--- addons/view_graph/po/messages/fr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/fr.po	2011-11-08 15:41:11 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
-"PO-Revision-Date: 2011-02-15 19:04+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"PO-Revision-Date: 2011-09-20 09:44+0000\n"
+"Last-Translator: lholivier <olivier.lenoir@xxxxxxx>\n"
 "Language-Team: fr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8
@@ -24,4 +24,4 @@
 
 #: widgets/_views.py:9
 msgid "Graph view..."
-msgstr "Vue graphique ..."
+msgstr "Vue Graphe..."

=== modified file 'addons/view_graph/po/messages/gl.po'
--- addons/view_graph/po/messages/gl.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/gl.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:04+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Galician <gl@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/he.po'
--- addons/view_graph/po/messages/he.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/he.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/hr.po'
--- addons/view_graph/po/messages/hr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/hr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/hu.po'
--- addons/view_graph/po/messages/hu.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/hu.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:04+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Hungarian <hu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/id.po'
--- addons/view_graph/po/messages/id.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/id.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/it.po'
--- addons/view_graph/po/messages/it.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/it.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:03+0000\n"
-"Last-Translator: Davide Corio - agilebg.com <davide.corio@xxxxxxxxxxxx>\n"
+"Last-Translator: Davide Corio - agilebg.com <davide.corio@xxxxxxxxxxx>\n"
 "Language-Team: it <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== modified file 'addons/view_graph/po/messages/lt.po'
--- addons/view_graph/po/messages/lt.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/lt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:03+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Lithuanian <lt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/lv.po'
--- addons/view_graph/po/messages/lv.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/lv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:03+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Latvian <lv@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/mk.po'
--- addons/view_graph/po/messages/mk.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/mk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== added file 'addons/view_graph/po/messages/mn.po'
--- addons/view_graph/po/messages/mn.po	1970-01-01 00:00:00 +0000
+++ addons/view_graph/po/messages/mn.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,26 @@
+# Mongolian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-10-02 19:41+0000\n"
+"Last-Translator: BAYARAA Sainbayar <Unknown>\n"
+"Language-Team: Mongolian <mn@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: widgets/_views.py:8
+msgid "Graph"
+msgstr "График"
+
+#: widgets/_views.py:9
+msgid "Graph view..."
+msgstr "График харагдагц..."

=== modified file 'addons/view_graph/po/messages/nb.po'
--- addons/view_graph/po/messages/nb.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/nb.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/nl.po'
--- addons/view_graph/po/messages/nl.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/nl.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:02+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: nl <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== modified file 'addons/view_graph/po/messages/pl.po'
--- addons/view_graph/po/messages/pl.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/pl.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/pt.po'
--- addons/view_graph/po/messages/pt.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/pt.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:00+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Portuguese <pt@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/pt_BR.po'
--- addons/view_graph/po/messages/pt_BR.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/pt_BR.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 19:00+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: pt_BR <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== added file 'addons/view_graph/po/messages/ro.po'
--- addons/view_graph/po/messages/ro.po	1970-01-01 00:00:00 +0000
+++ addons/view_graph/po/messages/ro.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,26 @@
+# Romanian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-16 16:02+0000\n"
+"Last-Translator: Syraxes <Unknown>\n"
+"Language-Team: Romanian <ro@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: widgets/_views.py:8
+msgid "Graph"
+msgstr "Grafic"
+
+#: widgets/_views.py:9
+msgid "Graph view..."
+msgstr "Vizualizare grafic ..."

=== modified file 'addons/view_graph/po/messages/ru.po'
--- addons/view_graph/po/messages/ru.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/ru.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/sk.po'
--- addons/view_graph/po/messages/sk.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/sk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== added file 'addons/view_graph/po/messages/sl.po'
--- addons/view_graph/po/messages/sl.po	1970-01-01 00:00:00 +0000
+++ addons/view_graph/po/messages/sl.po	2011-11-08 15:41:11 +0000
@@ -0,0 +1,26 @@
+# Slovenian translation for openobject-client-web
+# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
+# This file is distributed under the same license as the openobject-client-web package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-client-web\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-03-18 11:53+0100\n"
+"PO-Revision-Date: 2011-09-19 13:40+0000\n"
+"Last-Translator: Anze (Neotek) <Unknown>\n"
+"Language-Team: Slovenian <sl@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
+
+#: widgets/_views.py:8
+msgid "Graph"
+msgstr "Grafikon"
+
+#: widgets/_views.py:9
+msgid "Graph view..."
+msgstr "Ogled grafikona..."

=== modified file 'addons/view_graph/po/messages/sr.po'
--- addons/view_graph/po/messages/sr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/sr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 18:59+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sr <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== modified file 'addons/view_graph/po/messages/sr@xxxxxxxx'
--- addons/view_graph/po/messages/sr@xxxxxxxx	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/sr@xxxxxxxx	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 18:58+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Serbian latin <sr@latin@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/sv.po'
--- addons/view_graph/po/messages/sv.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/sv.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 18:58+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: sv <LL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== modified file 'addons/view_graph/po/messages/th.po'
--- addons/view_graph/po/messages/th.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/th.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/tr.po'
--- addons/view_graph/po/messages/tr.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/tr.po	2011-11-08 15:41:11 +0000
@@ -9,13 +9,13 @@
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2011-03-18 11:53+0100\n"
 "PO-Revision-Date: 2011-02-15 18:57+0000\n"
-"Last-Translator: Antony Lesuisse <al@xxxxxxxxxxx>\n"
+"Last-Translator: Antony Lesuisse (OpenERP) <al@xxxxxxxxxxx>\n"
 "Language-Team: Turkish <tr@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/view_graph/po/messages/uk.po'
--- addons/view_graph/po/messages/uk.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/uk.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 #: widgets/_views.py:8

=== modified file 'addons/view_graph/po/messages/zh_CN.po'
--- addons/view_graph/po/messages/zh_CN.po	2011-08-19 05:13:22 +0000
+++ addons/view_graph/po/messages/zh_CN.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 
 #: widgets/_views.py:8
 msgid "Graph"

=== modified file 'addons/widget_ckeditor/po/javascript/fr.po'
--- addons/widget_ckeditor/po/javascript/fr.po	2011-08-19 05:13:22 +0000
+++ addons/widget_ckeditor/po/javascript/fr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:11+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'addons/widget_ckeditor/po/messages/fr.po'
--- addons/widget_ckeditor/po/messages/fr.po	2011-08-19 05:13:22 +0000
+++ addons/widget_ckeditor/po/messages/fr.po	2011-11-08 15:41:11 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2011-08-19 05:12+0000\n"
-"X-Generator: Launchpad (build 13697)\n"
+"X-Launchpad-Export-Date: 2011-10-19 06:10+0000\n"
+"X-Generator: Launchpad (build 14157)\n"
 "Generated-By: Babel None\n"
 
 

=== modified file 'openobject/i18n/format.py'
--- openobject/i18n/format.py	2011-03-22 07:56:34 +0000
+++ openobject/i18n/format.py	2011-11-08 15:41:11 +0000
@@ -290,32 +290,113 @@
 
     return fixed_domain
 
-def format_decimal(value, digits=2):
+LOCALE_CACHE = {
+               'date_format':'%m/%d/%Y',
+               'time_format':'%H:%M:%S',
+               'grouping':[],
+               'decimal_point':'.',
+               'thousands_sep': ','
+                }
+
+def get_lang_float_format(locale_lang,monetary=False):
+    thousands_sep = LOCALE_CACHE.get('thousands_sep') or numbers.get_group_symbol(locale_lang)
+    decimal_point = LOCALE_CACHE.get('decimal_point')
+    grouping      = LOCALE_CACHE.get('grouping')
+    return (grouping, thousands_sep, decimal_point)
+
+
+def format_decimal(value, digits=2, grouping=True, monetary=False):
     locale = get_locale()
-    v = ("%%.%df" % digits) % value
-    if not digits:
-        return numbers.format_number(value, locale=locale)
-    num, decimals = v.split(".", 1)
-
-    if num == "-0":
-        val = "-0"
-    else:
-        val = numbers.format_number(int(num), locale=locale)
-
-    return val + unicode(numbers.get_decimal_symbol(locale) + decimals)
-
+    formatted = ("%%.%df" % digits) % value
+    lang_grouping, thousands_sep, decimal_point = get_lang_float_format(locale,monetary=False)
+    
+    seps = 0
+    parts = formatted.split('.')
+
+    if grouping:
+        parts[0], seps = group(parts[0], monetary=monetary, grouping=lang_grouping, thousands_sep=thousands_sep)
+
+    formatted = decimal_point.join(parts)
+    while seps:
+        sp = formatted.find(' ')
+        if sp == -1: break
+        formatted = formatted[:sp] + formatted[sp+1:]
+        seps -= 1
+    return formatted
+
+
+def group(value, monetary=False, grouping=False, thousands_sep=''):
+
+    """ This function will convert the value in appropriate format after applying
+        thousands_sep, grouping etc
+
+        @param value:The value to be converted
+        @param monetary:True or False by default False
+        @param grouping:True or False by default False
+        @param thousands_sep: The symbol to be applied at the thousand's place by default blank
+
+        @return: The converted value"""
+
+    grouping = eval(grouping)
+    if not grouping:
+        return (value, 0)
+
+    result = ""
+    seps = 0
+    spaces = ""
+
+    if value[-1] == ' ':
+        sp = value.find(' ')
+        spaces = value[sp:]
+        value = value[:sp]
+
+    while value and grouping:
+        # if grouping is -1, we are done
+        if grouping[0] == -1:
+            break
+        # 0: re-use last group ad infinitum
+        elif grouping[0] != 0:
+            #process last group
+            group = grouping[0]
+            grouping = grouping[1:]
+        if result:
+            result = value[-group:] + thousands_sep + result
+            seps += 1
+        else:
+            result = value[-group:]
+        value = value[:-group]
+        if value and value[-1] not in "0123456789":
+            # the leading string is only spaces and signs
+            return value + result + spaces, seps
+    if not result:
+        return value + spaces, seps
+    if value:
+        result = value + thousands_sep + result
+        seps += 1
+    return result + spaces, seps         
+        
+
+def set_locale_cache(lang_data={}):
+    try:
+        if lang_data:
+            if 'id' in lang_data:
+                del lang_data['id']
+            LOCALE_CACHE.update(lang_data)
+    except:
+        pass
+
+    
 def parse_decimal(value):
-
+    
+    locale = get_locale()
     if isinstance(value, basestring):
-
+        
         value = ustr(value)
-
+        
+        grouping, thousands_sep, decimal_point = get_lang_float_format(locale,monetary=False)
         #deal with ' ' instead of u'\xa0' (SP instead of NBSP as grouping char)
         value = value.replace(' ', '')
-        try:
-            value = numbers.parse_decimal(value, locale=get_locale())
-        except ValueError:
-            pass
+        value = value.replace(thousands_sep, '').replace(decimal_point, '.')
 
     if not isinstance(value, float):
         return float(value)


Follow ups