[MERGE] trunk

bzr revid: xmo@openerp.com-20111207091404-1zdmhmsnvhveq7c4
This commit is contained in:
Xavier Morel 2011-12-07 10:14:04 +01:00
commit edcbc3830e
160 changed files with 11613 additions and 3075 deletions

View File

@ -1,6 +1,11 @@
{ {
"name" : "web", "name" : "web",
"category" : "Hidden", "category": "Hidden",
"description":
"""
OpenERP Web core module.
This module provides the core of the OpenERP web client.
""",
"depends" : [], "depends" : [],
'active': True, 'active': True,
'post_load' : 'wsgi_postload', 'post_load' : 'wsgi_postload',

View File

@ -406,7 +406,7 @@ class Root(object):
params = urllib.urlencode(request.args) params = urllib.urlencode(request.args)
return werkzeug.utils.redirect(self.root + '?' + params, 301)( return werkzeug.utils.redirect(self.root + '?' + params, 301)(
environ, start_response) environ, start_response)
elif request.path == '/mobile': elif request.path == '/mobile' or ('#' in request.path):
return werkzeug.utils.redirect( return werkzeug.utils.redirect(
'/web_mobile/static/src/web_mobile.html', 301)(environ, start_response) '/web_mobile/static/src/web_mobile.html', 301)(environ, start_response)

View File

@ -16,7 +16,7 @@ class Xml2Json(object):
return Xml2Json.convert_element(root) return Xml2Json.convert_element(root)
@staticmethod @staticmethod
def convert_element(el, skip_whitespaces=True): def convert_element(el, preserve_whitespaces=False):
res = {} res = {}
if el.tag[0] == "{": if el.tag[0] == "{":
ns, name = el.tag.rsplit("}", 1) ns, name = el.tag.rsplit("}", 1)
@ -28,11 +28,11 @@ class Xml2Json(object):
for k, v in el.items(): for k, v in el.items():
res["attrs"][k] = v res["attrs"][k] = v
kids = [] kids = []
if el.text and (not skip_whitespaces or el.text.strip() != ''): if el.text and (preserve_whitespaces or el.text.strip() != ''):
kids.append(el.text) kids.append(el.text)
for kid in el: for kid in el:
kids.append(Xml2Json.convert_element(kid)) kids.append(Xml2Json.convert_element(kid, preserve_whitespaces))
if kid.tail and (not skip_whitespaces or kid.tail.strip() != ''): if kid.tail and (preserve_whitespaces or kid.tail.strip() != ''):
kids.append(kid.tail) kids.append(kid.tail)
res["children"] = kids res["children"] = kids
return res return res

View File

@ -786,12 +786,15 @@ class DataSet(openerpweb.Controller):
return Model.unlink(ids, req.session.eval_context(req.context)) return Model.unlink(ids, req.session.eval_context(req.context))
def call_common(self, req, model, method, args, domain_id=None, context_id=None): def call_common(self, req, model, method, args, domain_id=None, context_id=None):
domain = args[domain_id] if domain_id and len(args) - 1 >= domain_id else [] has_domain = domain_id is not None and domain_id < len(args)
context = args[context_id] if context_id and len(args) - 1 >= context_id else {} has_context = context_id is not None and context_id < len(args)
domain = args[domain_id] if has_domain else []
context = args[context_id] if has_context else {}
c, d = eval_context_and_domain(req.session, context, domain) c, d = eval_context_and_domain(req.session, context, domain)
if domain_id and len(args) - 1 >= domain_id: if has_domain:
args[domain_id] = d args[domain_id] = d
if context_id and len(args) - 1 >= context_id: if has_context:
args[context_id] = c args[context_id] = c
for i in xrange(len(args)): for i in xrange(len(args)):
@ -849,12 +852,12 @@ class View(openerpweb.Controller):
context = req.session.eval_context(req.context) context = req.session.eval_context(req.context)
fvg = Model.fields_view_get(view_id, view_type, context, toolbar, submenu) fvg = Model.fields_view_get(view_id, view_type, context, toolbar, submenu)
# todo fme?: check that we should pass the evaluated context here # todo fme?: check that we should pass the evaluated context here
self.process_view(req.session, fvg, context, transform) self.process_view(req.session, fvg, context, transform, (view_type == 'kanban'))
if toolbar and transform: if toolbar and transform:
self.process_toolbar(req, fvg['toolbar']) self.process_toolbar(req, fvg['toolbar'])
return fvg return fvg
def process_view(self, session, fvg, context, transform): def process_view(self, session, fvg, context, transform, preserve_whitespaces=False):
# depending on how it feels, xmlrpclib.ServerProxy can translate # depending on how it feels, xmlrpclib.ServerProxy can translate
# XML-RPC strings to ``str`` or ``unicode``. ElementTree does not # XML-RPC strings to ``str`` or ``unicode``. ElementTree does not
# enjoy unicode strings which can not be trivially converted to # enjoy unicode strings which can not be trivially converted to
@ -872,7 +875,7 @@ class View(openerpweb.Controller):
xml = self.transform_view(arch, session, evaluation_context) xml = self.transform_view(arch, session, evaluation_context)
else: else:
xml = ElementTree.fromstring(arch) xml = ElementTree.fromstring(arch)
fvg['arch'] = web.common.xml2json.Xml2Json.convert_element(xml) fvg['arch'] = web.common.xml2json.Xml2Json.convert_element(xml, preserve_whitespaces)
for field in fvg['fields'].itervalues(): for field in fvg['fields'].itervalues():
if field.get('views'): if field.get('views'):

View File

@ -7,54 +7,270 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-08 05:44+0000\n" "PO-Revision-Date: 2011-11-08 05:44+0000\n"
"Last-Translator: Ahmad Khayyat <Unknown>\n" "Last-Translator: Ahmad Khayyat <Unknown>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:49+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "إغلاق"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "إلغاء"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "تحذير، تم تحرير السجل، تعديلاتك سيتم تجاهلها" msgstr "تحذير، تم تحرير السجل، تعديلاتك سيتم تجاهلها"
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>    مزيداً من البحث...</em>" msgstr "<em>    مزيداً من البحث...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   إنشاء \"<strong>%s</strong>\"</em>" msgstr "<em>   إنشاء \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   إنشاء و تحرير...</em>" msgstr "<em>   إنشاء و تحرير...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "إنشاء"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "استيراد"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "تصدير"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "عليك إختيار سجل واحد علي الأقل." msgstr "عليك إختيار سجل واحد علي الأقل."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "تحذير" msgstr "تحذير"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "ترجمات" msgstr "ترجمات"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "حفظ" msgstr "حفظ"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "إغلاق"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -83,10 +299,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "جاري التحميل..." msgstr "جاري التحميل..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "إنشاء"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "إزالة" msgstr "إزالة"
@ -273,16 +485,8 @@ msgid "View#"
msgstr "View#" msgstr "View#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "حقول" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "عرض التسميات"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "روابط الشريط الجانبي"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -292,14 +496,6 @@ msgstr "حقل"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "ترجمة العرض"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "ترجمة الشريط الجانبي"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@ -321,29 +517,13 @@ msgid "Last"
msgstr "الأخير" msgstr "الأخير"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "حفظ و تحرير"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "إنشاء و تحرير"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "جديد"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "تكرار" msgstr "تكرار"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "للقراءة فقط/قابل للتحرير"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr ">>" msgstr ">>"
@ -368,17 +548,81 @@ msgstr "اضافة"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "أداة غير معالجة" msgstr "أداة غير معالجة"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "؟" msgstr "؟"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "تم" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -412,18 +656,34 @@ msgstr "حفظ كـ"
msgid "Clear" msgid "Clear"
msgstr "إفراغ" msgstr "إفراغ"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "مرشحات متقدمة" msgstr "مرشحات متقدمة"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- مرشحات --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- إجراءات --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "حفظ المرشح" msgstr "حفظ المرشح"
@ -440,6 +700,14 @@ msgstr "اسم المرشح:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(لاحظ أن أي مرشح بنفس الاسم سيتم إستبداله)" msgstr "(لاحظ أن أي مرشح بنفس الاسم سيتم إستبداله)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "يجب تطابق أي من الشروط التالية" msgstr "يجب تطابق أي من الشروط التالية"
@ -460,10 +728,6 @@ msgstr "إضافة شرط"
msgid "and" msgid "and"
msgstr "و" msgstr "و"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "إلغاء"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "حفظ و جديد" msgstr "حفظ و جديد"
@ -472,10 +736,6 @@ msgstr "حفظ و جديد"
msgid "Save & Close" msgid "Save & Close"
msgstr "حفظ و إغلاق" msgstr "حفظ و إغلاق"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "تصدير"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -556,10 +816,6 @@ msgstr "كلمة المرور الجديدة:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "تأكيد كلمة المرور:" msgstr "تأكيد كلمة المرور:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "استيراد"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "إستيراد ملف .CSV" msgstr "إستيراد ملف .CSV"

View File

@ -7,54 +7,270 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-24 12:45+0000\n" "PO-Revision-Date: 2011-11-24 12:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali <bn@li.org>\n" "Language-Team: Bengali <bn@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-25 05:35+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14376)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr ""
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr ""
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "" msgstr ""
@ -83,10 +299,6 @@ msgstr ""
msgid "Loading..." msgid "Loading..."
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "" msgstr ""
@ -271,15 +483,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -290,14 +494,6 @@ msgstr ""
msgid ":" msgid ":"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -319,29 +515,13 @@ msgid "Last"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "" msgstr ""
@ -366,16 +546,80 @@ msgstr ""
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -410,18 +654,34 @@ msgstr ""
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "" msgstr ""
@ -438,6 +698,14 @@ msgstr ""
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "" msgstr ""
@ -458,10 +726,6 @@ msgstr ""
msgid "and" msgid "and"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "" msgstr ""
@ -470,10 +734,6 @@ msgstr ""
msgid "Save & Close" msgid "Save & Close"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -550,10 +810,6 @@ msgstr ""
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "" msgstr ""

View File

@ -7,56 +7,272 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-08 21:58+0000\n" "PO-Revision-Date: 2011-11-08 21:58+0000\n"
"Last-Translator: Jonas Mortensen <Unknown>\n" "Last-Translator: Jonas Mortensen <Unknown>\n"
"Language-Team: Danish <da@li.org>\n" "Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:49+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Luk"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annullér"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Advarsel, registreringen er blevet ændret, dine ændringer vil derfor blive " "Advarsel, registreringen er blevet ændret, dine ændringer vil derfor blive "
"kasseret." "kasseret."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Søg efter mere....</em>" msgstr "<em>   Søg efter mere....</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Create \"<strong>%s</strong>\"</em>" msgstr "<em>   Create \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Opret og rediger...</em>" msgstr "<em>   Opret og rediger...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Opret"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importér"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Eksportér"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Du skal vælge mindst en registrering." msgstr "Du skal vælge mindst en registrering."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Advarsel" msgstr "Advarsel"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Oversættelser" msgstr "Oversættelser"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Gem" msgstr "Gem"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Luk"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -85,10 +301,6 @@ msgstr ","
msgid "Loading..." msgid "Loading..."
msgstr "Indlæser..." msgstr "Indlæser..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Opret"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Drop" msgstr "Drop"
@ -279,16 +491,8 @@ msgid "View#"
msgstr "View#" msgstr "View#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Felter" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Vis etiketter"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "Relaterede til Sidebare"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -298,14 +502,6 @@ msgstr "Felt"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Se oversættelse"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Oversæt sidebar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Slet" msgstr "Slet"
@ -327,29 +523,13 @@ msgid "Last"
msgstr "Sidste" msgstr "Sidste"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Gem & Rediger"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Opret & Rediger"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Ny"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplikér" msgstr "Duplikér"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Skrivebeskyttet/redigerbar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -374,17 +554,81 @@ msgstr "Tilføj"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Ubehandlet widget" msgstr "Ubehandlet widget"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Udført" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -418,18 +662,34 @@ msgstr "Gem Som"
msgid "Clear" msgid "Clear"
msgstr "Ryd" msgstr "Ryd"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Avanceret filtrering" msgstr "Avanceret filtrering"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtreringer --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Handlinger --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Gem filter" msgstr "Gem filter"
@ -446,6 +706,14 @@ msgstr "Filter Navn:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Et hvert filter med samme navn vil blive overskrevet)" msgstr "(Et hvert filter med samme navn vil blive overskrevet)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Enhver af de følgende betingelser skal være opfyldt" msgstr "Enhver af de følgende betingelser skal være opfyldt"
@ -466,10 +734,6 @@ msgstr "Tilføj betingelse"
msgid "and" msgid "and"
msgstr "og" msgstr "og"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annullér"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Gem & Ny" msgstr "Gem & Ny"
@ -478,10 +742,6 @@ msgstr "Gem & Ny"
msgid "Save & Close" msgid "Save & Close"
msgstr "Gem & Luk" msgstr "Gem & Luk"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Eksportér"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -562,10 +822,6 @@ msgstr "Ny adgangskode:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Bekræft adgangskode:" msgstr "Bekræft adgangskode:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importér"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importér en .CSV fil" msgstr "1. Importér en .CSV fil"

View File

@ -7,55 +7,271 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-10 20:59+0000\n" "PO-Revision-Date: 2011-12-03 10:42+0000\n"
"Last-Translator: Felix Schubert <Unknown>\n" "Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Schließen"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Abbrechen"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Achtung der Datensatz wurde bearbeitet, alle Änderungen werden verworfen!" "Achtung der Datensatz wurde bearbeitet, alle Änderungen werden verworfen!"
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Suche mehr...</em>" msgstr "<em>   Suche mehr...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Anlegen \"<strong>%s</strong>\"</em>" msgstr "<em>   Anlegen \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Anlegen und Bearbeiten...</em>" msgstr "<em>   Anlegen und Bearbeiten...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Erzeugen"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Import"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Export"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Sie müssen mindestens einen Datensatz auswählen" msgstr "Sie müssen mindestens einen Datensatz auswählen"
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Warnung!" msgstr "Warnung!"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Übersetzungen" msgstr "Übersetzungen"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Schließen"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -84,10 +300,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Lade..." msgstr "Lade..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Erzeugen"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Löschen" msgstr "Löschen"
@ -280,16 +492,8 @@ msgid "View#"
msgstr "Ansicht#" msgstr "Ansicht#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Felder" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Feldbeschreibung anzeigen"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "Seitenleiste bezieht sich auf"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -299,14 +503,6 @@ msgstr "Feld"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Übersetungsansicht"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Seitenleiste übersetzen"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -328,29 +524,13 @@ msgid "Last"
msgstr "Ende" msgstr "Ende"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Sichern & Bearbeiten"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Anlegen & Bearbeiten"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Neu"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Kopieren" msgstr "Kopieren"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Lesezugriff/Bearbeitbar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -373,6 +553,18 @@ msgstr "Hinzufügen"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "unbekanntes Oberflächenelement"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -380,12 +572,64 @@ msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "Nr." msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Abgeschlossen" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "Nr."
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -419,18 +663,34 @@ msgstr "Speichern unter"
msgid "Clear" msgid "Clear"
msgstr "Leeren" msgstr "Leeren"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Erweiterter Filter" msgstr "Erweiterter Filter"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filter --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Aktionen --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Filter speichern" msgstr "Filter speichern"
@ -447,6 +707,14 @@ msgstr "Filter Name:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Jeder existierende Filter mit dem selben Namen wird ersetzt)" msgstr "(Jeder existierende Filter mit dem selben Namen wird ersetzt)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Eine der folgenden Bedingungen muss zutreffen" msgstr "Eine der folgenden Bedingungen muss zutreffen"
@ -467,10 +735,6 @@ msgstr "Bedingung hinzufügen"
msgid "and" msgid "and"
msgstr "und" msgstr "und"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Abbrechen"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Speichern & Neu" msgstr "Speichern & Neu"
@ -479,10 +743,6 @@ msgstr "Speichern & Neu"
msgid "Save & Close" msgid "Save & Close"
msgstr "Speichern & Beenden" msgstr "Speichern & Beenden"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Export"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -563,10 +823,6 @@ msgstr "Neues Passwort:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Passwort bestätigen:" msgstr "Passwort bestätigen:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Import"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importiere eine .CSV Datei" msgstr "1. Importiere eine .CSV Datei"

View File

@ -7,55 +7,271 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 07:27+0000\n" "PO-Revision-Date: 2011-10-19 07:27+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n" "Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Cerrar"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Advertencia, el registro se ha modificado, los cambios serán descartados." "Advertencia, el registro se ha modificado, los cambios serán descartados."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Buscar más...</em>" msgstr "<em>   Buscar más...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Crear \"<strong>%s</strong>\"</em>" msgstr "<em>   Crear \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Crear y Editar...</em>" msgstr "<em>   Crear y Editar...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crear"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Debe seleccionar al menos un registro." msgstr "Debe seleccionar al menos un registro."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Advertencia" msgstr "Advertencia"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Traducciones" msgstr "Traducciones"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Cerrar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -84,10 +300,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Cargando…" msgstr "Cargando…"
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crear"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Eliminar" msgstr "Eliminar"
@ -280,16 +492,8 @@ msgid "View#"
msgstr "Vista#" msgstr "Vista#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Campos" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Ver etiquetas"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "Se relaciona con la barra lateral"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -299,14 +503,6 @@ msgstr "Campo"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Traducir vista"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Traducir barra lateral"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Borrar" msgstr "Borrar"
@ -328,29 +524,13 @@ msgid "Last"
msgstr "Último" msgstr "Último"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Guardar y Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Crear y Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Nuevo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" msgstr "Duplicar"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Sólo Lectura/Editable"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -375,17 +555,81 @@ msgstr "Añadir"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Widget no controlado" msgstr "Widget no controlado"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Hecho" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -419,18 +663,34 @@ msgstr "Guardar como"
msgid "Clear" msgid "Clear"
msgstr "Limpiar" msgstr "Limpiar"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Filtro Avanzado" msgstr "Filtro Avanzado"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtros --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Acciones --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Guardar Filtro" msgstr "Guardar Filtro"
@ -447,6 +707,14 @@ msgstr "Nombre del Filtro"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Cualquier filtro existente con el mismo nombre será reemplazado)" msgstr "(Cualquier filtro existente con el mismo nombre será reemplazado)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Cualquiera de las condiciones siguientes deben coincidir" msgstr "Cualquiera de las condiciones siguientes deben coincidir"
@ -467,10 +735,6 @@ msgstr "Añadir condición"
msgid "and" msgid "and"
msgstr "y" msgstr "y"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Guardar y Nuevo" msgstr "Guardar y Nuevo"
@ -479,10 +743,6 @@ msgstr "Guardar y Nuevo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Guardar y Cerrar" msgstr "Guardar y Cerrar"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -563,10 +823,6 @@ msgstr "Contraseña nueva:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Confirmar la contraseña:" msgstr "Confirmar la contraseña:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importar un archivo .CSV" msgstr "1. Importar un archivo .CSV"

View File

@ -7,55 +7,271 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 18:16+0000\n" "PO-Revision-Date: 2011-10-07 18:16+0000\n"
"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n" "Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n"
"Language-Team: Spanish (Ecuador) <es_EC@li.org>\n" "Language-Team: Spanish (Ecuador) <es_EC@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Cerrar"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Aviso, el registro ha sido modificado, sus cambios serán descartados." "Aviso, el registro ha sido modificado, sus cambios serán descartados."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Buscar Más...</em>" msgstr "<em>   Buscar Más...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Crear \"<strong>%s</strong>\"</em>" msgstr "<em>   Crear \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Crear y Editar...</em>" msgstr "<em>   Crear y Editar...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crear"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Debe seleccionar al menos un registro." msgstr "Debe seleccionar al menos un registro."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Advertencia" msgstr "Advertencia"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Traducciones" msgstr "Traducciones"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Cerrar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -84,10 +300,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Cargando..." msgstr "Cargando..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crear"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Borrar" msgstr "Borrar"
@ -280,16 +492,8 @@ msgid "View#"
msgstr "View#" msgstr "View#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Campos" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Ver etiquetas"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "Columna lateral relacionada"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -299,14 +503,6 @@ msgstr "Campo"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Traducir vista"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Traducir Barra lateral"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Eliminar" msgstr "Eliminar"
@ -328,29 +524,13 @@ msgid "Last"
msgstr "Último" msgstr "Último"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Grabar & Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Crear & Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Nuevo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" msgstr "Duplicar"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Sólo Lectura/Editable"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -375,17 +555,81 @@ msgstr "Agregar"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Wdiget no controlado" msgstr "Wdiget no controlado"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Realizado" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -419,18 +663,34 @@ msgstr "Guardar Como"
msgid "Clear" msgid "Clear"
msgstr "Limpiar" msgstr "Limpiar"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Filtro Avanzado" msgstr "Filtro Avanzado"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtros --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Acciones --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Guardar Filtro" msgstr "Guardar Filtro"
@ -447,6 +707,14 @@ msgstr "Nombre del Filtro:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Cualquier filtro existente con el mismo nombre será reemplazado)" msgstr "(Cualquier filtro existente con el mismo nombre será reemplazado)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Cualquiera de las siguientes condiciones debe coincidir" msgstr "Cualquiera de las siguientes condiciones debe coincidir"
@ -467,10 +735,6 @@ msgstr "Agregar condición"
msgid "and" msgid "and"
msgstr "y" msgstr "y"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Grabar & Nuevo" msgstr "Grabar & Nuevo"
@ -479,10 +743,6 @@ msgstr "Grabar & Nuevo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Grabar & Cerrar" msgstr "Grabar & Cerrar"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -563,10 +823,6 @@ msgstr "Nueva Password:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Confirmar Password:" msgstr "Confirmar Password:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importar a archivo .CSV" msgstr "1. Importar a archivo .CSV"

View File

@ -7,54 +7,270 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-10 18:30+0000\n" "PO-Revision-Date: 2011-10-10 18:30+0000\n"
"Last-Translator: Aare Vesi <Unknown>\n" "Last-Translator: Aare Vesi <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n" "Language-Team: Estonian <et@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr ""
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Tühista"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Loo"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Import"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Eksport"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Hoiatus" msgstr "Hoiatus"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Tõlked" msgstr "Tõlked"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Salvesta" msgstr "Salvesta"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "" msgstr ""
@ -83,10 +299,6 @@ msgstr ""
msgid "Loading..." msgid "Loading..."
msgstr "Laadimine..." msgstr "Laadimine..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Loo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Hülga" msgstr "Hülga"
@ -271,15 +483,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Väljad"
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -290,14 +494,6 @@ msgstr "Väli"
msgid ":" msgid ":"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Tõlke vaade"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Kustuta" msgstr "Kustuta"
@ -319,29 +515,13 @@ msgid "Last"
msgstr "Viimane" msgstr "Viimane"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid "Edit"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Salvesta & Muuda"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Loo & Muuda"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Uus"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Tee koopia" msgstr "Tee koopia"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "" msgstr ""
@ -366,18 +546,82 @@ msgstr "Lisa"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Done"
msgstr "Valmis"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
msgstr "Ava..." msgstr "Ava..."
@ -410,18 +654,34 @@ msgstr "Salvesta kui"
msgid "Clear" msgid "Clear"
msgstr "Tühjenda" msgstr "Tühjenda"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Täiustatud filter" msgstr "Täiustatud filter"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Salvesta filter" msgstr "Salvesta filter"
@ -438,6 +698,14 @@ msgstr ""
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "" msgstr ""
@ -458,10 +726,6 @@ msgstr "Lisa tingimus"
msgid "and" msgid "and"
msgstr "ja" msgstr "ja"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Tühista"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "" msgstr ""
@ -470,10 +734,6 @@ msgstr ""
msgid "Save & Close" msgid "Save & Close"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Eksport"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -550,10 +810,6 @@ msgstr "Uus salasõna:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Kinnita salasõna:" msgstr "Kinnita salasõna:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Import"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "" msgstr ""

View File

@ -7,55 +7,271 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-23 12:20+0000\n" "PO-Revision-Date: 2011-12-05 16:17+0000\n"
"Last-Translator: Xavier (Open ERP) <Unknown>\n" "Last-Translator: Xavier (Open ERP) <Unknown>\n"
"Language-Team: French <fr@li.org>\n" "Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Fermer"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Attention, l'enregistrement a été modifié, vos changements seront perdus." "Attention, l'enregistrement a été modifié, vos changements seront perdus."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Créer"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr "Rechercher: "
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Vous devez choisir au moins un enregistrement" msgstr "Vous devez choisir au moins un enregistrement"
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Attention" msgstr "Attention"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Traductions" msgstr "Traductions"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Enregistrer" msgstr "Enregistrer"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Fermer"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -84,10 +300,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Chargement..." msgstr "Chargement..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Créer"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "" msgstr ""
@ -272,15 +484,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -291,14 +495,6 @@ msgstr ""
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@ -320,29 +516,13 @@ msgid "Last"
msgstr "Dernier" msgstr "Dernier"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Enregistrer et éditer"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Créer et éditer"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Dupliquer" msgstr "Dupliquer"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -367,17 +547,81 @@ msgstr ""
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Terminé" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -411,18 +655,34 @@ msgstr ""
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "" msgstr ""
@ -439,6 +699,14 @@ msgstr ""
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "" msgstr ""
@ -459,10 +727,6 @@ msgstr ""
msgid "and" msgid "and"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "" msgstr ""
@ -471,10 +735,6 @@ msgstr ""
msgid "Save & Close" msgid "Save & Close"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -551,10 +811,6 @@ msgstr ""
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "" msgstr ""

View File

@ -7,54 +7,270 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 07:54+0000\n" "PO-Revision-Date: 2011-10-19 07:54+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n" "Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Pechar"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "Advertencia, o rexistro modificouse, os cambios serán descartados." msgstr "Advertencia, o rexistro modificouse, os cambios serán descartados."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Buscar máis...</em>" msgstr "<em>   Buscar máis...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Crear \"<strong>%s</strong>\"</em>" msgstr "<em>   Crear \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Crear e Editar...</em>" msgstr "<em>   Crear e Editar...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crear"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Debe seleccionar polo menos un rexistro." msgstr "Debe seleccionar polo menos un rexistro."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Advertencia" msgstr "Advertencia"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Traducións" msgstr "Traducións"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Gardar" msgstr "Gardar"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Pechar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -83,10 +299,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Cargando…" msgstr "Cargando…"
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crear"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Eliminar" msgstr "Eliminar"
@ -279,16 +491,8 @@ msgid "View#"
msgstr "Vista#" msgstr "Vista#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Campos" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Ver etiquetas"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "Relaciónase coa barra lateral"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -298,14 +502,6 @@ msgstr "Campo"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Traducir vista"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Traducir barra lateral"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Borrar" msgstr "Borrar"
@ -327,29 +523,13 @@ msgid "Last"
msgstr "Último" msgstr "Último"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Gardar e Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Crear e Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Novo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" msgstr "Duplicar"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Só Lectura/Editable"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -374,17 +554,81 @@ msgstr "Engadir"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Widget non controlado" msgstr "Widget non controlado"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Feito" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -418,18 +662,34 @@ msgstr "Gardar como"
msgid "Clear" msgid "Clear"
msgstr "Limpar" msgstr "Limpar"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Filtro Avanzado" msgstr "Filtro Avanzado"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtros --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Accións --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Gardar Filtro" msgstr "Gardar Filtro"
@ -446,6 +706,14 @@ msgstr "Nome do Filtro"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Calquer filtro existente co mesmo nome será reemplazado)" msgstr "(Calquer filtro existente co mesmo nome será reemplazado)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Calquera das condicións seguintes deben coincidir" msgstr "Calquera das condicións seguintes deben coincidir"
@ -466,10 +734,6 @@ msgstr "Engadir condición"
msgid "and" msgid "and"
msgstr "e" msgstr "e"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Gardar e Novo" msgstr "Gardar e Novo"
@ -478,10 +742,6 @@ msgstr "Gardar e Novo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Gardar e Pechar" msgstr "Gardar e Pechar"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -562,10 +822,6 @@ msgstr "Contrasinal nova:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Confirmar contrasinal:" msgstr "Confirmar contrasinal:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importar un arquivo .CSV" msgstr "1. Importar un arquivo .CSV"

933
addons/web/po/hr.po Normal file
View File

@ -0,0 +1,933 @@
# Croatian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-28 14:05+0000\n"
"Last-Translator: Goran Kliska <gkliska@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Zatvori"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Odustani"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid ""
"Warning, the record has been modified, your changes will be discarded."
msgstr "Upozorenje, zapis je promjenjen. Promjene se neće zapisati."
#: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>"
msgstr "<em>   Traži dalje...</em>"
#: addons/web/static/src/js/view_form.js:1893
#, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Kreiraj \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Kreiraj i uredi...</em>"
#: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Kreiraj"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Uvoz"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Izvoz"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record."
msgstr "Odaberite barem jedan zapis."
#: addons/web/static/src/js/views.js:703
msgid "Warning"
msgstr "Upozorenje"
#: addons/web/static/src/js/views.js:737
msgid "Translations"
msgstr "Prijevodi"
#: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save"
msgstr "Snimi"
#: addons/web/static/src/xml/base.xml:0
msgid "x"
msgstr "x"
#: addons/web/static/src/xml/base.xml:0
msgid "#{title}"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#{text}"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Powered by"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "openerp.com"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Loading..."
msgstr "Učitavanje..."
#: addons/web/static/src/xml/base.xml:0
msgid "Drop"
msgstr "Obriši"
#: addons/web/static/src/xml/base.xml:0
msgid "Backup"
msgstr "Arhiviranje/Backup"
#: addons/web/static/src/xml/base.xml:0
msgid "Restore"
msgstr "Obnovi"
#: addons/web/static/src/xml/base.xml:0
msgid "Password"
msgstr "Zaporka"
#: addons/web/static/src/xml/base.xml:0
msgid "Back to Login"
msgstr "Nazad na prijavu"
#: addons/web/static/src/xml/base.xml:0
msgid "CREATE DATABASE"
msgstr "Nova baza podataka"
#: addons/web/static/src/xml/base.xml:0
msgid "Master password:"
msgstr "Glavna zaporka"
#: addons/web/static/src/xml/base.xml:0
msgid "New database name:"
msgstr "Naziv nove baze podataka:"
#: addons/web/static/src/xml/base.xml:0
msgid "Load Demonstration data:"
msgstr "Učitaj demonstracijske podatke:"
#: addons/web/static/src/xml/base.xml:0
msgid "Default language:"
msgstr "Zadani jezik:"
#: addons/web/static/src/xml/base.xml:0
msgid "Admin password:"
msgstr "Lozinka administratora"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm password:"
msgstr "Potvrda lozinke:"
#: addons/web/static/src/xml/base.xml:0
msgid "DROP DATABASE"
msgstr "Briši bazu podataka"
#: addons/web/static/src/xml/base.xml:0
msgid "Database:"
msgstr "Baza podataka:"
#: addons/web/static/src/xml/base.xml:0
msgid "Master Password:"
msgstr "Glavna lozinka"
#: addons/web/static/src/xml/base.xml:0
msgid "BACKUP DATABASE"
msgstr "Backup baze podataka"
#: addons/web/static/src/xml/base.xml:0
msgid "RESTORE DATABASE"
msgstr "Obnovi bazu podatka (restore)"
#: addons/web/static/src/xml/base.xml:0
msgid "File:"
msgstr "Datoteka:"
#: addons/web/static/src/xml/base.xml:0
msgid "CHANGE MASTER PASSWORD"
msgstr "Promjeni glavnu zaporku"
#: addons/web/static/src/xml/base.xml:0
msgid "New master password:"
msgstr "Nova glavna zaporka:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm new master password:"
msgstr "Potvrdi glavnu zaporku:"
#: addons/web/static/src/xml/base.xml:0
msgid "User:"
msgstr "Korisnik:"
#: addons/web/static/src/xml/base.xml:0
msgid "Password:"
msgstr "Zaporka:"
#: addons/web/static/src/xml/base.xml:0
msgid "Database"
msgstr "Baza podataka"
#: addons/web/static/src/xml/base.xml:0
msgid "Login"
msgstr "Korisničko ime"
#: addons/web/static/src/xml/base.xml:0
msgid "Bad username or password"
msgstr "Neispravno korisničko ime ili lozinka"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"We think that daily job activities can be more intuitive, efficient, "
"automated, .. and even fun."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP's vision to be:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Full featured"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Today's enterprise challenges are multiple. We provide one module for each "
"need."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Open Source"
msgstr "Otvorenog koda"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"To Build a great product, we rely on the knowledge of thousands of "
"contributors."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "User Friendly"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"In order to be productive, people need clean and easy to use interface."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "("
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ")"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "LOGOUT"
msgstr "ODJAVA"
#: addons/web/static/src/xml/base.xml:0
msgid "&laquo;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "&raquo;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_menu_item"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_submenu_item"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Hide this tip"
msgstr "Sakrij savjet"
#: addons/web/static/src/xml/base.xml:0
msgid "Disable all tips"
msgstr "Sakrij sve savjete"
#: addons/web/static/src/xml/base.xml:0
msgid "View#"
msgstr "Pogled#"
#: addons/web/static/src/xml/base.xml:0
msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field"
msgstr "Polje"
#: addons/web/static/src/xml/base.xml:0
msgid ":"
msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Delete"
msgstr "Obriši"
#: addons/web/static/src/xml/base.xml:0
msgid "First"
msgstr "Prvi"
#: addons/web/static/src/xml/base.xml:0
msgid "<"
msgstr "<"
#: addons/web/static/src/xml/base.xml:0
msgid ">"
msgstr ">"
#: addons/web/static/src/xml/base.xml:0
msgid "Last"
msgstr "Posljednji"
#: addons/web/static/src/xml/base.xml:0
msgid "Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Duplicate"
msgstr "Dupliciraj"
#: addons/web/static/src/xml/base.xml:0
msgid "<<"
msgstr "<<"
#: addons/web/static/src/xml/base.xml:0
msgid "0"
msgstr "0"
#: addons/web/static/src/xml/base.xml:0
msgid "/"
msgstr "/"
#: addons/web/static/src/xml/base.xml:0
msgid ">>"
msgstr ">>"
#: addons/web/static/src/xml/base.xml:0
msgid "Add"
msgstr "Dodaj"
#: addons/web/static/src/xml/base.xml:0
msgid "Unhandled widget"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "?"
msgstr "?"
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0
msgid "Open..."
msgstr "Otvori…"
#: addons/web/static/src/xml/base.xml:0
msgid "Create..."
msgstr "Kreiraj..."
#: addons/web/static/src/xml/base.xml:0
msgid "Search..."
msgstr "Traži…"
#: addons/web/static/src/xml/base.xml:0
msgid "..."
msgstr "..."
#: addons/web/static/src/xml/base.xml:0
msgid "Uploading ..."
msgstr "Učitavanje..."
#: addons/web/static/src/xml/base.xml:0
msgid "Select"
msgstr "Odaberi"
#: addons/web/static/src/xml/base.xml:0
msgid "Save As"
msgstr "Spremi kao"
#: addons/web/static/src/xml/base.xml:0
msgid "Clear"
msgstr "Očisti"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter"
msgstr "Napredni filter"
#: addons/web/static/src/xml/base.xml:0
msgid "Save Filter"
msgstr "Spremi filter"
#: addons/web/static/src/xml/base.xml:0
msgid "Manage Filters"
msgstr "Uredi filtere"
#: addons/web/static/src/xml/base.xml:0
msgid "Filter Name:"
msgstr "Naziv"
#: addons/web/static/src/xml/base.xml:0
msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Zamjenit će postojeći filter istog naziva)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match"
msgstr "Barem jedan od uvjeta zadovoljava"
#: addons/web/static/src/xml/base.xml:0
msgid "All the following conditions must match"
msgstr "Svi uvjeti zadovoljavaju"
#: addons/web/static/src/xml/base.xml:0
msgid "None of the following conditions must match"
msgstr "Niti jedan od uvjeta zadovoljava"
#: addons/web/static/src/xml/base.xml:0
msgid "Add condition"
msgstr "Dodaj uvjet"
#: addons/web/static/src/xml/base.xml:0
msgid "and"
msgstr "i"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & New"
msgstr "Spremi i novi"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Close"
msgstr "Snimi i zatvori"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"This wizard will export all data that matches the current search criteria to "
"a CSV file.\n"
" You can export all data or only the fields that can be "
"reimported after modification."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export Type:"
msgstr "Vrsta izvoza:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import Compatible Export"
msgstr "Izvoz kompatibilan uvozu"
#: addons/web/static/src/xml/base.xml:0
msgid "Export all Data"
msgstr "Izvoz svih podataka"
#: addons/web/static/src/xml/base.xml:0
msgid "Export Formats"
msgstr "Formati izvoza"
#: addons/web/static/src/xml/base.xml:0
msgid "Available fields"
msgstr "Dostupna polja"
#: addons/web/static/src/xml/base.xml:0
msgid "Fields to export"
msgstr "Polja za izvoz"
#: addons/web/static/src/xml/base.xml:0
msgid "Save fields list"
msgstr "Snimi popis polja"
#: addons/web/static/src/xml/base.xml:0
msgid "Remove"
msgstr "Ukloni"
#: addons/web/static/src/xml/base.xml:0
msgid "Remove All"
msgstr "Ukloni sve"
#: addons/web/static/src/xml/base.xml:0
msgid "Name"
msgstr "Naziv"
#: addons/web/static/src/xml/base.xml:0
msgid "&nbsp;"
msgstr "&nbsp;"
#: addons/web/static/src/xml/base.xml:0
msgid "Save as:"
msgstr "Spremi kao:"
#: addons/web/static/src/xml/base.xml:0
msgid "Ok"
msgstr "U redu"
#: addons/web/static/src/xml/base.xml:0
msgid "Saved exports:"
msgstr "Snimljeni izvozi"
#: addons/web/static/src/xml/base.xml:0
msgid "Old Password:"
msgstr "Stara lozinka:"
#: addons/web/static/src/xml/base.xml:0
msgid "New Password:"
msgstr "Nova lozinka:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm Password:"
msgstr "Potvrda lozinke:"
#: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file"
msgstr "Uvezi .CSV datoteku"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Select a .CSV file to import. If you need a sample of file to import,\n"
" you should use the export tool with the \"Import Compatible\" option."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "CSV File:"
msgstr "CSV datoteka:"
#: addons/web/static/src/xml/base.xml:0
msgid "2. Check your file format"
msgstr "2. Provjera formata datoteke"
#: addons/web/static/src/xml/base.xml:0
msgid "Import Options"
msgstr "Opcije uvoza"
#: addons/web/static/src/xml/base.xml:0
msgid "Does your file have titles?"
msgstr "Datoteka ima naslove"
#: addons/web/static/src/xml/base.xml:0
msgid "Separator:"
msgstr "Razdjelnik:"
#: addons/web/static/src/xml/base.xml:0
msgid "Delimiter:"
msgstr "Graničnik:"
#: addons/web/static/src/xml/base.xml:0
msgid "Encoding:"
msgstr "Kodna stranica:"
#: addons/web/static/src/xml/base.xml:0
msgid "UTF-8"
msgstr "UTF-8"
#: addons/web/static/src/xml/base.xml:0
msgid "Latin 1"
msgstr "Latin 1"
#: addons/web/static/src/xml/base.xml:0
msgid "Lines to skip"
msgstr "Preskočiti linija"
#: addons/web/static/src/xml/base.xml:0
msgid "The import failed due to:"
msgstr "Uvoz nije izvršen:"
#: addons/web/static/src/xml/base.xml:0
msgid "Here is a preview of the file we could not import:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP Web"
msgstr "OpenERP Web"
#: addons/web/static/src/xml/base.xml:0
msgid "Version"
msgstr "Verzija"
#: addons/web/static/src/xml/base.xml:0
msgid "Copyright © 2011-TODAY OpenERP SA. All Rights Reserved."
msgstr "Copyright © 2011-TODAY OpenERP SA. All Rights Reserved."
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP is a trademark of the"
msgstr "OpenERP is a trademark of the"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP SA Company"
msgstr "OpenERP SA Company"
#: addons/web/static/src/xml/base.xml:0
msgid "Licenced under the terms of"
msgstr "Licenced under the terms of"
#: addons/web/static/src/xml/base.xml:0
msgid "GNU Affero General Public License"
msgstr "GNU Affero General Public License"
#: addons/web/static/src/xml/base.xml:0
msgid "About OpenERP"
msgstr "O OpenERP"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP"
msgstr "OpenERP"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"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..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
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 ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Depending on your needs, OpenERP is available through a web or application "
"client."
msgstr ""

View File

@ -7,56 +7,272 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-08 13:39+0000\n" "PO-Revision-Date: 2011-10-08 13:39+0000\n"
"Last-Translator: Nicola Riolini - Micronaet <Unknown>\n" "Last-Translator: Nicola Riolini - Micronaet <Unknown>\n"
"Language-Team: Italian <it@li.org>\n" "Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Chiudi"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annulla"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Attenzione, il record è stato modificato, i vostri cambiamenti verranno " "Attenzione, il record è stato modificato, i vostri cambiamenti verranno "
"scartati." "scartati."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Cerca ancora...</em>" msgstr "<em>   Cerca ancora...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Crea \"<strong>%s</strong>\"</em>" msgstr "<em>   Crea \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Crea e modifica...</em>" msgstr "<em>   Crea e modifica...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crea"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importa"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Esporta"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "E' necessario selezionare almeno un record." msgstr "E' necessario selezionare almeno un record."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Attenzione" msgstr "Attenzione"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Traduzioni" msgstr "Traduzioni"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Salva" msgstr "Salva"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Chiudi"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -85,10 +301,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Caricamento..." msgstr "Caricamento..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Crea"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Elimina" msgstr "Elimina"
@ -281,15 +493,7 @@ msgid "View#"
msgstr "Vista à" msgstr "Vista à"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Campi"
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Visualizza etichette"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -300,14 +504,6 @@ msgstr "Campo"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Traduci vista"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Traduci barra laterale"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
@ -329,29 +525,13 @@ msgid "Last"
msgstr "Ultimo" msgstr "Ultimo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Salva & Modifica"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Crea & Modifica"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Nuovo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplica" msgstr "Duplica"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Sola lettura / Modificabile"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -376,17 +556,81 @@ msgstr "Aggiungi"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Completato" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -420,18 +664,34 @@ msgstr "Salva come"
msgid "Clear" msgid "Clear"
msgstr "Pulisci" msgstr "Pulisci"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Filtro avanzato" msgstr "Filtro avanzato"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtri --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Azioni --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Salva Filtro" msgstr "Salva Filtro"
@ -448,6 +708,14 @@ msgstr "Nome filtro:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Eventuali filtri esistenti con lo stesso nome saranno rimpiazzati)" msgstr "(Eventuali filtri esistenti con lo stesso nome saranno rimpiazzati)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "" msgstr ""
@ -468,10 +736,6 @@ msgstr "Aggiungi condizione"
msgid "and" msgid "and"
msgstr "e" msgstr "e"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annulla"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Salva & Nuovo" msgstr "Salva & Nuovo"
@ -480,10 +744,6 @@ msgstr "Salva & Nuovo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Salva & Chiudi" msgstr "Salva & Chiudi"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Esporta"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -560,10 +820,6 @@ msgstr "Nuova password:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Conferma password:" msgstr "Conferma password:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importa"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importa un file .CSV" msgstr "1. Importa un file .CSV"

965
addons/web/po/nl.po Normal file
View File

@ -0,0 +1,965 @@
# Dutch translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-06 11:39+0000\n"
"Last-Translator: Douwe Wullink (Dypalio) <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-07 05:25+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Sluiten"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr "Bestand importeren"
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr "Externe ID"
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr "Filter regel"
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annuleren"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr "OK"
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr "Aan dashboard toevoegen"
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr "Ongeldige zoekopdracht"
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr "Onjuiste waarde bij veld %(fieldname)s: [%(value)s] is %(message)s"
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr "geen geldig geheel getal"
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr "geen geldig getal"
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr "bevat"
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr "bevat niet"
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr "is gelijk aan"
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr "is niet gelijk aan"
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr "is groter dan"
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr "kleiner dan"
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr "is groter of gelijk aan"
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr "is kleiner of gelijk aan"
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr "is"
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr "is niet"
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr "is waar"
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr "is onwaar"
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr "Wilt u deze weergave werkelijk verwijderen?"
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr "Wilt u dit knooppunt werkelijk verwijderen?"
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr "Wilt u dit record werkelijk verwijderen?"
#: addons/web/static/src/js/view_form.js:448
msgid ""
"Warning, the record has been modified, your changes will be discarded."
msgstr "Letop: het record is gewijzigd; uw wijzigingen gaan verloren."
#: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr "Bijlages"
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>"
msgstr "<em>   Zoek verder...</em>"
#: addons/web/static/src/js/view_form.js:1893
#, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Maak \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Maak en wijzig...</em>"
#: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Maken"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr "Onbeperkt"
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr "Wilt u deze records werkelijk verwijderen?"
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr "Onbepaald"
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr "Zoeken: "
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr "Aanpassen"
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr "Weergaven beheren"
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr "Weergaven van huidig object beheren"
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr "Workflow wijzigen"
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr "Object aanpassen"
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr "Vertalen"
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr "Technische vertaling"
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr "Overige opties"
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importeren"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exporteren"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr "Log bekijken"
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr "Overzichten"
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr "Acties"
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr "Verwijzingen"
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record."
msgstr "U moet tenminste één record kiezen."
#: addons/web/static/src/js/views.js:703
msgid "Warning"
msgstr "Waarschuwing"
#: addons/web/static/src/js/views.js:737
msgid "Translations"
msgstr "Vertalingen"
#: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save"
msgstr "Opslaan"
#: addons/web/static/src/xml/base.xml:0
msgid "x"
msgstr "x"
#: addons/web/static/src/xml/base.xml:0
msgid "#{title}"
msgstr "#{title}"
#: addons/web/static/src/xml/base.xml:0
msgid "#{text}"
msgstr "#{text}"
#: addons/web/static/src/xml/base.xml:0
msgid "Powered by"
msgstr "Powered by"
#: addons/web/static/src/xml/base.xml:0
msgid "openerp.com"
msgstr "openerp.com"
#: addons/web/static/src/xml/base.xml:0
msgid "."
msgstr "."
#: addons/web/static/src/xml/base.xml:0
msgid "Loading..."
msgstr "Laden..."
#: addons/web/static/src/xml/base.xml:0
msgid "Drop"
msgstr "Verwijderen"
#: addons/web/static/src/xml/base.xml:0
msgid "Backup"
msgstr "Backup"
#: addons/web/static/src/xml/base.xml:0
msgid "Restore"
msgstr "Terugzetten"
#: addons/web/static/src/xml/base.xml:0
msgid "Password"
msgstr "Wachtwoord"
#: addons/web/static/src/xml/base.xml:0
msgid "Back to Login"
msgstr "Terug naar aanmelding"
#: addons/web/static/src/xml/base.xml:0
msgid "CREATE DATABASE"
msgstr "DATABASE MAKEN"
#: addons/web/static/src/xml/base.xml:0
msgid "Master password:"
msgstr "Master wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "New database name:"
msgstr "Naam nieuwe database:"
#: addons/web/static/src/xml/base.xml:0
msgid "Load Demonstration data:"
msgstr "Demonstratiegegevens laden:"
#: addons/web/static/src/xml/base.xml:0
msgid "Default language:"
msgstr "Standaardtaal:"
#: addons/web/static/src/xml/base.xml:0
msgid "Admin password:"
msgstr "Admin wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm password:"
msgstr "Bevestig wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "DROP DATABASE"
msgstr "DATABASE VERWIJDEREN"
#: addons/web/static/src/xml/base.xml:0
msgid "Database:"
msgstr "Database:"
#: addons/web/static/src/xml/base.xml:0
msgid "Master Password:"
msgstr "Master wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "BACKUP DATABASE"
msgstr "DATABASE BACKUP"
#: addons/web/static/src/xml/base.xml:0
msgid "RESTORE DATABASE"
msgstr "DATABASE TERUGZETTEN"
#: addons/web/static/src/xml/base.xml:0
msgid "File:"
msgstr "Bestand:"
#: addons/web/static/src/xml/base.xml:0
msgid "CHANGE MASTER PASSWORD"
msgstr "MASTER WACHTWOORD WIJZIGEN"
#: addons/web/static/src/xml/base.xml:0
msgid "New master password:"
msgstr "Nieuw master wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm new master password:"
msgstr "Bevestig nieuw master wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "User:"
msgstr "Gebruiker:"
#: addons/web/static/src/xml/base.xml:0
msgid "Password:"
msgstr "Wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "Database"
msgstr "Database"
#: addons/web/static/src/xml/base.xml:0
msgid "Login"
msgstr "Aanmelden"
#: addons/web/static/src/xml/base.xml:0
msgid "Bad username or password"
msgstr "Verkeerde gebruikersnaam of wachtwoord"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"We think that daily job activities can be more intuitive, efficient, "
"automated, .. and even fun."
msgstr ""
"Wij denken dat dagelijks werk intuïtiever, efficiënter, automatischer kan "
"zijn, ...en zelfs leuk."
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP's vision to be:"
msgstr "OpenERP's visie is:"
#: addons/web/static/src/xml/base.xml:0
msgid "Full featured"
msgstr "Uitgebreide functionaliteit"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Today's enterprise challenges are multiple. We provide one module for each "
"need."
msgstr ""
"Bedrijven kennen vandaag de dag veel uitdagingen. We hebben een module voor "
"elke behoefte."
#: addons/web/static/src/xml/base.xml:0
msgid "Open Source"
msgstr "Open Source"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"To Build a great product, we rely on the knowledge of thousands of "
"contributors."
msgstr ""
"Om een prima product te bouwen, rekenen we op de kennis van duizenden "
"bijdragers."
#: addons/web/static/src/xml/base.xml:0
msgid "User Friendly"
msgstr "Gebruikersvriendelijk"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"In order to be productive, people need clean and easy to use interface."
msgstr ""
"Om productief te zijn hebben mensen een net en simpel gebruikersinterface "
"nodig."
#: addons/web/static/src/xml/base.xml:0
msgid "("
msgstr "("
#: addons/web/static/src/xml/base.xml:0
msgid ")"
msgstr ")"
#: addons/web/static/src/xml/base.xml:0
msgid "LOGOUT"
msgstr "AFMELDEN"
#: addons/web/static/src/xml/base.xml:0
msgid "&laquo;"
msgstr "&laquo;"
#: addons/web/static/src/xml/base.xml:0
msgid "&raquo;"
msgstr "&raquo;"
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_menu_item"
msgstr "oe_secondary_menu_item"
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_submenu_item"
msgstr "oe_secondary_submenu_item"
#: addons/web/static/src/xml/base.xml:0
msgid "Hide this tip"
msgstr "Verberg deze tip"
#: addons/web/static/src/xml/base.xml:0
msgid "Disable all tips"
msgstr "Alle tips uitzetten"
#: addons/web/static/src/xml/base.xml:0
msgid "View#"
msgstr "View#"
#: addons/web/static/src/xml/base.xml:0
msgid "More…"
msgstr "Meer..."
#: addons/web/static/src/xml/base.xml:0
msgid "Field"
msgstr "Veld"
#: addons/web/static/src/xml/base.xml:0
msgid ":"
msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Delete"
msgstr "Verwijderen"
#: addons/web/static/src/xml/base.xml:0
msgid "First"
msgstr "Eerste"
#: addons/web/static/src/xml/base.xml:0
msgid "<"
msgstr "<"
#: addons/web/static/src/xml/base.xml:0
msgid ">"
msgstr ">"
#: addons/web/static/src/xml/base.xml:0
msgid "Last"
msgstr "Laatste"
#: addons/web/static/src/xml/base.xml:0
msgid "Edit"
msgstr "Wijzigen"
#: addons/web/static/src/xml/base.xml:0
msgid "Duplicate"
msgstr "Dupliceren"
#: addons/web/static/src/xml/base.xml:0
msgid "<<"
msgstr "<<"
#: addons/web/static/src/xml/base.xml:0
msgid "0"
msgstr "0"
#: addons/web/static/src/xml/base.xml:0
msgid "/"
msgstr "/"
#: addons/web/static/src/xml/base.xml:0
msgid ">>"
msgstr ">>"
#: addons/web/static/src/xml/base.xml:0
msgid "Add"
msgstr "Toevoegen"
#: addons/web/static/src/xml/base.xml:0
msgid "Unhandled widget"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr "\""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "?"
msgstr "?"
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr "(nolabel)"
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr "Veld:"
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr "Object:"
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr "Soort:"
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr "Widget:"
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr "Grootte:"
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr "Context:"
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr "Domein:"
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr "On change:"
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr "Relatie:"
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr "Selectie:"
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr "["
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr "]"
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr "-"
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0
msgid "Open..."
msgstr "Openen..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create..."
msgstr "Aanmaken…"
#: addons/web/static/src/xml/base.xml:0
msgid "Search..."
msgstr "Zoeken…"
#: addons/web/static/src/xml/base.xml:0
msgid "..."
msgstr "..."
#: addons/web/static/src/xml/base.xml:0
msgid "Uploading ..."
msgstr "Uploaden ..."
#: addons/web/static/src/xml/base.xml:0
msgid "Select"
msgstr "Selecteren"
#: addons/web/static/src/xml/base.xml:0
msgid "Save As"
msgstr "Opslaan als"
#: addons/web/static/src/xml/base.xml:0
msgid "Clear"
msgstr "Wissen"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr "Button"
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr "(no string)"
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr "Special:"
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr "Button Type:"
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr "Method:"
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr "Action ID:"
#: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter"
msgstr "Geavanceerd filter"
#: addons/web/static/src/xml/base.xml:0
msgid "Save Filter"
msgstr "Filter opslaan"
#: addons/web/static/src/xml/base.xml:0
msgid "Manage Filters"
msgstr "Filters beheren"
#: addons/web/static/src/xml/base.xml:0
msgid "Filter Name:"
msgstr "Filternaam:"
#: addons/web/static/src/xml/base.xml:0
msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Een bestaand filter met dezelfde naam wordt vervangen)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr "Selecteer Dashboard om dit filter aan toe te voegen:"
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr "Titel van nieuw dashboard item:"
#: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match"
msgstr "Één van de volgende voorwaarden moet voldoen"
#: addons/web/static/src/xml/base.xml:0
msgid "All the following conditions must match"
msgstr "Alle volgende voorwaarden moeten voldoen"
#: addons/web/static/src/xml/base.xml:0
msgid "None of the following conditions must match"
msgstr "Geen van de volgende voorwaarden mag voldoen"
#: addons/web/static/src/xml/base.xml:0
msgid "Add condition"
msgstr "Voorwaarde toevoegen"
#: addons/web/static/src/xml/base.xml:0
msgid "and"
msgstr "en"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & New"
msgstr "Opslaan & Nieuw"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Close"
msgstr "Opslaan & Sluiten"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"This wizard will export all data that matches the current search criteria to "
"a CSV file.\n"
" You can export all data or only the fields that can be "
"reimported after modification."
msgstr ""
"Deze assistent exporteert alle gegevens die aan de huidige zoekcriteria "
"voldoen naar een CSV bestand.\n"
" U kunt alle gegevens exporteren of alleen de velden die na "
"wijziging opnieuw kunnen worden geïmporteerd."
#: addons/web/static/src/xml/base.xml:0
msgid "Export Type:"
msgstr "Soort export:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import Compatible Export"
msgstr "Import compatibele export"
#: addons/web/static/src/xml/base.xml:0
msgid "Export all Data"
msgstr "Alle gegevens exporteren"
#: addons/web/static/src/xml/base.xml:0
msgid "Export Formats"
msgstr "Export Formaten"
#: addons/web/static/src/xml/base.xml:0
msgid "Available fields"
msgstr "Beschikbare velden"
#: addons/web/static/src/xml/base.xml:0
msgid "Fields to export"
msgstr "Te exporteren velden"
#: addons/web/static/src/xml/base.xml:0
msgid "Save fields list"
msgstr "Veldenlijst opslaan"
#: addons/web/static/src/xml/base.xml:0
msgid "Remove"
msgstr "Verwijderen"
#: addons/web/static/src/xml/base.xml:0
msgid "Remove All"
msgstr "Alles verwijderen"
#: addons/web/static/src/xml/base.xml:0
msgid "Name"
msgstr "Naam"
#: addons/web/static/src/xml/base.xml:0
msgid "&nbsp;"
msgstr "&nbsp;"
#: addons/web/static/src/xml/base.xml:0
msgid "Save as:"
msgstr "Opslaan als:"
#: addons/web/static/src/xml/base.xml:0
msgid "Ok"
msgstr "Ok"
#: addons/web/static/src/xml/base.xml:0
msgid "Saved exports:"
msgstr "Opgeslagen exports:"
#: addons/web/static/src/xml/base.xml:0
msgid "Old Password:"
msgstr "Oud wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "New Password:"
msgstr "Nieuw wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm Password:"
msgstr "Bevestig wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file"
msgstr "1. Importeer een .CSV bestand"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Select a .CSV file to import. If you need a sample of file to import,\n"
" you should use the export tool with the \"Import Compatible\" option."
msgstr ""
"Selecteer een .CSV bestand voor import. Voor een voorbeeld van een "
"importbestand,\n"
" kunt u de export tool gebruiken met de \"Import Compatibel\" optie."
#: addons/web/static/src/xml/base.xml:0
msgid "CSV File:"
msgstr "CSV bestand:"
#: addons/web/static/src/xml/base.xml:0
msgid "2. Check your file format"
msgstr "2. Controleer uw bestandsformaat"
#: addons/web/static/src/xml/base.xml:0
msgid "Import Options"
msgstr "Importeeropties"
#: addons/web/static/src/xml/base.xml:0
msgid "Does your file have titles?"
msgstr "Heeft uw bestand titels?"
#: addons/web/static/src/xml/base.xml:0
msgid "Separator:"
msgstr "Scheidingsteken:"
#: addons/web/static/src/xml/base.xml:0
msgid "Delimiter:"
msgstr "Veldscheidingsteken:"
#: addons/web/static/src/xml/base.xml:0
msgid "Encoding:"
msgstr "Codering:"
#: addons/web/static/src/xml/base.xml:0
msgid "UTF-8"
msgstr "UTF-8"
#: addons/web/static/src/xml/base.xml:0
msgid "Latin 1"
msgstr "Latin 1"
#: addons/web/static/src/xml/base.xml:0
msgid "Lines to skip"
msgstr "Regels om over te slaan"
#: addons/web/static/src/xml/base.xml:0
msgid "The import failed due to:"
msgstr "Importeren mislukt wegens:"
#: addons/web/static/src/xml/base.xml:0
msgid "Here is a preview of the file we could not import:"
msgstr "Hier is een voorbeeld van het bestand dat we niet konden importeren:"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP Web"
msgstr "OpenERP Web"
#: addons/web/static/src/xml/base.xml:0
msgid "Version"
msgstr "Versie"
#: addons/web/static/src/xml/base.xml:0
msgid "Copyright © 2011-TODAY OpenERP SA. All Rights Reserved."
msgstr "Copyright © 2011-VANDAAG OpenERP SA. Alle rechten voorbehouden."
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP is a trademark of the"
msgstr "OpenERP is een handelsmerk van"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP SA Company"
msgstr "OpenERP SA"
#: addons/web/static/src/xml/base.xml:0
msgid "Licenced under the terms of"
msgstr "Gelicentieerd onder voorwaarden van"
#: addons/web/static/src/xml/base.xml:0
msgid "GNU Affero General Public License"
msgstr "GNU Affero General Public License"
#: addons/web/static/src/xml/base.xml:0
msgid "About OpenERP"
msgstr "Over OpenERP"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP"
msgstr "OpenERP"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"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..."
msgstr ""
"is een vrij verkrijgbaar bedrijfsniveau software pakket dat is ontworpen om "
"uw productiviteit\n"
" en winst te verhogen door data integratie. Het verbindt, "
"verbetert en beheert\n"
" bedrijfsprocessen op gebieden zoals verkoop, financiën, inkoop, "
"project management,\n"
" productie, diensten, CRM, etc..."
#: addons/web/static/src/xml/base.xml:0
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 ""
"Het systeem is platform-onafhankelijk, and kan geïnstalleerd worden op "
"Windows, Mac OS X,\n"
" en verschillende Linux en andere Unix-achtige distributies. Haar "
"architectuur maakt het\n"
" mogelijk om snel nieuwe functionaliteit te maken, wijzigingen "
"aan te brengen aan een \n"
" productie systeem en migraties naar een nieuwe versie eenvoudig "
"te houden."
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Depending on your needs, OpenERP is available through a web or application "
"client."
msgstr ""
"Naar behoefte is OpenERP als webapplicatie of als client-serverapplicatie "
"beschikbaar."

View File

@ -7,56 +7,272 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 12:50+0000\n" "PO-Revision-Date: 2011-10-07 12:50+0000\n"
"Last-Translator: Niels Huylebroeck <Unknown>\n" "Last-Translator: Niels Huylebroeck <Unknown>\n"
"Language-Team: Dutch (Belgium) <nl_BE@li.org>\n" "Language-Team: Dutch (Belgium) <nl_BE@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Sluiten"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annuleren"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Opgelet, het record werd gewijzigd, uw veranderingen zullen niet opgeslagen " "Opgelet, het record werd gewijzigd, uw veranderingen zullen niet opgeslagen "
"worden." "worden."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Uitgebreid zoeken...</em>" msgstr "<em>   Uitgebreid zoeken...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Creër \"<strong>%s</strong>\"</em>" msgstr "<em>   Creër \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Creër en bewerk...</em>" msgstr "<em>   Creër en bewerk...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Creër"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importeren"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exporteren"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "U moet minstens een record selecteren." msgstr "U moet minstens een record selecteren."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Waarschuwing" msgstr "Waarschuwing"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Vertalingen" msgstr "Vertalingen"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Opslaan" msgstr "Opslaan"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Sluiten"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -85,10 +301,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Laden..." msgstr "Laden..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Creër"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Drop" msgstr "Drop"
@ -281,15 +493,7 @@ msgid "View#"
msgstr "View#" msgstr "View#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Velden"
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Toon labels"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -300,14 +504,6 @@ msgstr "Veld"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Vertaal scherm"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Vertaal balk"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Verwijder" msgstr "Verwijder"
@ -329,29 +525,13 @@ msgid "Last"
msgstr "Laatste" msgstr "Laatste"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Opslaan & Bewerken"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Creër & Bewerk"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Nieuw"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Dupliceer" msgstr "Dupliceer"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -376,17 +556,81 @@ msgstr "Toevoegen"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Niet-verwerkbare widget" msgstr "Niet-verwerkbare widget"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Voltooid" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -420,18 +664,34 @@ msgstr "Opslaan als"
msgid "Clear" msgid "Clear"
msgstr "Leegmaken" msgstr "Leegmaken"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Geavanceerde filter" msgstr "Geavanceerde filter"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filters --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Acties --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Filter opslaan" msgstr "Filter opslaan"
@ -448,6 +708,14 @@ msgstr "Filternaam:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Bestaande filters met dezelfde naam worden overschreven)" msgstr "(Bestaande filters met dezelfde naam worden overschreven)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Een van de volgende voorwaarden moet overeenstemmen" msgstr "Een van de volgende voorwaarden moet overeenstemmen"
@ -468,10 +736,6 @@ msgstr "Voorwaarde toevoegen"
msgid "and" msgid "and"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Annuleren"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Opslaan & Nieuwe" msgstr "Opslaan & Nieuwe"
@ -480,10 +744,6 @@ msgstr "Opslaan & Nieuwe"
msgid "Save & Close" msgid "Save & Close"
msgstr "Opslaan & Sluiten" msgstr "Opslaan & Sluiten"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exporteren"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -560,10 +820,6 @@ msgstr "Nieuw wachtwoord:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Bevestig wachtwoord:" msgstr "Bevestig wachtwoord:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importeren"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importeer een .CSV bestand" msgstr "1. Importeer een .CSV bestand"

View File

@ -7,54 +7,270 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-04 16:44+0000\n" "PO-Revision-Date: 2011-11-04 16:44+0000\n"
"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\n"
"Language-Team: Polish <pl@li.org>\n" "Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Zamknij"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Anuluj"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "Uwaga, rekord został zmodyfikowany, twoje zmiany zostaną odrzucone." msgstr "Uwaga, rekord został zmodyfikowany, twoje zmiany zostaną odrzucone."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Szukaj dalej...</em>" msgstr "<em>   Szukaj dalej...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Utwórz \"<strong>%s</strong>\"</em>" msgstr "<em>   Utwórz \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Utwórz i edytuj...</em>" msgstr "<em>   Utwórz i edytuj...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Utwórz"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importuj"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Eksportuj"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Musisz wybrac co najmniej jeden rekord." msgstr "Musisz wybrac co najmniej jeden rekord."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Ostrzeżenie" msgstr "Ostrzeżenie"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Tłumaczenia" msgstr "Tłumaczenia"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Zapisz" msgstr "Zapisz"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Zamknij"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "" msgstr ""
@ -83,10 +299,6 @@ msgstr ""
msgid "Loading..." msgid "Loading..."
msgstr "Wczytywanie..." msgstr "Wczytywanie..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Utwórz"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Usuń bazę danych" msgstr "Usuń bazę danych"
@ -274,15 +486,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Pola"
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Pokaż etykiety"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -293,14 +497,6 @@ msgstr "Pole"
msgid ":" msgid ":"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Przetłumacz widok"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Usuń" msgstr "Usuń"
@ -322,29 +518,13 @@ msgid "Last"
msgstr "Ostatnie" msgstr "Ostatnie"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid "Edit"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Zapisz i edytuj"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Utwórz i edytuj"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Nowy"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplikuj" msgstr "Duplikuj"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Tylko odczyt/Edytowalne"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "" msgstr ""
@ -369,18 +549,82 @@ msgstr "Dodaj"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Done"
msgstr "Wykonano"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
msgstr "Otwórz..." msgstr "Otwórz..."
@ -413,18 +657,34 @@ msgstr "Zapisz jako"
msgid "Clear" msgid "Clear"
msgstr "Wyczyść" msgstr "Wyczyść"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Zaawansowany filtr" msgstr "Zaawansowany filtr"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtry --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Akcje --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Zapisz filtr" msgstr "Zapisz filtr"
@ -441,6 +701,14 @@ msgstr "Nazwa filtra:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Każdy filtr o tej samej nazwie zostanie zamazany)" msgstr "(Każdy filtr o tej samej nazwie zostanie zamazany)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Jeden z tych warunków musi być spełniony" msgstr "Jeden z tych warunków musi być spełniony"
@ -461,10 +729,6 @@ msgstr "Dodaj warunek"
msgid "and" msgid "and"
msgstr "i" msgstr "i"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Anuluj"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Zapisz i nowy" msgstr "Zapisz i nowy"
@ -473,10 +737,6 @@ msgstr "Zapisz i nowy"
msgid "Save & Close" msgid "Save & Close"
msgstr "Zapisz i zamknij" msgstr "Zapisz i zamknij"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Eksportuj"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -557,10 +817,6 @@ msgstr "Nowe hasło:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Potwierdź hasło:" msgstr "Potwierdź hasło:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importuj"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importuj plik .CSV" msgstr "1. Importuj plik .CSV"

View File

@ -7,55 +7,271 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-21 22:22+0000\n" "PO-Revision-Date: 2011-11-21 22:22+0000\n"
"Last-Translator: Daniel Reis <Unknown>\n" "Last-Translator: Daniel Reis <Unknown>\n"
"Language-Team: Portuguese <pt@li.org>\n" "Language-Team: Portuguese <pt@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-22 05:13+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Fechar"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Atenção, o o registo foi modificado, as suas alterações serão descartadas." "Atenção, o o registo foi modificado, as suas alterações serão descartadas."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Criar"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Escolha pelo menos um registo." msgstr "Escolha pelo menos um registo."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Aviso" msgstr "Aviso"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Traduções" msgstr "Traduções"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Fechar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -84,10 +300,6 @@ msgstr ""
msgid "Loading..." msgid "Loading..."
msgstr "A carregar ..." msgstr "A carregar ..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Criar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Excluir" msgstr "Excluir"
@ -280,15 +492,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Campos"
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Ver etiquetas"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -299,14 +503,6 @@ msgstr "Campo"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Traduzir vista"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Traduzir barra lateral"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@ -328,29 +524,13 @@ msgid "Last"
msgstr "Último" msgstr "Último"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Gravar & Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Criar & Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Novo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" msgstr "Duplicar"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -375,17 +555,81 @@ msgstr "Acrescentar"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Widget não tratado" msgstr "Widget não tratado"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Concluído" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -419,18 +663,34 @@ msgstr "Guardar como"
msgid "Clear" msgid "Clear"
msgstr "Limpar" msgstr "Limpar"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Filtro avançados" msgstr "Filtro avançados"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtros --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Ações --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Guardar filtro" msgstr "Guardar filtro"
@ -447,6 +707,14 @@ msgstr "Nome do filtro:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(filtros existentes com esse nome serão substituídos)" msgstr "(filtros existentes com esse nome serão substituídos)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Deve satisfazer alguma das seguintes condições" msgstr "Deve satisfazer alguma das seguintes condições"
@ -467,10 +735,6 @@ msgstr "Acrescentar condição"
msgid "and" msgid "and"
msgstr "e" msgstr "e"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Guardar & Novo" msgstr "Guardar & Novo"
@ -479,10 +743,6 @@ msgstr "Guardar & Novo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Guardar & Fechar" msgstr "Guardar & Fechar"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -559,10 +819,6 @@ msgstr "Nova senha:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Confirme a senha:" msgstr "Confirme a senha:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Importar um ficheiro .CSV" msgstr "1. Importar um ficheiro .CSV"

View File

@ -7,54 +7,270 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-12 18:57+0000\n" "PO-Revision-Date: 2011-11-12 18:57+0000\n"
"Last-Translator: Cristiano Gavião <Unknown>\n" "Last-Translator: Cristiano Gavião <Unknown>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Fechar"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "Aviso, o registro foi modificado, suas alterações serão descartadas." msgstr "Aviso, o registro foi modificado, suas alterações serão descartadas."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Procurar Mais...</em>" msgstr "<em>   Procurar Mais...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Criar"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Fechar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "" msgstr ""
@ -83,10 +299,6 @@ msgstr ""
msgid "Loading..." msgid "Loading..."
msgstr "Carregando..." msgstr "Carregando..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Criar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Soltar" msgstr "Soltar"
@ -277,15 +489,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -296,14 +500,6 @@ msgstr ""
msgid ":" msgid ":"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Visão de Tradução"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Excluir" msgstr "Excluir"
@ -325,29 +521,13 @@ msgid "Last"
msgstr "Último" msgstr "Último"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid "Edit"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Salvar & Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Criar & Editar"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Novo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" msgstr "Duplicar"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Apenas Leitura/Editável"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "" msgstr ""
@ -372,18 +552,82 @@ msgstr "Adicionar"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Done"
msgstr "Concluído"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
msgstr "Abrir..." msgstr "Abrir..."
@ -416,18 +660,34 @@ msgstr "Salvar como"
msgid "Clear" msgid "Clear"
msgstr "Limpar" msgstr "Limpar"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Filtro Avançado" msgstr "Filtro Avançado"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtros --"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Ações --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Salvar filtro" msgstr "Salvar filtro"
@ -444,6 +704,14 @@ msgstr "Nome do Filtro"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Qualquer filtro existente com o mesmo nome será substituído)" msgstr "(Qualquer filtro existente com o mesmo nome será substituído)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Qualquer das seguintes condições deve ser verdadeira" msgstr "Qualquer das seguintes condições deve ser verdadeira"
@ -464,10 +732,6 @@ msgstr "Adicionar condição"
msgid "and" msgid "and"
msgstr "e" msgstr "e"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Cancelar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Salvar & Novo" msgstr "Salvar & Novo"
@ -476,10 +740,6 @@ msgstr "Salvar & Novo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Salvar & Fechar" msgstr "Salvar & Fechar"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Exportar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -556,10 +816,6 @@ msgstr "Nova Senha:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Importar"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "Importar um arquivo CSV." msgstr "Importar um arquivo CSV."

933
addons/web/po/ru.po Normal file
View File

@ -0,0 +1,933 @@
# Russian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-06 08:05+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Russian <ru@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-07 05:25+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr ""
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid ""
"Warning, the record has been modified, your changes will be discarded."
msgstr ""
#: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>"
msgstr ""
#: addons/web/static/src/js/view_form.js:1893
#, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr ""
#: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>"
msgstr ""
#: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr ""
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record."
msgstr ""
#: addons/web/static/src/js/views.js:703
msgid "Warning"
msgstr ""
#: addons/web/static/src/js/views.js:737
msgid "Translations"
msgstr ""
#: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "x"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#{title}"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#{text}"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Powered by"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "openerp.com"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Loading..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Drop"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Backup"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Restore"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Password"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Back to Login"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "CREATE DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Master password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "New database name:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Load Demonstration data:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Default language:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Admin password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "DROP DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Database:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Master Password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "BACKUP DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "RESTORE DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "File:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "CHANGE MASTER PASSWORD"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "New master password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm new master password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "User:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Database"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Login"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Bad username or password"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"We think that daily job activities can be more intuitive, efficient, "
"automated, .. and even fun."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP's vision to be:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Full featured"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Today's enterprise challenges are multiple. We provide one module for each "
"need."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Open Source"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"To Build a great product, we rely on the knowledge of thousands of "
"contributors."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "User Friendly"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"In order to be productive, people need clean and easy to use interface."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "("
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ")"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "LOGOUT"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "&laquo;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "&raquo;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_menu_item"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_submenu_item"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Hide this tip"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Disable all tips"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View#"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ":"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Delete"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "First"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "<"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ">"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Last"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Duplicate"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "<<"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "0"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "/"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ">>"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Add"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Unhandled widget"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "?"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Open..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Create..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Search..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Uploading ..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Select"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save As"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Clear"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save Filter"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Manage Filters"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Filter Name:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(Any existing filter with the same name will be replaced)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "All the following conditions must match"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "None of the following conditions must match"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Add condition"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "and"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & New"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Close"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"This wizard will export all data that matches the current search criteria to "
"a CSV file.\n"
" You can export all data or only the fields that can be "
"reimported after modification."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Import Compatible Export"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export all Data"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export Formats"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Available fields"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Fields to export"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save fields list"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Remove"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Remove All"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Name"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save as:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Ok"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Saved exports:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Old Password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "New Password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm Password:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Select a .CSV file to import. If you need a sample of file to import,\n"
" you should use the export tool with the \"Import Compatible\" option."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "CSV File:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "2. Check your file format"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Import Options"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Does your file have titles?"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Separator:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Delimiter:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Encoding:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "UTF-8"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Latin 1"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Lines to skip"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "The import failed due to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Here is a preview of the file we could not import:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP Web"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Version"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Copyright © 2011-TODAY OpenERP SA. All Rights Reserved."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP is a trademark of the"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP SA Company"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Licenced under the terms of"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "GNU Affero General Public License"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "About OpenERP"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"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..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
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 ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Depending on your needs, OpenERP is available through a web or application "
"client."
msgstr ""

View File

@ -7,55 +7,271 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 07:07+0000\n" "PO-Revision-Date: 2011-10-19 07:07+0000\n"
"Last-Translator: Anze (Neotek) <Unknown>\n" "Last-Translator: Anze (Neotek) <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n" "Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:58+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "Zapri"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Prekliči"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "" msgid ""
"Warning, the record has been modified, your changes will be discarded." "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
"Opozorilo, zapis je bil spremenjen, zato bodo vaše spremembe zavržene." "Opozorilo, zapis je bil spremenjen, zato bodo vaše spremembe zavržene."
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "<em>   Iskanje več...</em>" msgstr "<em>   Iskanje več...</em>"
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   Ustvari \"<strong>%s</strong>\"</em>" msgstr "<em>   Ustvari \"<strong>%s</strong>\"</em>"
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "<em>   Ustvari in uredi...</em>" msgstr "<em>   Ustvari in uredi...</em>"
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Ustvari"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Uvozi"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Izvozi"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "Izbrati morate vsaj en zapis." msgstr "Izbrati morate vsaj en zapis."
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "Opozorilo" msgstr "Opozorilo"
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "Prevodi" msgstr "Prevodi"
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "Shrani" msgstr "Shrani"
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr "Zapri"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "x" msgstr "x"
@ -84,10 +300,6 @@ msgstr "."
msgid "Loading..." msgid "Loading..."
msgstr "Nalaganje …" msgstr "Nalaganje …"
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "Ustvari"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "Izbriši" msgstr "Izbriši"
@ -278,16 +490,8 @@ msgid "View#"
msgstr "Ogled#" msgstr "Ogled#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr "Polja" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr "Ogled oznak"
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "Sorodne stranske vrstice"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Field" msgid "Field"
@ -297,14 +501,6 @@ msgstr "Polje"
msgid ":" msgid ":"
msgstr ":" msgstr ":"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr "Preveden pogled"
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr "Prevedi stransko vrstico"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "Izbriši" msgstr "Izbriši"
@ -326,29 +522,13 @@ msgid "Last"
msgstr "Konec" msgstr "Konec"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr "♻" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr "Shrani & Uredi"
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr "Ustvari & Uredi"
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "Novo"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "Podvoji" msgstr "Podvoji"
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr "Samo za branje/možno urejanje"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "<<" msgstr "<<"
@ -373,17 +553,81 @@ msgstr "Dodaj"
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "Neobravnavani gradnik" msgstr "Neobravnavani gradnik"
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "?" msgstr "?"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "#" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr "Končano" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "#"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Open..." msgid "Open..."
@ -417,18 +661,34 @@ msgstr "Shrani kot"
msgid "Clear" msgid "Clear"
msgstr "Počisti" msgstr "Počisti"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "Napredni filter" msgstr "Napredni filter"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr "-- Filtr i--"
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr "-- Dejanja --"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "Shrani filter" msgstr "Shrani filter"
@ -445,6 +705,14 @@ msgstr "Ime filtra:"
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "(Vsak obstoječ filter z istim imenom bo zamenjan)" msgstr "(Vsak obstoječ filter z istim imenom bo zamenjan)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "Vsak od teh pogojev se mora ujemati" msgstr "Vsak od teh pogojev se mora ujemati"
@ -465,10 +733,6 @@ msgstr "Dodaj pogoj"
msgid "and" msgid "and"
msgstr "in" msgstr "in"
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "Prekliči"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "Shrani & Novo" msgstr "Shrani & Novo"
@ -477,10 +741,6 @@ msgstr "Shrani & Novo"
msgid "Save & Close" msgid "Save & Close"
msgstr "Shrani & Zapri" msgstr "Shrani & Zapri"
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "Izvozi"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria to " "This wizard will export all data that matches the current search criteria to "
@ -561,10 +821,6 @@ msgstr "Novo geslo:"
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "Potrditev gesla:" msgstr "Potrditev gesla:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "Uvozi"
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "1. Uvozi .CSV datoteko" msgstr "1. Uvozi .CSV datoteko"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,43 +17,259 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 0.9.6\n" "Generated-By: Babel 0.9.6\n"
#: addons/web/static/src/js/view_form.js:355 #: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr ""
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid "Warning, the record has been modified, your changes will be discarded." msgid "Warning, the record has been modified, your changes will be discarded."
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1659 #: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>" msgid "<em>   Search More...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1672 #: addons/web/static/src/js/view_form.js:1893
#, python-format #, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>" msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/view_form.js:1678 #: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>" msgid "<em>   Create and Edit...</em>"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:568 #: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr ""
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record." msgid "You must choose at least one record."
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:569 #: addons/web/static/src/js/views.js:703
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:609 #: addons/web/static/src/js/views.js:737
msgid "Translations" msgid "Translations"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:614 addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: addons/web/static/src/js/views.js:615
msgid "Close"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "x" msgid "x"
msgstr "" msgstr ""
@ -82,10 +298,6 @@ msgstr ""
msgid "Loading..." msgid "Loading..."
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Drop" msgid "Drop"
msgstr "" msgstr ""
@ -269,15 +481,7 @@ msgid "View#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Fields" msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "View labels"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Sidebar Relates"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -288,14 +492,6 @@ msgstr ""
msgid ":" msgid ":"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate view"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Translate sidebar"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -317,29 +513,13 @@ msgid "Last"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "♻" msgid "Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Create & Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "New"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Duplicate" msgid "Duplicate"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Readonly/Editable"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "<<" msgid "<<"
msgstr "" msgstr ""
@ -364,16 +544,80 @@ msgstr ""
msgid "Unhandled widget" msgid "Unhandled widget"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "?" msgid "?"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "#" msgid "(nolabel)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Done" msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
@ -408,18 +652,34 @@ msgstr ""
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter" msgid "Advanced Filter"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Filters --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-- Actions --"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save Filter" msgid "Save Filter"
msgstr "" msgstr ""
@ -436,6 +696,14 @@ msgstr ""
msgid "(Any existing filter with the same name will be replaced)" msgid "(Any existing filter with the same name will be replaced)"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match" msgid "Any of the following conditions must match"
msgstr "" msgstr ""
@ -456,10 +724,6 @@ msgstr ""
msgid "and" msgid "and"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "Save & New" msgid "Save & New"
msgstr "" msgstr ""
@ -468,10 +732,6 @@ msgstr ""
msgid "Save & Close" msgid "Save & Close"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "" msgid ""
"This wizard will export all data that matches the current search criteria" "This wizard will export all data that matches the current search criteria"
@ -548,10 +808,6 @@ msgstr ""
msgid "Confirm Password:" msgid "Confirm Password:"
msgstr "" msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr ""
#: addons/web/static/src/xml/base.xml:0 #: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file" msgid "1. Import a .CSV file"
msgstr "" msgstr ""

933
addons/web/po/zh_TW.po Normal file
View File

@ -0,0 +1,933 @@
# Chinese (Traditional) translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-04 16:06+0000\n"
"Last-Translator: Walter Cheuk <wwycheuk@gmail.com>\n"
"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web/static/src/js/data_import.js:73
#: addons/web/static/src/js/view_form.js:2799
#: addons/web/static/src/js/views.js:743
msgid "Close"
msgstr "關閉"
#: addons/web/static/src/js/data_import.js:74
msgid "Import File"
msgstr ""
#: addons/web/static/src/js/data_import.js:109
msgid "External ID"
msgstr ""
#: addons/web/static/src/js/search.js:231
msgid "Filter Entry"
msgstr ""
#: addons/web/static/src/js/search.js:233
#: addons/web/static/src/js/search.js:274 addons/web/static/src/xml/base.xml:0
msgid "Cancel"
msgstr "取消"
#: addons/web/static/src/js/search.js:236
#: addons/web/static/src/js/search.js:277
msgid "OK"
msgstr ""
#: addons/web/static/src/js/search.js:272 addons/web/static/src/xml/base.xml:0
msgid "Add to Dashboard"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "Invalid Search"
msgstr ""
#: addons/web/static/src/js/search.js:401
msgid "triggered from search view"
msgstr ""
#: addons/web/static/src/js/search.js:483
#, python-format
msgid "Incorrect value for field %(fieldname)s: [%(value)s] is %(message)s"
msgstr ""
#: addons/web/static/src/js/search.js:804
msgid "not a valid integer"
msgstr ""
#: addons/web/static/src/js/search.js:818
msgid "not a valid number"
msgstr ""
#: addons/web/static/src/js/search.js:1234
msgid "contains"
msgstr ""
#: addons/web/static/src/js/search.js:1235
msgid "doesn't contain"
msgstr ""
#: addons/web/static/src/js/search.js:1236
#: addons/web/static/src/js/search.js:1251
#: addons/web/static/src/js/search.js:1271
#: addons/web/static/src/js/search.js:1291
#: addons/web/static/src/js/search.js:1313
msgid "is equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1237
#: addons/web/static/src/js/search.js:1252
#: addons/web/static/src/js/search.js:1272
#: addons/web/static/src/js/search.js:1292
#: addons/web/static/src/js/search.js:1314
msgid "is not equal to"
msgstr ""
#: addons/web/static/src/js/search.js:1238
#: addons/web/static/src/js/search.js:1253
#: addons/web/static/src/js/search.js:1273
#: addons/web/static/src/js/search.js:1293
#: addons/web/static/src/js/search.js:1315
msgid "greater than"
msgstr ""
#: addons/web/static/src/js/search.js:1239
#: addons/web/static/src/js/search.js:1254
#: addons/web/static/src/js/search.js:1274
#: addons/web/static/src/js/search.js:1294
#: addons/web/static/src/js/search.js:1316
msgid "less than"
msgstr ""
#: addons/web/static/src/js/search.js:1240
#: addons/web/static/src/js/search.js:1255
#: addons/web/static/src/js/search.js:1275
#: addons/web/static/src/js/search.js:1295
#: addons/web/static/src/js/search.js:1317
msgid "greater or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1241
#: addons/web/static/src/js/search.js:1256
#: addons/web/static/src/js/search.js:1276
#: addons/web/static/src/js/search.js:1296
#: addons/web/static/src/js/search.js:1318
msgid "less or equal than"
msgstr ""
#: addons/web/static/src/js/search.js:1307
#: addons/web/static/src/js/search.js:1332
msgid "is"
msgstr ""
#: addons/web/static/src/js/search.js:1333
msgid "is not"
msgstr ""
#: addons/web/static/src/js/search.js:1346
msgid "is true"
msgstr ""
#: addons/web/static/src/js/search.js:1347
msgid "is false"
msgstr ""
#: addons/web/static/src/js/view_editor.js:182
msgid "Do you really want to remove this view?"
msgstr ""
#: addons/web/static/src/js/view_editor.js:454
msgid "Do you really want to remove this node?"
msgstr ""
#: addons/web/static/src/js/view_form.js:433
msgid "Do you really want to delete this record?"
msgstr ""
#: addons/web/static/src/js/view_form.js:448
msgid ""
"Warning, the record has been modified, your changes will be discarded."
msgstr ""
#: addons/web/static/src/js/view_form.js:656
msgid "Attachments"
msgstr ""
#: addons/web/static/src/js/view_form.js:1880
msgid "<em>   Search More...</em>"
msgstr "<em>   搜尋更多...</em>"
#: addons/web/static/src/js/view_form.js:1893
#, python-format
msgid "<em>   Create \"<strong>%s</strong>\"</em>"
msgstr "<em>   建立「<strong>%s</strong>」</em>"
#: addons/web/static/src/js/view_form.js:1899
msgid "<em>   Create and Edit...</em>"
msgstr "<em>   建立並編輯...</em>"
#: addons/web/static/src/js/view_list.js:14
#: addons/web/static/src/xml/base.xml:0
msgid "Create"
msgstr "建立"
#: addons/web/static/src/js/view_list.js:263
msgid "Unlimited"
msgstr ""
#: addons/web/static/src/js/view_list.js:483
msgid "Do you really want to remove these records?"
msgstr ""
#: addons/web/static/src/js/view_list.js:1159
msgid "Undefined"
msgstr ""
#: addons/web/static/src/js/views.js:482
msgid "Search: "
msgstr ""
#: addons/web/static/src/js/views.js:581
msgid "Customize"
msgstr ""
#: addons/web/static/src/js/views.js:584
msgid "Manage Views"
msgstr ""
#: addons/web/static/src/js/views.js:586 addons/web/static/src/js/views.js:590
#: addons/web/static/src/js/views.js:595
msgid "Manage views of the current object"
msgstr ""
#: addons/web/static/src/js/views.js:588
msgid "Edit Workflow"
msgstr ""
#: addons/web/static/src/js/views.js:593
msgid "Customize Object"
msgstr ""
#: addons/web/static/src/js/views.js:597
msgid "Translate"
msgstr ""
#: addons/web/static/src/js/views.js:599
msgid "Technical translation"
msgstr ""
#: addons/web/static/src/js/views.js:604
msgid "Other Options"
msgstr ""
#: addons/web/static/src/js/views.js:607 addons/web/static/src/xml/base.xml:0
msgid "Import"
msgstr "匯入"
#: addons/web/static/src/js/views.js:610 addons/web/static/src/xml/base.xml:0
msgid "Export"
msgstr "匯出"
#: addons/web/static/src/js/views.js:613
msgid "View Log"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Reports"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Actions"
msgstr ""
#: addons/web/static/src/js/views.js:622
msgid "Links"
msgstr ""
#: addons/web/static/src/js/views.js:702
msgid "You must choose at least one record."
msgstr "要選擇至少一個紀錄。"
#: addons/web/static/src/js/views.js:703
msgid "Warning"
msgstr "警告"
#: addons/web/static/src/js/views.js:737
msgid "Translations"
msgstr "翻譯"
#: addons/web/static/src/js/views.js:742 addons/web/static/src/xml/base.xml:0
msgid "Save"
msgstr "儲存"
#: addons/web/static/src/xml/base.xml:0
msgid "x"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#{title}"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#{text}"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Powered by"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "openerp.com"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Loading..."
msgstr "載入..."
#: addons/web/static/src/xml/base.xml:0
msgid "Drop"
msgstr "捨棄"
#: addons/web/static/src/xml/base.xml:0
msgid "Backup"
msgstr "備份"
#: addons/web/static/src/xml/base.xml:0
msgid "Restore"
msgstr "還原"
#: addons/web/static/src/xml/base.xml:0
msgid "Password"
msgstr "密碼"
#: addons/web/static/src/xml/base.xml:0
msgid "Back to Login"
msgstr "返回登入畫面"
#: addons/web/static/src/xml/base.xml:0
msgid "CREATE DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Master password:"
msgstr "主密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "New database name:"
msgstr "新資料庫名稱:"
#: addons/web/static/src/xml/base.xml:0
msgid "Load Demonstration data:"
msgstr "載入演示資料:"
#: addons/web/static/src/xml/base.xml:0
msgid "Default language:"
msgstr "預設語言:"
#: addons/web/static/src/xml/base.xml:0
msgid "Admin password:"
msgstr "管理員密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm password:"
msgstr "確認密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "DROP DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Database:"
msgstr "資料庫:"
#: addons/web/static/src/xml/base.xml:0
msgid "Master Password:"
msgstr "主密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "BACKUP DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "RESTORE DATABASE"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "File:"
msgstr "檔案:"
#: addons/web/static/src/xml/base.xml:0
msgid "CHANGE MASTER PASSWORD"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "New master password:"
msgstr "新主密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm new master password:"
msgstr "確認新主密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "User:"
msgstr "使用者:"
#: addons/web/static/src/xml/base.xml:0
msgid "Password:"
msgstr "密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "Database"
msgstr "資料庫"
#: addons/web/static/src/xml/base.xml:0
msgid "Login"
msgstr "登入"
#: addons/web/static/src/xml/base.xml:0
msgid "Bad username or password"
msgstr "使用者名稱或密碼不對"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"We think that daily job activities can be more intuitive, efficient, "
"automated, .. and even fun."
msgstr "我們認為日常工作可以更直觀、更有效率、更自動化......以至更有趣。"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP's vision to be:"
msgstr "OpenERP 的願景為:"
#: addons/web/static/src/xml/base.xml:0
msgid "Full featured"
msgstr "完整功能"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Today's enterprise challenges are multiple. We provide one module for each "
"need."
msgstr "今時今日企業面對的問題很多。我們為每件工作皆提供處理的模組。"
#: addons/web/static/src/xml/base.xml:0
msgid "Open Source"
msgstr "開源碼"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"To Build a great product, we rely on the knowledge of thousands of "
"contributors."
msgstr "要製作好用的產品,我們靠的是成千上萬的自願貢獻者。"
#: addons/web/static/src/xml/base.xml:0
msgid "User Friendly"
msgstr "易用"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"In order to be productive, people need clean and easy to use interface."
msgstr "要工作更有效率,人們要更簡潔、更易用的介面。"
#: addons/web/static/src/xml/base.xml:0
msgid "("
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ")"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "LOGOUT"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "&laquo;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "&raquo;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_menu_item"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "oe_secondary_submenu_item"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Hide this tip"
msgstr "隱藏此提示"
#: addons/web/static/src/xml/base.xml:0
msgid "Disable all tips"
msgstr "停用所有提示"
#: addons/web/static/src/xml/base.xml:0
msgid "View#"
msgstr "檢視#"
#: addons/web/static/src/xml/base.xml:0
msgid "More…"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field"
msgstr "欄位"
#: addons/web/static/src/xml/base.xml:0
msgid ":"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Delete"
msgstr "刪除"
#: addons/web/static/src/xml/base.xml:0
msgid "First"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "<"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ">"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Last"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Edit"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Duplicate"
msgstr "製作複本"
#: addons/web/static/src/xml/base.xml:0
msgid "<<"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "0"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "/"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ">>"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Add"
msgstr "添加"
#: addons/web/static/src/xml/base.xml:0
msgid "Unhandled widget"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Notebook Page \""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "\""
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Modifiers:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "?"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(nolabel)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Field:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Object:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Widget:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Size:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Context:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Domain:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "On change:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Relation:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Selection:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "["
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "]"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "-"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "#"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Open..."
msgstr "開啟..."
#: addons/web/static/src/xml/base.xml:0
msgid "Create..."
msgstr "建立..."
#: addons/web/static/src/xml/base.xml:0
msgid "Search..."
msgstr "搜尋..."
#: addons/web/static/src/xml/base.xml:0
msgid "..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Uploading ..."
msgstr "上載 ..."
#: addons/web/static/src/xml/base.xml:0
msgid "Select"
msgstr "選取"
#: addons/web/static/src/xml/base.xml:0
msgid "Save As"
msgstr "另存為"
#: addons/web/static/src/xml/base.xml:0
msgid "Clear"
msgstr "清除"
#: addons/web/static/src/xml/base.xml:0
msgid "Button"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "(no string)"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Special:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Button Type:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Method:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Action ID:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Advanced Filter"
msgstr "進階篩選"
#: addons/web/static/src/xml/base.xml:0
msgid "Save Filter"
msgstr "儲存篩選"
#: addons/web/static/src/xml/base.xml:0
msgid "Manage Filters"
msgstr "管理篩選"
#: addons/web/static/src/xml/base.xml:0
msgid "Filter Name:"
msgstr "篩選名稱:"
#: addons/web/static/src/xml/base.xml:0
msgid "(Any existing filter with the same name will be replaced)"
msgstr "(會取代所有同名篩選)"
#: addons/web/static/src/xml/base.xml:0
msgid "Select Dashboard to add this filter to:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Title of new Dashboard item:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Any of the following conditions must match"
msgstr "以下任何條件都要符合"
#: addons/web/static/src/xml/base.xml:0
msgid "All the following conditions must match"
msgstr "以下所有條件都要符合"
#: addons/web/static/src/xml/base.xml:0
msgid "None of the following conditions must match"
msgstr "以下無一條件需要符合"
#: addons/web/static/src/xml/base.xml:0
msgid "Add condition"
msgstr "添加條件"
#: addons/web/static/src/xml/base.xml:0
msgid "and"
msgstr "和"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & New"
msgstr "儲存並新增"
#: addons/web/static/src/xml/base.xml:0
msgid "Save & Close"
msgstr "儲存並關閉"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"This wizard will export all data that matches the current search criteria to "
"a CSV file.\n"
" You can export all data or only the fields that can be "
"reimported after modification."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export Type:"
msgstr "匯出類型:"
#: addons/web/static/src/xml/base.xml:0
msgid "Import Compatible Export"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Export all Data"
msgstr "匯出所有資料"
#: addons/web/static/src/xml/base.xml:0
msgid "Export Formats"
msgstr "匯出格式"
#: addons/web/static/src/xml/base.xml:0
msgid "Available fields"
msgstr "可提供欄位"
#: addons/web/static/src/xml/base.xml:0
msgid "Fields to export"
msgstr "要匯出欄位"
#: addons/web/static/src/xml/base.xml:0
msgid "Save fields list"
msgstr "儲存欄位清單"
#: addons/web/static/src/xml/base.xml:0
msgid "Remove"
msgstr "移除"
#: addons/web/static/src/xml/base.xml:0
msgid "Remove All"
msgstr "全部移除"
#: addons/web/static/src/xml/base.xml:0
msgid "Name"
msgstr "名稱"
#: addons/web/static/src/xml/base.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Save as:"
msgstr "另存為:"
#: addons/web/static/src/xml/base.xml:0
msgid "Ok"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Saved exports:"
msgstr "已儲存匯出:"
#: addons/web/static/src/xml/base.xml:0
msgid "Old Password:"
msgstr "舊密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "New Password:"
msgstr "新密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "Confirm Password:"
msgstr "確認密碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "1. Import a .CSV file"
msgstr "1. 匯入 .CSV 檔"
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Select a .CSV file to import. If you need a sample of file to import,\n"
" you should use the export tool with the \"Import Compatible\" option."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "CSV File:"
msgstr "CSV 檔:"
#: addons/web/static/src/xml/base.xml:0
msgid "2. Check your file format"
msgstr "2. 檢查檔案格式"
#: addons/web/static/src/xml/base.xml:0
msgid "Import Options"
msgstr "匯入選項"
#: addons/web/static/src/xml/base.xml:0
msgid "Does your file have titles?"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Separator:"
msgstr "分隔符號:"
#: addons/web/static/src/xml/base.xml:0
msgid "Delimiter:"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Encoding:"
msgstr "編碼:"
#: addons/web/static/src/xml/base.xml:0
msgid "UTF-8"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Latin 1"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Lines to skip"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "The import failed due to:"
msgstr "匯入失敗,原因為:"
#: addons/web/static/src/xml/base.xml:0
msgid "Here is a preview of the file we could not import:"
msgstr "無法匯入檔案的預覽:"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP Web"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "Version"
msgstr "版本"
#: addons/web/static/src/xml/base.xml:0
msgid "Copyright © 2011-TODAY OpenERP SA. All Rights Reserved."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP is a trademark of the"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP SA Company"
msgstr "OpenERP SA 公司"
#: addons/web/static/src/xml/base.xml:0
msgid "Licenced under the terms of"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "GNU Affero General Public License"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid "About OpenERP"
msgstr "有關 OpenERP"
#: addons/web/static/src/xml/base.xml:0
msgid "OpenERP"
msgstr ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"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..."
msgstr ""
#: addons/web/static/src/xml/base.xml:0
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 ""
#: addons/web/static/src/xml/base.xml:0
msgid ""
"Depending on your needs, OpenERP is available through a web or application "
"client."
msgstr ""

View File

@ -94,7 +94,7 @@
function active_tiptip(){ function active_tiptip(){
opts.enter.call(this); opts.enter.call(this);
var org_title = typeof opts.content === 'function' ? opts.content() : opts.content; var org_title = typeof opts.content === 'function' ? opts.content.call(org_elem, opts) : opts.content;
org_title = org_title || org_elem.attr(opts.attribute); org_title = org_title || org_elem.attr(opts.attribute);
tiptip_content.html(org_title); tiptip_content.html(org_title);
tiptip_holder.hide().removeAttr("class").css("margin","0"); tiptip_holder.hide().removeAttr("class").css("margin","0");

View File

@ -334,7 +334,7 @@ var py = {};
}, },
number: function (str, index) { number: function (str, index) {
var character = str[index]; var character = str[index];
if (!NUMBER.test(character)) { if (!(character == '.' || NUMBER.test(character))) {
this.tokens.push(create(symbols['(number)'], { this.tokens.push(create(symbols['(number)'], {
value: parseFloat(this.builder(true).join('')) value: parseFloat(this.builder(true).join(''))
})); }));

View File

@ -373,6 +373,12 @@ QWeb2.Engine = (function() {
if (!this.jQuery) { if (!this.jQuery) {
return this.tools.exception("Can't extend template " + template + " without jQuery"); return this.tools.exception("Can't extend template " + template + " without jQuery");
} }
var template_dest = this.templates[template],
msie_trololo = false;
if (template_dest.xml !== undefined) {
template_dest = this.jQuery(template_dest.xml);
msie_trololo = true;
}
for (var i = 0, ilen = extend_node.childNodes.length; i < ilen; i++) { for (var i = 0, ilen = extend_node.childNodes.length; i < ilen; i++) {
var child = extend_node.childNodes[i]; var child = extend_node.childNodes[i];
if (child.nodeType === 1) { if (child.nodeType === 1) {
@ -382,7 +388,7 @@ QWeb2.Engine = (function() {
target, target,
error_msg = "Error while extending template '" + template; error_msg = "Error while extending template '" + template;
if (jquery) { if (jquery) {
target = this.jQuery(jquery, this.templates[template]); target = this.jQuery(jquery, template_dest);
} else if (xpath) { } else if (xpath) {
// NOTE: due to the XPath implementation, extending a template will only work once // NOTE: due to the XPath implementation, extending a template will only work once
// when using XPath because XPathResult won't match objects with other constructor than 'Element' // when using XPath because XPathResult won't match objects with other constructor than 'Element'
@ -415,6 +421,9 @@ QWeb2.Engine = (function() {
} }
} }
} }
if (msie_trololo) {
this.templates[template] = template_dest[0];
}
} }
}); });
return Engine; return Engine;

View File

@ -1,4 +1,3 @@
/* TODO: separate openerp web client page css from openerp views css */
body.openerp { body.openerp {
padding: 0; padding: 0;
margin: 0; margin: 0;
@ -6,10 +5,17 @@ body.openerp {
min-width: 1000px; min-width: 1000px;
overflow-y: scroll; overflow-y: scroll;
font-size: 80%; font-size: 80%;
font-family: Ubuntu, Helvetica, sans-serif;
} }
body.openerp, .openerp textarea, .openerp input, .openerp select, .openerp option, .openerp button, .openerp .ui-widget { body.openerp, .openerp textarea, .openerp input, .openerp select, .openerp option, .openerp button, .openerp .ui-widget {
font-family: Ubuntu, Helvetica, sans-serif; font-family: Ubuntu, Helvetica, sans-serif;
font-size:85%;
}
.openerp .view-manager-main-content {
width: 100%;
padding: 0 8px 8px 8px;
} }
.oe_box { .oe_box {
@ -29,6 +35,17 @@ body.openerp, .openerp textarea, .openerp input, .openerp select, .openerp optio
.openerp .oe-listview .oe-number { .openerp .oe-listview .oe-number {
text-align: right !important; text-align: right !important;
} }
.oe-listview-header-columns {
background: #444; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #d1d1d1 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d1d1d1)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#d1d1d1 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#d1d1d1 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#d1d1d1 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #ffffff 0%,#d1d1d1 100%); /* W3C */
}
.openerp .oe_hide { .openerp .oe_hide {
display: none !important; display: none !important;
} }
@ -261,7 +278,7 @@ label.error {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BD5E54', endColorstr='#90322A',GradientType=0 ); /* IE6-9 */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BD5E54', endColorstr='#90322A',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #bd5e54 0%,#90322a 60%); /* W3C */ background: linear-gradient(top, #bd5e54 0%,#90322a 60%); /* W3C */
border: 1px solid #6E2A24; border: 1px solid #5E1A14;
border-radius: 4px; border-radius: 4px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
-webkit-border-radius: 4px; -webkit-border-radius: 4px;
@ -272,7 +289,7 @@ label.error {
text-transform: uppercase; text-transform: uppercase;
line-height: 20px; line-height: 20px;
font-weight: bold; font-weight: bold;
font-size: 85%; font-size: 75%;
white-space: nowrap; white-space: nowrap;
} }
@ -331,6 +348,7 @@ label.error {
height: 100%; height: 100%;
display: block; display: block;
position: relative; position: relative;
font-size:85%;
} }
.openerp .secondary_menu.oe_folded { .openerp .secondary_menu.oe_folded {
width: 20px; width: 20px;
@ -371,6 +389,10 @@ label.error {
white-space: nowrap; white-space: nowrap;
color: white; color: white;
text-shadow: 0 1px 0 #333; text-shadow: 0 1px 0 #333;
}
.openerp a.oe_secondary_submenu_item {
padding: 0 5px 2px 10px;
} }
.openerp a.oe_secondary_submenu_item:hover, .openerp a.oe_secondary_submenu_item:hover,
.openerp a.oe_secondary_submenu_item.leaf.active { .openerp a.oe_secondary_submenu_item.leaf.active {
@ -383,7 +405,7 @@ label.error {
background: -ms-linear-gradient(top, #ffffff 0%,#d8d8d8 11%,#afafaf 86%,#333333 91%,#5a5858 96%); /* IE10+ */ background: -ms-linear-gradient(top, #ffffff 0%,#d8d8d8 11%,#afafaf 86%,#333333 91%,#5a5858 96%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#5A5858',GradientType=0 ); /* IE6-9 */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#5A5858',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #ffffff 0%,#d8d8d8 11%,#afafaf 86%,#333333 91%,#5a5858 96%); /* W3C */ background: linear-gradient(top, #ffffff 0%,#d8d8d8 11%,#afafaf 86%,#333333 91%,#5a5858 96%); /* W3C */
padding: 0 5px 2px 5px; padding: 0 5px 2px 10px;
line-height: 20px; line-height: 20px;
color: #3f3d3d; color: #3f3d3d;
text-decoration: none; text-decoration: none;
@ -431,6 +453,8 @@ label.error {
margin: 0; margin: 0;
padding: 4px 10px; padding: 4px 10px;
text-shadow: 0 1px 0 #111111; text-shadow: 0 1px 0 #111111;
font-weight:normal;
line-height:14px;
} }
.openerp .header_title small { .openerp .header_title small {
color: #ccc; color: #ccc;
@ -464,15 +488,11 @@ label.error {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#929292', endColorstr='#4D4D4D',GradientType=0 ); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#929292', endColorstr='#4D4D4D',GradientType=0 );
} }
.openerp .header_corner ul.block { .openerp .header_corner ul.block {
/*float: left;*/
list-style: none; list-style: none;
height: 34px; height: 34px;
margin: 0; margin: 0;
padding: 0 0 0 2px; padding: 0 0 0 2px;
/*background: url(../images/top-sep-a.png) no-repeat;*/
line-height: 33px; line-height: 33px;
/*font-size: 1em;*/
/*text-transform: uppercase;*/
} }
.openerp .header_corner ul.block li { .openerp .header_corner ul.block li {
float: left; float: left;
@ -498,6 +518,10 @@ label.error {
font-weight: bold; font-weight: bold;
} }
.openerp .logout {
font-size:80%;
}
/* Footer */ /* Footer */
.openerp div.oe_footer { .openerp div.oe_footer {
background: none repeat scroll 0 0 #CCCCCC; background: none repeat scroll 0 0 #CCCCCC;
@ -530,7 +554,7 @@ label.error {
} }
.openerp h2.oe_view_title { .openerp h2.oe_view_title {
font-size: 175%; font-size: 110%;
font-weight: normal; font-weight: normal;
margin: 2px 0; margin: 2px 0;
color: #252424; color: #252424;
@ -541,12 +565,15 @@ label.error {
.openerp .oe_vm_switch { .openerp .oe_vm_switch {
float: right; float: right;
} }
.openerp .oe-view-manager-header .oe_view_title {
font-size:150%;
}
/* SearchView */ /* SearchView */
.openerp .filter_label, .openerp .filter_icon { .openerp .filter_label, .openerp .filter_icon {
border: 1px solid #666;
border-left-width: 0; border-left-width: 0;
background: #F0F0F0; background: #F0F0F0;
border: 1px solid #999;
background: -moz-linear-gradient(top, #F0F0F0 0%, #C0C0C0 100%); background: -moz-linear-gradient(top, #F0F0F0 0%, #C0C0C0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F0F0F0), color-stop(100%,#C0C0C0)); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F0F0F0), color-stop(100%,#C0C0C0));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F0F0', endColorstr='#C0C0C0',GradientType=0 ); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F0F0', endColorstr='#C0C0C0',GradientType=0 );
@ -558,13 +585,13 @@ label.error {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F0F0', endColorstr='#A1A7CE',GradientType=0 ); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F0F0', endColorstr='#A1A7CE',GradientType=0 );
} }
.openerp .filter_label:active, .openerp .filter_icon:active { .openerp .filter_label:active, .openerp .filter_icon:active {
background: #AAAAAA; background: #aaa;
background: -moz-linear-gradient(top, #999999 0%, #EEEEEE 100%); background: -moz-linear-gradient(top, #999999 0%, #EEEEEE 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), color-stop(100%,#EEEEEE)); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), color-stop(100%,#EEEEEE));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#EEEEEE',GradientType=0 ); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#EEEEEE',GradientType=0 );
} }
.openerp .filter_label.enabled, .openerp .filter_icon.enabled { .openerp .filter_label.enabled, .openerp .filter_icon.enabled {
background: #AAAAAA; background: #aaa;
} }
.openerp .filter_icon { .openerp .filter_icon {
height: 22px; height: 22px;
@ -588,13 +615,16 @@ label.error {
white-space: nowrap; white-space: nowrap;
} }
.openerp .filter_label_group button:first-child { .openerp .filter_label_group button:first-child {
border-left: 1px solid #666;
-webkit-border-top-left-radius: 7px; -webkit-border-top-left-radius: 7px;
-webkit-border-bottom-left-radius: 7px; -webkit-border-bottom-left-radius: 7px;
-moz-border-radius-topleft: 7px; -moz-border-radius-topleft: 7px;
-moz-border-radius-bottomleft: 7px; -moz-border-radius-bottomleft: 7px;
border-top-left-radius: 7px; border-top-left-radius: 7px;
border-bottom-left-radius: 7px; border-bottom-left-radius: 7px;
border-right: none;
}
.openerp .filter_label_group button {
border-right: none;
} }
.openerp .filter_label_group button:last-child { .openerp .filter_label_group button:last-child {
-webkit-border-top-right-radius: 7px; -webkit-border-top-right-radius: 7px;
@ -603,6 +633,20 @@ label.error {
-moz-border-radius-bottomright: 7px; -moz-border-radius-bottomright: 7px;
border-top-right-radius: 7px; border-top-right-radius: 7px;
border-bottom-right-radius: 7px; border-bottom-right-radius: 7px;
border-right: 1px solid #999;
}
.openerp .filter_label_group button.filter_icon img {
padding: 1px 8px 0 8px;
}
.openerp .filter_label_group button.filter_icon:first-child {
border-left: solid 1px #999;
margin-left: -7px;
-webkit-border-top-left-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-bottomleft: 0px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
} }
.openerp .searchview_group_string { .openerp .searchview_group_string {
@ -628,8 +672,16 @@ label.error {
.openerp .searchview_group.expanded .searchview_group_content { .openerp .searchview_group.expanded .searchview_group_content {
display: block; display: block;
} }
.openerp .searchview_group_content {
padding-left: 10px; .openerp .searchview_group_content .oe_label, .openerp .searchview_group_content .oe_label_help {
font-weight: bold;
color: #4c4c4c;
}
.openerp .oe-searchview-render-line .oe_label, .openerp .oe-searchview-render-line .oe_label_help {
font-weight: bold;
font-size: 80%;
white-space: nowrap;
} }
.openerp .searchview_extended_group { .openerp .searchview_extended_group {
@ -715,20 +767,23 @@ label.error {
text-align: left; text-align: left;
padding: 1px 2px; padding: 1px 2px;
} }
.openerp .oe-listview th.oe-record-selector,
.openerp .oe-listview td.oe-button, .openerp .oe-record-delete button{
.openerp .oe-listview td.oe-record-delete { border: none;
padding: 0 1px; height: 12px;
width: 12px;
background: url("/web/static/src/img/iconset-b-remove.png") no-repeat scroll center center transparent;
cursor: pointer;
} }
/* Could use :not selectors if they were supported by MSIE8... */ /* Could use :not selectors if they were supported by MSIE8... */
.openerp .oe-listview tbody td { .openerp .oe-listview tbody td {
border-left: 1px solid #dadada; border-left: 1px solid #dadada; /*currently commenting to test with no vertical lines in list view*/
} }
.openerp .oe-listview tbody td:first-child, .openerp .oe-listview tbody td:first-child,
.openerp .oe-listview tbody td.oe-button, .openerp .oe-listview tbody td.oe-button,
.openerp .oe-listview tbody td.oe-button+td, .openerp .oe-listview tbody td.oe-button,
.openerp .oe-listview tbody th.oe-record-selector+td, .openerp .oe-listview tbody th.oe-record-selector,
.openerp .oe-listview tbody td.oe-record-delete { .openerp .oe-listview tbody td.oe-record-delete {
border-left: none; border-left: none;
} }
@ -738,15 +793,36 @@ label.error {
} }
.openerp .oe-listview th.oe-sortable { .openerp .oe-listview th.oe-sortable {
cursor: pointer; cursor: pointer;
font-size: 75%;
text-transform: uppercase;
padding: 0;
margin: 0;
padding-left: 3px;
color: #333;
} }
.openerp .oe-listview th.oe-sortable .ui-icon { .openerp .oe-listview th.oe-sortable .ui-icon {
height: 1em; height: 60%;
margin: -6px 0 0;
display: inline; display: inline;
display: inline-block; display: inline-block;
vertical-align: middle;
}
.openerp .oe-listview table tbody td {
border-bottom: 1px solid #E3E3E3;
}
.openerp .oe-listview .oe-record-selector {
border-bottom: 1px solid #E3E3E3;
} }
.openerp .oe-listview .oe-field-cell { .openerp .oe-listview .oe-field-cell {
cursor: pointer; cursor: pointer;
margin-top: 0;
margin-bottom: 0;
padding-top: 3px;
padding-bottom: 3px;
font-size: 80%;
} }
.openerp .oe-listview .oe-field-cell progress { .openerp .oe-listview .oe-field-cell progress {
width: 100%; width: 100%;
@ -778,6 +854,8 @@ label.error {
} }
.openerp .oe-list-pager .oe-pager-state { .openerp .oe-list-pager .oe-pager-state {
cursor: pointer; cursor: pointer;
font-size: 90%;
color: #555;
} }
.openerp .oe-listview .oe-group-name { .openerp .oe-listview .oe-group-name {
@ -794,6 +872,8 @@ label.error {
.openerp .oe-listview .oe-list-footer { .openerp .oe-listview .oe-list-footer {
text-align: center; text-align: center;
white-space: nowrap; white-space: nowrap;
color: #444;
font-size: 85%;
} }
.openerp .oe-listview .oe-list-footer span { .openerp .oe-listview .oe-list-footer span {
margin: 0 1em; margin: 0 1em;
@ -846,28 +926,62 @@ label.error {
} }
.openerp .oe_form_notebook .ui-tabs-panel { .openerp .oe_form_notebook .ui-tabs-panel {
padding: 4px; padding: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
} }
.openerp .oe_form_notebook ul.ui-tabs-nav { .openerp .oe_form_notebook ul.ui-tabs-nav {
padding-left: 0; padding-left: 0;
background: transparent; background: transparent;
border-width: 0 0 1px 0; border-width: 0;
border-radius: 0; border-radius: 0;
-moz-border-radius: 0; -moz-border-radius: 0;
-webkit-border-radius: 0; -webkit-border-radius: 0;
line-height: 0.5em; line-height: 0.8em;
font-size: 95%;
color: #555;
} }
.openerp .oe_form_notebook ul.ui-tabs-nav li { .openerp .oe_form_notebook ul.ui-tabs-nav li {
font-weight: bold; font-weight: bold;
} }
.openerp .oe_form_notebook .ui-tabs-panel { .openerp .oe_form_notebook .ui-tabs-panel {
background: #f9f9f9; background: #f9f9f9;
border-width: 0 1px 1px 1px; border-width: 1px;
} }
.openerp .oe_form_notebook .ui-tabs-selected { .openerp .oe_form_notebook .ui-tabs-selected {
background: #f9f9f9; background: #f9f9f9;
} }
/* Unedit Form */
.openerp .field_char, .openerp .field_date, .openerp .field_float, .openerp .oe_form_field_many2one a {
vertical-align: middle;
padding-top: 3px;
font-size: 90%;
color: #222;
}
.openerp .oe_form_field_many2one a {
color: #9A0404;
line-height: 12px;
}
/* Form */ /* Form */
.openerp .oe_form_frame_cell input[type="checkbox"] {
margin-top: 3px;
vertical-align: center;
}
.openerp .oe_form_frame_cell .input[type="text"] {
padding-bottom: 1px;
}
.openerp table.oe_frame td {
color: #4c4c4c;
}
.openerp td.oe_form_frame_cell {
padding: 2px;
position: relative;
}
.openerp .oe_frame.oe_forms { .openerp .oe_frame.oe_forms {
clear: both; clear: both;
} }
@ -889,6 +1003,9 @@ label.error {
padding: 2px; padding: 2px;
position: relative; position: relative;
} }
.openerp td.oe_form_field_boolean {
padding-top: 4px;
}
.openerp td.oe_form_frame_cell.oe_form_group { .openerp td.oe_form_frame_cell.oe_form_group {
padding: 0; padding: 0;
} }
@ -900,14 +1017,31 @@ label.error {
} }
.openerp .oe_form_pager, .openerp .oe_list_pager { .openerp .oe_form_pager, .openerp .oe_list_pager {
float: right; float: right;
font-size: 80%;
color: gray;
font-weight: bold;
}
.openerp .oe_form_pager {
margin-right: 3px;
}
.openerp label.oe_label_help, .openerp label.oe_label, .openerp .oe_forms input[type="text"], .openerp .oe_forms input[type="password"], .openerp .oe_forms select, .openerp .oe_forms .oe_button, .openerp .oe_forms textarea {
font-size: 85%;
} }
.openerp label.oe_label_help, .openerp label.oe_label { .openerp label.oe_label_help, .openerp label.oe_label {
display: block; display: block;
color: #4c4c4c;
font-weight: normal;
} }
.openerp label.oe_label_help { .openerp label.oe_label_help {
cursor: help; cursor: help;
} }
.openerp .oe_form_frame_cell .oe_label, .openerp .oe_form_frame_cell .oe_label_help {
font-weight: normal;
}
.openerp #tiptip_content { .openerp #tiptip_content {
font-size: 12px; font-size: 12px;
} }
@ -926,8 +1060,12 @@ label.error {
} }
.openerp .oe_forms label.oe_label, .openerp .oe_forms label.oe_label_help { .openerp .oe_forms label.oe_label, .openerp .oe_forms label.oe_label_help {
margin: 3px 0 0 10px; margin: 4px 0 0 3px;
} }
.openerp .oe_forms .searchview_group_content label.oe_label, .openerp .searchview_group_content .oe_forms label.oe_label_help { /* making a distinction between labels in search view and other labels */
margin: 3px 0 0 3px;
}
.openerp label.oe_label_help span { .openerp label.oe_label_help span {
font-size: 80%; font-size: 80%;
color: darkgreen; color: darkgreen;
@ -949,13 +1087,29 @@ label.error {
margin: 3px 0 0 0; margin: 3px 0 0 0;
} }
/* Uneditable Form View */
.openerp .oe_form_readonly {
}
.openerp .oe_form_readonly .field_char, .openerp .oe_form_readonly .oe_form_field_email {
padding-top: 4px;
background-color: white;
}
.openerp .oe_form_readonly .field_selection {
padding-top: 2px;
background-color: white;
}
/* Inputs */ /* Inputs */
.openerp .oe_forms input[type="text"], .openerp .oe_forms input[type="password"], .openerp .oe_forms select, .openerp .oe_forms textarea { .openerp .oe_forms input[type="text"], .openerp .oe_forms input[type="password"], .openerp .oe_forms select, .openerp .oe_forms textarea {
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
-ms-box-sizing: border-box; -ms-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
padding: 0 2px 0 2px; padding: 0 2px;
margin: 0 2px;
border: 1px solid #999; border: 1px solid #999;
-moz-border-radius: 3px; -moz-border-radius: 3px;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
@ -964,6 +1118,10 @@ label.error {
min-width: 90px; min-width: 90px;
color: #1f1f1f; color: #1f1f1f;
} }
.openerp .oe_forms select{
padding-top: 2px;
}
.openerp .oe_forms textarea { .openerp .oe_forms textarea {
resize:vertical; resize:vertical;
} }
@ -979,6 +1137,9 @@ label.error {
min-width: 100%; min-width: 100%;
width: 100%; width: 100%;
} }
.openerp .oe_forms .button {
height: 22px;
}
@-moz-document url-prefix() { @-moz-document url-prefix() {
/* Strange firefox behaviour on width: 100% + white-space: nowrap */ /* Strange firefox behaviour on width: 100% + white-space: nowrap */
.openerp .oe_forms .oe_button { .openerp .oe_forms .oe_button {
@ -1055,10 +1216,14 @@ label.error {
border: 0 solid #666; border: 0 solid #666;
} }
.openerp .separator.horizontal { .openerp .separator.horizontal {
font-weight: bold; font-weight: bold;
border-bottom-width: 1px; border-bottom-width: 1px;
margin: 3px 4px 3px 1px; margin: 3px 4px 3px 1px;
height: 15px; height: 17px;
font-size: 95%;
}
.openerp .separator.horizontal:empty {
height: 5px;
} }
.openerp .oe_form_frame_cell.oe_form_separator_vertical { .openerp .oe_form_frame_cell.oe_form_separator_vertical {
border-left: 1px solid #666; border-left: 1px solid #666;
@ -1095,6 +1260,14 @@ label.error {
background: white; background: white;
min-width: 90px; min-width: 90px;
} }
.openerp tbody.ui-widget-content {
margin-bottom: 10px;
border-spacing: 4px;
}
.openerp .ui-widget-header {
background-image: none;
background-color: white;
}
/* Sidebar */ /* Sidebar */
.openerp .view-manager-main-table { .openerp .view-manager-main-table {
@ -1108,16 +1281,13 @@ label.error {
vertical-align: top; vertical-align: top;
} }
.openerp .view-manager-main-content {
width: 100%;
}
.openerp .oe-view-manager-header { .openerp .oe-view-manager-header {
overflow: auto; overflow: auto;
} }
.openerp .oe-view-manager-header h2 { .openerp .oe-view-manager-header h2 {
float: left; float: left;
} }
.openerp .oe-view-manager-header blockquote { .openerp .oe_view_manager_menu_tips blockquote {
display: none; display: none;
font-size: 85%; font-size: 85%;
margin: 0; margin: 0;
@ -1126,14 +1296,14 @@ label.error {
padding: 1px 10px; padding: 1px 10px;
color: #4C4C4C; color: #4C4C4C;
} }
.openerp .oe-view-manager-header blockquote p { .openerp .oe_view_manager_menu_tips blockquote p {
margin: 0; margin: 0;
padding: 6px 1px 4px; padding: 6px 1px 4px;
} }
.openerp .oe-view-manager-header blockquote div { .openerp .oe_view_manager_menu_tips blockquote div {
text-align: right; text-align: right;
} }
.openerp .oe-view-manager-header blockquote div button { .openerp .oe_view_manager_menu_tips blockquote div button {
border: none; border: none;
background: none; background: none;
padding: 0 4px; padding: 0 4px;
@ -1310,14 +1480,6 @@ label.error {
background: 1px 3px url(/web/static/src/img/icons/gtk-print.png) no-repeat; background: 1px 3px url(/web/static/src/img/icons/gtk-print.png) no-repeat;
} }
.openerp .oe-running-kitten {
display: none;
}
.openerp.kitten-mode-activated .oe-running-kitten {
display: inherit;
}
.openerp.kitten-mode-activated .main_table { .openerp.kitten-mode-activated .main_table {
background: url(http://placekitten.com/g/1500/800) repeat; background: url(http://placekitten.com/g/1500/800) repeat;
} }
@ -1373,6 +1535,7 @@ label.error {
} }
.openerp .oe_forms .oe-m2o input[type="text"] { .openerp .oe_forms .oe-m2o input[type="text"] {
padding-right: 20px; padding-right: 20px;
padding-top: 2px;
} }
.openerp .oe-m2o-drop-down-button { .openerp .oe-m2o-drop-down-button {
margin-left: -23px; margin-left: -23px;
@ -1382,12 +1545,12 @@ label.error {
margin-bottom: -4px; margin-bottom: -4px;
cursor: pointer; cursor: pointer;
} }
.openerp .oe-m2o-cm-button img {
margin-left: 4px;
}
.openerp .oe-m2o-disabled-cm { .openerp .oe-m2o-disabled-cm {
color: grey; color: grey;
} }
.openerp ul[role="listbox"] li a {
font-size:80%;
}
.parent_top { .parent_top {
vertical-align: text-top; vertical-align: text-top;
} }
@ -1433,20 +1596,19 @@ label.error {
/* Shortcuts*/ /* Shortcuts*/
.oe-shortcut-toggle { .oe-shortcut-toggle {
height: 20px; height: 20px;
margin-top: 3px;
padding: 0; padding: 0;
width: 24px; width: 24px;
cursor: pointer; cursor: pointer;
display: block; display: block;
background: url(/web/static/src/img/add-shortcut.png) no-repeat bottom; background: url(/web/static/src/img/add-shortcut.png) no-repeat center center;
float: left; float: left;
} }
.oe-shortcut-remove{ .oe-shortcut-remove{
background: url(/web/static/src/img/remove-shortcut.png) no-repeat bottom; background: url(/web/static/src/img/remove-shortcut.png) no-repeat center center;
} }
/* ================ */
.oe-shortcuts { .oe-shortcuts {
position: absolute; position: absolute;
margin: 0; margin: 0;
padding: 6px 15px; padding: 6px 15px;
top: 37px; top: 37px;
@ -1471,9 +1633,14 @@ label.error {
color: #fff; color: #fff;
text-align: center; text-align: center;
border-left: 1px solid #909090; border-left: 1px solid #909090;
padding: 4px; padding: 0 4px;
font-size: 90%; font-size: 80%;
font-weight: normal; font-weight: normal;
vertical-align: top;
}
.oe-shortcuts li:hover {
background-color: #666;
} }
.oe-shortcuts li:first-child { .oe-shortcuts li:first-child {
border-left: none; border-left: none;
@ -1543,4 +1710,3 @@ ul.oe-arrow-list li.oe-arrow-list-selected .oe-arrow-list-after {
.openerp .oe_view_editor_tree_grid a { .openerp .oe_view_editor_tree_grid a {
display: block; display: block;
} }

View File

@ -27,7 +27,7 @@
.openerp .oe-import fieldset.oe-closed table { .openerp .oe-import fieldset.oe-closed table {
display: none; display: none;
} }
.openerp .separator.horizontal { .openerp .oe-import .separator.horizontal {
font-weight: bold; font-weight: bold;
border-bottom-width: 1px; border-bottom-width: 1px;
margin: 6px 4px 6px 1px; margin: 6px 4px 6px 1px;

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

View File

@ -30,8 +30,6 @@ openerp.web.Notification = openerp.web.Widget.extend(/** @lends openerp.web.Not
this.$element.notify('create', 'oe_notification_alert', { this.$element.notify('create', 'oe_notification_alert', {
title: title, title: title,
text: text text: text
}, {
expires: false
}); });
} }
@ -242,6 +240,7 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
init: function(parent, element_id, option_id) { init: function(parent, element_id, option_id) {
this._super(parent, element_id); this._super(parent, element_id);
this.$option_id = $('#' + option_id); this.$option_id = $('#' + option_id);
this.unblockUIFunction = $.unblockUI;
}, },
start: function() { start: function() {
this._super(); this._super();
@ -337,10 +336,26 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
self.widget_parent.do_login( self.widget_parent.do_login(
info.db, admin.login, admin.password); info.db, admin.login, admin.password);
self.stop(); self.stop();
$.unblockUI(); self.unblockUI();
}); });
}); });
}, },
/**
* Blocks UI and replaces $.unblockUI by a noop to prevent third parties
* from unblocking the UI
*/
blockUI: function () {
$.blockUI();
$.unblockUI = function () {};
},
/**
* Reinstates $.unblockUI so third parties can play with blockUI, and
* unblocks the UI
*/
unblockUI: function () {
$.unblockUI = this.unblockUIFunction;
$.unblockUI();
},
/** /**
* Displays an error dialog resulting from the various RPC communications * Displays an error dialog resulting from the various RPC communications
* failing over themselves * failing over themselves
@ -366,10 +381,10 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
self.$option_id.find("form[name=create_db_form]").validate({ self.$option_id.find("form[name=create_db_form]").validate({
submitHandler: function (form) { submitHandler: function (form) {
var fields = $(form).serializeArray(); var fields = $(form).serializeArray();
$.blockUI(); self.blockUI();
self.rpc("/web/database/create", {'fields': fields}, function(result) { self.rpc("/web/database/create", {'fields': fields}, function(result) {
if (result.error) { if (result.error) {
$.unblockUI(); self.unblockUI();
self.display_error(result); self.display_error(result);
return; return;
} }
@ -417,7 +432,7 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
.html(QWeb.render("BackupDB", self)) .html(QWeb.render("BackupDB", self))
.find("form[name=backup_db_form]").validate({ .find("form[name=backup_db_form]").validate({
submitHandler: function (form) { submitHandler: function (form) {
$.blockUI(); self.blockUI();
self.session.get_file({ self.session.get_file({
form: form, form: form,
error: function (body) { error: function (body) {
@ -427,7 +442,7 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
error: error[1] error: error[1]
}); });
}, },
complete: $.unblockUI complete: $.proxy(self, 'unblockUI')
}); });
} }
}); });
@ -438,7 +453,7 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
self.$option_id.find("form[name=restore_db_form]").validate({ self.$option_id.find("form[name=restore_db_form]").validate({
submitHandler: function (form) { submitHandler: function (form) {
$.blockUI(); self.blockUI();
$(form).ajaxSubmit({ $(form).ajaxSubmit({
url: '/web/database/restore', url: '/web/database/restore',
type: 'POST', type: 'POST',
@ -463,9 +478,7 @@ openerp.web.Database = openerp.web.Widget.extend(/** @lends openerp.web.Database
}) })
} }
}, },
complete: function () { complete: $.proxy(self, 'unblockUI')
$.unblockUI();
}
}); });
} }
}); });

View File

@ -1029,7 +1029,8 @@ openerp.web.TranslationDataBase = openerp.web.Class.extend(/** @lends openerp.we
set_bundle: function(translation_bundle) { set_bundle: function(translation_bundle) {
var self = this; var self = this;
this.db = {}; this.db = {};
var modules = _.keys(translation_bundle.modules).sort(); var modules = _.keys(translation_bundle.modules);
modules.sort();
if (_.include(modules, "web")) { if (_.include(modules, "web")) {
modules = ["web"].concat(_.without(modules, "web")); modules = ["web"].concat(_.without(modules, "web"));
} }

View File

@ -265,14 +265,25 @@ openerp.web.DataSet = openerp.web.Widget.extend( /** @lends openerp.web.DataSet
return this; return this;
}, },
select_id: function(id) { select_id: function(id) {
var idx = _.indexOf(this.ids, id); var idx = this.get_id_index(id);
if (idx === -1) { if (idx === null) {
return false; return false;
} else { } else {
this.index = idx; this.index = idx;
return true; return true;
} }
}, },
get_id_index: function(id) {
for (var i=0, ii=this.ids.length; i<ii; i++) {
// Here we use type coercion because of the mess potentially caused by
// OpenERP ids fetched from the DOM as string. (eg: dhtmlxcalendar)
// OpenERP ids can be non-numeric too ! (eg: recursive events in calendar)
if (id == this.ids[i]) {
return i;
}
}
return null;
},
/** /**
* Read records. * Read records.
* *
@ -414,8 +425,8 @@ openerp.web.DataSet = openerp.web.Widget.extend( /** @lends openerp.web.DataSet
return this.rpc('/web/dataset/call', { return this.rpc('/web/dataset/call', {
model: this.model, model: this.model,
method: method, method: method,
domain_id: domain_index || null, domain_id: domain_index == undefined ? null : domain_index,
context_id: context_index || null, context_id: context_index == undefined ? null : context_index,
args: args || [] args: args || []
}, callback, error_callback); }, callback, error_callback);
}, },
@ -433,7 +444,7 @@ openerp.web.DataSet = openerp.web.Widget.extend( /** @lends openerp.web.DataSet
model: this.model, model: this.model,
method: method, method: method,
domain_id: null, domain_id: null,
context_id: 1, context_id: args.length - 1,
args: args || [] args: args || []
}, callback, error_callback); }, callback, error_callback);
}, },

View File

@ -183,6 +183,20 @@ openerp.web.DataImport = openerp.web.Dialog.extend({
this.$element.find('#result').empty(); this.$element.find('#result').empty();
var headers, result_node = this.$element.find("#result"); var headers, result_node = this.$element.find("#result");
if (results['error']) {
result_node.append(QWeb.render('ImportView.error', {
'error': results['error']}));
this.$element.find('fieldset').removeClass('oe-closed');
return;
}
if (results['success']) {
if (this.widget_parent.widget_parent.active_view == "list") {
this.widget_parent.reload_content();
}
this.stop();
return;
}
if (results['records']) { if (results['records']) {
var lines_to_skip = parseInt(this.$element.find('#csv_skip').val(), 10), var lines_to_skip = parseInt(this.$element.find('#csv_skip').val(), 10),
with_headers = this.$element.find('#file_has_headers').prop('checked'); with_headers = this.$element.find('#file_has_headers').prop('checked');
@ -195,16 +209,6 @@ openerp.web.DataImport = openerp.web.Dialog.extend({
: results.records : results.records
})); }));
this.$element.find('fieldset').addClass('oe-closed'); this.$element.find('fieldset').addClass('oe-closed');
} else if (results['error']) {
result_node.append(QWeb.render('ImportView.error', {
'error': results['error']}));
this.$element.find('fieldset').removeClass('oe-closed');
} else if (results['success']) {
if (this.widget_parent.widget_parent.active_view == "list") {
this.widget_parent.reload_content();
}
this.stop();
return;
} }
this.$element.find('form').removeClass('oe-import-no-result'); this.$element.find('form').removeClass('oe-import-no-result');

View File

@ -158,16 +158,17 @@ openerp.web.parse_value = function (value, descriptor, value_if_empty) {
var tmp = Number(value); var tmp = Number(value);
if (!isNaN(tmp)) if (!isNaN(tmp))
return tmp; return tmp;
tmp = value.replace(openerp.web._t.database.parameters.decimal_point, ".");
var tmp2 = tmp; var tmp2 = value;
do { do {
tmp = tmp2; tmp = tmp2;
tmp2 = tmp.replace(openerp.web._t.database.parameters.thousands_sep, ""); tmp2 = tmp.replace(openerp.web._t.database.parameters.thousands_sep, "");
} while(tmp !== tmp2); } while(tmp !== tmp2);
tmp = Number(tmp); var reformatted_value = tmp.replace(openerp.web._t.database.parameters.decimal_point, ".");
if (isNaN(tmp)) var parsed = Number(reformatted_value);
if (isNaN(parsed))
throw new Error(value + " is not a correct float"); throw new Error(value + " is not a correct float");
return tmp; return parsed;
case 'float_time': case 'float_time':
var float_time_pair = value.split(":"); var float_time_pair = value.split(":");
if (float_time_pair.length != 2) if (float_time_pair.length != 2)

View File

@ -198,17 +198,11 @@ openerp.web.SearchView = openerp.web.Widget.extend(/** @lends openerp.web.Search
var self = this; var self = this;
var select = this.$element.find(".oe_search-view-filters-management"); var select = this.$element.find(".oe_search-view-filters-management");
var val = select.val(); var val = select.val();
if (val.slice(0,1) == "_") { // useless action
select.val("_filters");
return;
}
switch(val) { switch(val) {
case 'add_to_dashboard': case 'add_to_dashboard':
this.on_add_to_dashboard(); this.on_add_to_dashboard();
break; break;
case 'manage_filters': case 'manage_filters':
select.val("_filters");
this.do_action({ this.do_action({
res_model: 'ir.filters', res_model: 'ir.filters',
views: [[false, 'list'], [false, 'form']], views: [[false, 'list'], [false, 'form']],
@ -216,12 +210,10 @@ openerp.web.SearchView = openerp.web.Widget.extend(/** @lends openerp.web.Search
context: {"search_default_user_id": this.session.uid, context: {"search_default_user_id": this.session.uid,
"search_default_model_id": this.dataset.model}, "search_default_model_id": this.dataset.model},
target: "current", target: "current",
limit : 80, limit : 80
auto_search : true
}); });
break; break;
case 'save_filter': case 'save_filter':
select.val("_filters");
var data = this.build_search_data(); var data = this.build_search_data();
var context = new openerp.web.CompoundContext(); var context = new openerp.web.CompoundContext();
_.each(data.contexts, function(x) { _.each(data.contexts, function(x) {
@ -261,6 +253,8 @@ openerp.web.SearchView = openerp.web.Widget.extend(/** @lends openerp.web.Search
val = parseInt(val, 10); val = parseInt(val, 10);
var filter = this.managed_filters[val]; var filter = this.managed_filters[val];
this.on_search([filter.domain], [filter.context], []); this.on_search([filter.domain], [filter.context], []);
} else {
select.val('');
} }
}, },
on_add_to_dashboard: function() { on_add_to_dashboard: function() {

View File

@ -26,7 +26,6 @@ openerp.web.ViewEditor = openerp.web.Widget.extend({
type: 'ir.actions.act_window', type: 'ir.actions.act_window',
target: "current", target: "current",
limit: this.dataset.limit || 80, limit: this.dataset.limit || 80,
auto_search: true,
flags: { flags: {
sidebar: false, sidebar: false,
deletable: false, deletable: false,

View File

@ -33,6 +33,7 @@ openerp.web.FormView = openerp.web.View.extend( /** @lends openerp.web.FormView#
this.widgets = {}; this.widgets = {};
this.widgets_counter = 0; this.widgets_counter = 0;
this.fields = {}; this.fields = {};
this.fields_order = [];
this.datarecord = {}; this.datarecord = {};
this.show_invalid = true; this.show_invalid = true;
this.default_focus_field = null; this.default_focus_field = null;
@ -87,6 +88,7 @@ openerp.web.FormView = openerp.web.View.extend( /** @lends openerp.web.FormView#
on_loaded: function(data) { on_loaded: function(data) {
var self = this; var self = this;
if (data) { if (data) {
this.fields_order = [];
this.fields_view = data; this.fields_view = data;
var frame = new (this.registry.get_object('frame'))(this, this.fields_view.arch); var frame = new (this.registry.get_object('frame'))(this, this.fields_view.arch);
@ -156,15 +158,16 @@ openerp.web.FormView = openerp.web.View.extend( /** @lends openerp.web.FormView#
deferred_stack.push('force resolution if no fields'); deferred_stack.push('force resolution if no fields');
return deferred_stack.then(function() { return deferred_stack.then(function() {
if (!record.id) { if (!record.id) {
// New record: Second pass in order to trigger the onchanges
self.show_invalid = false; self.show_invalid = false;
for (var f in record) { // New record: Second pass in order to trigger the onchanges
var field = self.fields[f]; // respecting the fields order defined in the view
if (field) { _.each(self.fields_order, function(field_name) {
if (record[field_name] !== undefined) {
var field = self.fields[field_name];
field.dirty = true; field.dirty = true;
self.do_onchange(field); self.do_onchange(field);
} }
} });
} }
self.on_form_changed(); self.on_form_changed();
self.initial_mutating_lock.resolve(); self.initial_mutating_lock.resolve();
@ -380,6 +383,7 @@ openerp.web.FormView = openerp.web.View.extend( /** @lends openerp.web.FormView#
return def.promise(); return def.promise();
}, },
can_be_discarded: function() { can_be_discarded: function() {
return true; // Disabled until the page view and button refactoring is done
return !this.is_dirty() || confirm(_t("Warning, the record has been modified, your changes will be discarded.")); return !this.is_dirty() || confirm(_t("Warning, the record has been modified, your changes will be discarded."));
}, },
/** /**
@ -1113,6 +1117,11 @@ openerp.web.form.WidgetLabel = openerp.web.form.Widget.extend({
if (this.node.tag == 'label' && (this.align === 'left' || this.node.attrs.colspan || (this.string && this.string.length > 32))) { if (this.node.tag == 'label' && (this.align === 'left' || this.node.attrs.colspan || (this.string && this.string.length > 32))) {
this.template = "WidgetParagraph"; this.template = "WidgetParagraph";
this.colspan = parseInt(this.node.attrs.colspan || 1, 10); this.colspan = parseInt(this.node.attrs.colspan || 1, 10);
// Widgets default to right-aligned, but paragraph defaults to
// left-aligned
if (isNaN(parseFloat(this.node.attrs.align))) {
this.align = 'left';
}
} else { } else {
this.colspan = 1; this.colspan = 1;
this.width = '1%'; this.width = '1%';
@ -1153,6 +1162,7 @@ openerp.web.form.Field = openerp.web.form.Widget.extend(/** @lends openerp.web.f
this.name = node.attrs.name; this.name = node.attrs.name;
this.value = undefined; this.value = undefined;
view.fields[this.name] = this; view.fields[this.name] = this;
view.fields_order.push(this.name);
this.type = node.attrs.widget || view.fields_view.fields[node.attrs.name].type; this.type = node.attrs.widget || view.fields_view.fields[node.attrs.name].type;
this.element_name = "field_" + this.name + "_" + this.type; this.element_name = "field_" + this.name + "_" + this.type;
@ -2178,6 +2188,7 @@ openerp.web.form.FieldOne2Many = openerp.web.form.Field.extend({
var self = this; var self = this;
if (!this.dataset) if (!this.dataset)
return []; return [];
this.save_any_view();
var val = this.dataset.delete_all ? [commands.delete_all()] : []; var val = this.dataset.delete_all ? [commands.delete_all()] : [];
val = val.concat(_.map(this.dataset.ids, function(id) { val = val.concat(_.map(this.dataset.ids, function(id) {
var alter_order = _.detect(self.dataset.to_create, function(x) {return x.id === id;}); var alter_order = _.detect(self.dataset.to_create, function(x) {return x.id === id;});
@ -2766,6 +2777,7 @@ openerp.web.form.FieldReference = openerp.web.form.Field.extend({
this.view_id = 'reference_' + _.uniqueId(); this.view_id = 'reference_' + _.uniqueId();
this.widgets = {}; this.widgets = {};
this.fields = {}; this.fields = {};
this.fields_order = [];
this.selection = new openerp.web.form.FieldSelection(this, { attrs: { this.selection = new openerp.web.form.FieldSelection(this, { attrs: {
name: 'selection', name: 'selection',
widget: 'selection' widget: 'selection'

View File

@ -462,6 +462,7 @@ openerp.web.ListView = openerp.web.View.extend( /** @lends openerp.web.ListView#
* @param {Object} results results of evaluating domain and process for a search * @param {Object} results results of evaluating domain and process for a search
*/ */
do_search: function (domain, context, group_by) { do_search: function (domain, context, group_by) {
this.page = 0;
this.groups.datagroup = new openerp.web.DataGroup( this.groups.datagroup = new openerp.web.DataGroup(
this, this.model, domain, context, group_by); this, this.model, domain, context, group_by);
this.groups.datagroup.sort = this.dataset._sort; this.groups.datagroup.sort = this.dataset._sort;
@ -1191,7 +1192,7 @@ openerp.web.ListView.Groups = openerp.web.Class.extend( /** @lends openerp.web.L
} else if (column.type === 'float') { } else if (column.type === 'float') {
format = "%.2f"; format = "%.2f";
} }
$('<td>') $('<td class="oe-number">')
.text(_.str.sprintf(format, value)) .text(_.str.sprintf(format, value))
.appendTo($row); .appendTo($row);
} else { } else {
@ -1280,10 +1281,15 @@ openerp.web.ListView.Groups = openerp.web.Class.extend( /** @lends openerp.web.L
items: '> tr[data-id]', items: '> tr[data-id]',
stop: function (event, ui) { stop: function (event, ui) {
var to_move = list.records.get(ui.item.data('id')), var to_move = list.records.get(ui.item.data('id')),
target_id = ui.item.prev().data('id'); target_id = ui.item.prev().data('id'),
from_index = list.records.indexOf(to_move),
target = list.records.get(target_id);
if (list.records.at(from_index - 1) == target) {
return;
}
list.records.remove(to_move); list.records.remove(to_move);
var to = target_id ? list.records.indexOf(list.records.get(target_id)) + 1 : 0; var to = target_id ? list.records.indexOf(target) + 1 : 0;
list.records.add(to_move, { at: to }); list.records.add(to_move, { at: to });
// resequencing time! // resequencing time!
@ -1295,7 +1301,14 @@ openerp.web.ListView.Groups = openerp.web.Class.extend( /** @lends openerp.web.L
// write are independent from one another, so we can just // write are independent from one another, so we can just
// launch them all at the same time and we don't really // launch them all at the same time and we don't really
// give a fig about when they're done // give a fig about when they're done
dataset.write(record.get('id'), {sequence: seq}); // FIXME: breaks on o2ms (e.g. Accounting > Financial
// Accounting > Taxes > Taxes, child tax accounts)
// when synchronous (without setTimeout)
(function (dataset, id, seq) {
setTimeout(function () {
dataset.write(id, {sequence: seq});
}, 0);
}(dataset, record.get('id'), seq));
record.set('sequence', seq); record.set('sequence', seq);
} }

View File

@ -91,6 +91,14 @@ session.web.ActionManager = session.web.Widget.extend({
return this[type](action, on_close); return this[type](action, on_close);
}, },
ir_actions_act_window: function (action, on_close) { ir_actions_act_window: function (action, on_close) {
if (_(['base.module.upgrade', 'base.setup.installer'])
.contains(action.res_model)) {
var old_close = on_close;
on_close = function () {
session.webclient.do_reload();
if (old_close) { old_close(); }
};
}
if (action.target === 'new') { if (action.target === 'new') {
if (this.dialog == null) { if (this.dialog == null) {
this.dialog = new session.web.Dialog(this, { title: action.name, width: '80%' }); this.dialog = new session.web.Dialog(this, { title: action.name, width: '80%' });
@ -121,12 +129,6 @@ session.web.ActionManager = session.web.Widget.extend({
if (!this.dialog && on_closed) { if (!this.dialog && on_closed) {
on_closed(); on_closed();
} }
if (this.dialog && action.context) {
var model = action.context.active_model;
if (model === 'base.module.upgrade' || model === 'base.setup.installer' || model === 'base.module.upgrade') {
session.webclient.do_reload();
}
}
this.dialog_stop(); this.dialog_stop();
}, },
ir_actions_server: function (action, on_closed) { ir_actions_server: function (action, on_closed) {
@ -186,7 +188,6 @@ session.web.ViewManager = session.web.Widget.extend(/** @lends session.web.View
this.model = dataset ? dataset.model : undefined; this.model = dataset ? dataset.model : undefined;
this.dataset = dataset; this.dataset = dataset;
this.searchview = null; this.searchview = null;
this.last_search = false;
this.active_view = null; this.active_view = null;
this.views_src = _.map(views, function(x) {return x instanceof Array? {view_id: x[0], view_type: x[1]} : x;}); this.views_src = _.map(views, function(x) {return x instanceof Array? {view_id: x[0], view_type: x[1]} : x;});
this.views = {}; this.views = {};
@ -211,6 +212,7 @@ session.web.ViewManager = session.web.Widget.extend(/** @lends session.web.View
var views_ids = {}; var views_ids = {};
_.each(this.views_src, function(view) { _.each(this.views_src, function(view) {
self.views[view.view_type] = $.extend({}, view, { self.views[view.view_type] = $.extend({}, view, {
deferred : $.Deferred(),
controller : null, controller : null,
options : _.extend({ options : _.extend({
sidebar_id : self.element_id + '_sidebar_' + view.view_type, sidebar_id : self.element_id + '_sidebar_' + view.view_type,
@ -248,14 +250,15 @@ session.web.ViewManager = session.web.Widget.extend(/** @lends session.web.View
var container = $("#" + this.element_id + '_view_' + view_type); var container = $("#" + this.element_id + '_view_' + view_type);
view_promise = controller.appendTo(container); view_promise = controller.appendTo(container);
this.views[view_type].controller = controller; this.views[view_type].controller = controller;
this.views[view_type].deferred.resolve();
$.when(view_promise).then(function() { $.when(view_promise).then(function() {
self.on_controller_inited(view_type, controller); self.on_controller_inited(view_type, controller);
if (self.searchview && view.controller.searchable !== false) { if (self.searchview && view.controller.searchable !== false) {
self.do_searchview_search(); self.searchview.do_search();
} }
}); });
} else if (this.searchview && view.controller.searchable !== false) { } else if (this.searchview && view.controller.searchable !== false) {
self.do_searchview_search(); this.searchview.do_search();
} }
if (this.searchview) { if (this.searchview) {
@ -278,7 +281,7 @@ session.web.ViewManager = session.web.Widget.extend(/** @lends session.web.View
} }
} }
$.when(view_promise).then(function () { $.when(view_promise).then(function () {
self.$element.find('.oe_view_title:first').text( self.$element.find('.oe_view_title_text:first').text(
self.display_title()); self.display_title());
}); });
return view_promise; return view_promise;
@ -304,20 +307,15 @@ session.web.ViewManager = session.web.Widget.extend(/** @lends session.web.View
do_searchview_search: function(domains, contexts, groupbys) { do_searchview_search: function(domains, contexts, groupbys) {
var self = this, var self = this,
controller = this.views[this.active_view].controller; controller = this.views[this.active_view].controller;
if (domains || contexts) { this.rpc('/web/session/eval_domain_and_context', {
this.rpc('/web/session/eval_domain_and_context', { domains: [this.action.domain || []].concat(domains || []),
domains: [this.action.domain || []].concat(domains || []), contexts: [this.action.context || {}].concat(contexts || []),
contexts: [this.action.context || {}].concat(contexts || []), group_by_seq: groupbys || []
group_by_seq: groupbys || [] }, function (results) {
}, function (results) { self.dataset.context = results.context;
self.dataset.context = results.context; self.dataset.domain = results.domain;
self.dataset.domain = results.domain; controller.do_search(results.domain, results.context, results.group_by);
self.last_search = [results.domain, results.context, results.group_by]; });
controller.do_search(results.domain, results.context, results.group_by);
});
} else if (this.last_search) {
controller.do_search.apply(controller, this.last_search);
}
}, },
/** /**
* Event launched when a controller has been inited. * Event launched when a controller has been inited.
@ -378,7 +376,7 @@ session.web.ViewManagerAction = session.web.ViewManager.extend(/** @lends oepner
if (action.res_model == 'board.board' && action.views.length == 1 && action.views) { if (action.res_model == 'board.board' && action.views.length == 1 && action.views) {
// Not elegant but allows to avoid form chrome (pager, save/new // Not elegant but allows to avoid form chrome (pager, save/new
// buttons, sidebar, ...) displaying // buttons, sidebar, ...) displaying
this.flags.search_view = this.flags.pager = this.flags.sidebar = this.flags.action_buttons = false; this.flags.display_title = this.flags.search_view = this.flags.pager = this.flags.sidebar = this.flags.action_buttons = false;
} }
// setup storage for session-wise menu hiding // setup storage for session-wise menu hiding
@ -411,10 +409,6 @@ session.web.ViewManagerAction = session.web.ViewManager.extend(/** @lends oepner
var main_view_loaded = this._super(); var main_view_loaded = this._super();
var manager_ready = $.when(searchview_loaded, main_view_loaded); var manager_ready = $.when(searchview_loaded, main_view_loaded);
if (searchview_loaded && this.action['auto_search'] !== false) {
// schedule auto_search
manager_ready.then(this.searchview.do_search);
}
this.$element.find('.oe_get_xml_view').click(function () { this.$element.find('.oe_get_xml_view').click(function () {
// TODO: add search view? // TODO: add search view?
@ -424,8 +418,8 @@ session.web.ViewManagerAction = session.web.ViewManager.extend(/** @lends oepner
}); });
if (this.action.help && !this.flags.low_profile) { if (this.action.help && !this.flags.low_profile) {
var Users = new session.web.DataSet(self, 'res.users'), var Users = new session.web.DataSet(self, 'res.users'),
header = this.$element.find('.oe-view-manager-header'); $tips = this.$element.find('.oe_view_manager_menu_tips');
header.delegate('blockquote button', 'click', function() { $tips.delegate('blockquote button', 'click', function() {
var $this = $(this); var $this = $(this);
//noinspection FallthroughInSwitchStatementJS //noinspection FallthroughInSwitchStatementJS
switch ($this.attr('name')) { switch ($this.attr('name')) {
@ -442,7 +436,7 @@ session.web.ViewManagerAction = session.web.ViewManager.extend(/** @lends oepner
if (!(user && user.id === self.session.uid)) { if (!(user && user.id === self.session.uid)) {
return; return;
} }
header.find('blockquote').toggle(user.menu_tips); $tips.find('blockquote').toggle(user.menu_tips);
}); });
} }
} }
@ -470,10 +464,10 @@ session.web.ViewManagerAction = session.web.ViewManager.extend(/** @lends oepner
view_id = (fvg && fvg.view_id) || '--'; view_id = (fvg && fvg.view_id) || '--';
self.$element.find('.oe_get_xml_view span').text(view_id); self.$element.find('.oe_get_xml_view span').text(view_id);
if (!self.action.name && fvg) { if (!self.action.name && fvg) {
self.$element.find('.oe_view_title').text(fvg.arch.attrs.string || fvg.name); self.$element.find('.oe_view_title_text').text(fvg.arch.attrs.string || fvg.name);
} }
var $title = self.$element.find('.oe_view_title'), var $title = self.$element.find('.oe_view_title_text'),
$search_prefix = $title.find('span.oe_searchable_view'); $search_prefix = $title.find('span.oe_searchable_view');
if (controller.searchable !== false) { if (controller.searchable !== false) {
if (!$search_prefix.length) { if (!$search_prefix.length) {
@ -915,7 +909,19 @@ session.web.View = session.web.Widget.extend(/** @lends session.web.View# */{
if (action_data.special) { if (action_data.special) {
return handler({result: {"type":"ir.actions.act_window_close"}}); return handler({result: {"type":"ir.actions.act_window_close"}});
} else if (action_data.type=="object") { } else if (action_data.type=="object") {
return dataset.call_button(action_data.name, [[record_id], context], handler); var args = [[record_id]], additional_args = [];
if (action_data.args) {
try {
// Warning: quotes and double quotes problem due to json and xml clash
// Maybe we should force escaping in xml or do a better parse of the args array
additional_args = JSON.parse(action_data.args.replace(/'/g, '"'));
args = args.concat(additional_args);
} catch(e) {
console.error("Could not JSON.parse arguments", action_data.args);
}
}
args.push(context);
return dataset.call_button(action_data.name, args, handler);
} else if (action_data.type=="action") { } else if (action_data.type=="action") {
return this.rpc('/web/action/load', { action_id: parseInt(action_data.name, 10), context: context, do_not_eval: true}, handler); return this.rpc('/web/action/load', { action_id: parseInt(action_data.name, 10), context: context, do_not_eval: true}, handler);
} else { } else {
@ -969,7 +975,6 @@ session.web.View = session.web.Widget.extend(/** @lends session.web.View# */{
domain : [['type', '!=', 'object'], '|', ['name', '=', this.dataset.model], ['name', 'ilike', this.dataset.model + ',']], domain : [['type', '!=', 'object'], '|', ['name', '=', this.dataset.model], ['name', 'ilike', this.dataset.model + ',']],
views: [[false, 'list'], [false, 'form']], views: [[false, 'list'], [false, 'form']],
type : 'ir.actions.act_window', type : 'ir.actions.act_window',
auto_search : true,
view_type : "list", view_type : "list",
view_mode : "list" view_mode : "list"
}); });

View File

@ -360,10 +360,6 @@
<li> <li>
<a href="javascript:void(0)" title="About" class="about"><img src="/web/static/src/img/header-about.png" width="16" height="16" border="0"/></a> <a href="javascript:void(0)" title="About" class="about"><img src="/web/static/src/img/header-about.png" width="16" height="16" border="0"/></a>
</li> </li>
<li class="oe-running-kitten">
<script>NekoType="valentine"</script>
<script src="http://webneko.net/n200504.js"></script>
</li>
</ul> </ul>
<div class="block"> <div class="block">
<a href="#logout" class="logout">LOGOUT</a> <a href="#logout" class="logout">LOGOUT</a>
@ -418,11 +414,12 @@
</t> </t>
<t t-name="ViewManager"> <t t-name="ViewManager">
<table class="view-manager-main-table"> <table class="view-manager-main-table">
<tbody>
<tr> <tr>
<td class="view-manager-main-content"> <td class="view-manager-main-content">
<div class="oe-view-manager-header"> <div class="oe-view-manager-header">
<h2 class="oe_view_title" t-if="self.flags.display_title !== false"> <h2 class="oe_view_title" t-if="self.flags.display_title !== false">
<t t-esc="self.display_title()"/> <span class="oe_view_title_text"><t t-esc="self.display_title()"/></span>
</h2> </h2>
<div class="oe_vm_switch"> <div class="oe_vm_switch">
<t t-if="views.length != 1" t-foreach="views" t-as="view"> <t t-if="views.length != 1" t-foreach="views" t-as="view">
@ -443,21 +440,30 @@
</t> </t>
</td> </td>
</tr> </tr>
</tbody>
</table> </table>
</t> </t>
<t t-extend="ViewManager" t-name="ViewManagerAction"> <t t-extend="ViewManager" t-name="ViewManagerAction">
<t t-jquery=".oe-view-manager-header" t-operation="prepend"> <t t-jquery=".view-manager-main-table tbody" t-operation="prepend">
<blockquote t-if="self.action.help and !self.flags.low_profile <tr>
and !(self.action.id in self.session.hidden_menutips)"> <td class="oe_view_manager_menu_tips" colspan="2">
<p><t t-esc="self.action.help"/></p> <blockquote t-if="self.action.help and !self.flags.low_profile
<div> and !(self.action.id in self.session.hidden_menutips)">
<button type="button" name="hide">Hide this tip</button> <p><t t-esc="self.action.help"/></p>
<button type="button" name="disable">Disable all tips</button> <div>
</div> <button type="button" name="hide">Hide this tip</button>
</blockquote> <button type="button" name="disable">Disable all tips</button>
<a class="oe-shortcut-toggle" title="Add / Remove Shortcut..." </div>
href="javascript: void(0)"> </a> </blockquote>
</td>
</tr>
</t>
<t t-jquery="h2.oe_view_title" t-operation="prepend">
<a class="oe-shortcut-toggle" title="Add / Remove Shortcut..."
href="javascript: void(0)"> </a>
</t>
<t t-jquery="h2.oe_view_title" t-operation="after">
<button t-if="self.session.debug" class="oe_get_xml_view"> <button t-if="self.session.debug" class="oe_get_xml_view">
View#<span></span> View#<span></span>
</button> </button>
@ -643,7 +649,7 @@
</td> </td>
</t> </t>
<td t-if="options.deletable" class='oe-record-delete' width="1"> <td t-if="options.deletable" class='oe-record-delete' width="1">
<button type="button" name="delete"></button> <button type="button" name="delete"></button>
</td> </td>
</tr> </tr>
<t t-name="ListView.row.form"> <t t-name="ListView.row.form">
@ -730,6 +736,11 @@
</tr> </tr>
</table> </table>
</t> </t>
<t t-name="WidgetFrame.readonly" t-extend="WidgetFrame">
<t t-jquery="&gt;table">
this.attr('class', this.attr('class')+' oe_form_readonly');
</t>
</t>
<t t-name="WidgetGroup"> <t t-name="WidgetGroup">
<t t-if="widget.string"> <t t-if="widget.string">
<fieldset class="oe_group_box"> <fieldset class="oe_group_box">
@ -1129,16 +1140,17 @@
</form> </form>
</t> </t>
<t t-name="SearchView.managed-filters"> <t t-name="SearchView.managed-filters">
<option value="_filters">-- Filters --</option> <option/>
<t t-set="i" t-value="0"/> <optgroup label="-- Filters --">
<t t-foreach="filters" t-as="filter"> <t t-foreach="filters" t-as="filter">
<option t-att-value="'get:' + i"><t t-esc="filter.name"/></option> <option t-attf-value="get:#{filter_index}"><t t-esc="filter.name"/></option>
<t t-set="i" t-value="i+1"/> </t>
</t> </optgroup>
<option value="_actions">-- Actions --</option> <optgroup label="-- Actions --">
<option value="save_filter">Save Filter</option> <option value="save_filter">Save Filter</option>
<option value="add_to_dashboard">Add to Dashboard</option> <option value="add_to_dashboard">Add to Dashboard</option>
<option value="manage_filters">Manage Filters</option> <option value="manage_filters">Manage Filters</option>
</optgroup>
</t> </t>
<t t-name="SearchView.managed-filters.add"> <t t-name="SearchView.managed-filters.add">
<div> <div>
@ -1674,7 +1686,7 @@
</table> </table>
</t> </t>
<t t-name="ImportView.error"> <t t-name="ImportView.error">
<p style="white-space:pre-line;">The import failed due to:<t t-esc="error.message"/></p> <p style="white-space:pre;">The import failed due to:<t t-esc="error.message"/></p>
<t t-if="error.preview"> <t t-if="error.preview">
<p>Here is a preview of the file we could not import:</p> <p>Here is a preview of the file we could not import:</p>
<pre><t t-esc="error.preview"/></pre> <pre><t t-esc="error.preview"/></pre>

View File

@ -63,6 +63,13 @@ $(document).ready(function () {
// var res = openerp.web.parse_value(val.toString("HH:mm:ss"), {type:"time"}); // var res = openerp.web.parse_value(val.toString("HH:mm:ss"), {type:"time"});
// equal(val.toString("HH:mm:ss"), res.toString("HH:mm:ss")); // equal(val.toString("HH:mm:ss"), res.toString("HH:mm:ss"));
// }); // });
test('parse_integer', function () {
var val = openerp.web.parse_value('123,456', {type: 'integer'});
equal(val, 123456);
openerp.web._t.database.parameters.thousands_sep = '|';
var val2 = openerp.web.parse_value('123|456', {type: 'integer'});
equal(val2, 123456);
});
test("parse_float", function () { test("parse_float", function () {
var str = "134,112.1234"; var str = "134,112.1234";
var val = openerp.web.parse_value(str, {type:"float"}); var val = openerp.web.parse_value(str, {type:"float"});
@ -70,6 +77,12 @@ $(document).ready(function () {
var str = "-134,112.1234"; var str = "-134,112.1234";
var val = openerp.web.parse_value(str, {type:"float"}); var val = openerp.web.parse_value(str, {type:"float"});
equal(val, -134112.1234); equal(val, -134112.1234);
_.extend(openerp.web._t.database.parameters, {
decimal_point: ',',
thousands_sep: '.'
});
var val3 = openerp.web.parse_value('123.456,789', {type: 'float'});
equal(val3, 123456.789);
}); });
test('intersperse', function () { test('intersperse', function () {
var g = openerp.web.intersperse; var g = openerp.web.intersperse;
@ -100,6 +113,8 @@ $(document).ready(function () {
equal(g("12345678", [2, 0, 1], '.'), '12.34.56.78'); equal(g("12345678", [2, 0, 1], '.'), '12.34.56.78');
equal(g("12345678", [2, 0, 0], '.'), '12.34.56.78'); equal(g("12345678", [2, 0, 0], '.'), '12.34.56.78');
equal(g("12345678", [2, 0, -1], '.'), '12.34.56.78'); equal(g("12345678", [2, 0, -1], '.'), '12.34.56.78');
equal(g("12345678", [3,3,3,3], '.'), '12.345.678');
equal(g("12345678", [3,0], '.'), '12.345.678');
}); });
test('format_integer', function () { test('format_integer', function () {
openerp.web._t.database.parameters.grouping = [3, 3, 3, 3]; openerp.web._t.database.parameters.grouping = [3, 3, 3, 3];

View File

@ -1,6 +1,10 @@
{ {
"name": "web calendar", "name": "web calendar",
"category" : "Hidden", "category": "Hidden",
"description":
"""
OpenERP Web calendar view.
""",
"version": "2.0", "version": "2.0",
"depends": ['web'], "depends": ['web'],
"js": [ "js": [

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-03 15:02+0000\n" "PO-Revision-Date: 2011-11-03 15:02+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n" "Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-24 12:51+0000\n" "PO-Revision-Date: 2011-11-24 12:51+0000\n"
"Last-Translator: nasir khan saikat <nasir8891@gmail.com>\n" "Last-Translator: nasir khan saikat <nasir8891@gmail.com>\n"
"Language-Team: Bengali <bn@li.org>\n" "Language-Team: Bengali <bn@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-25 05:35+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14376)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-11 13:57+0000\n" "PO-Revision-Date: 2011-10-11 13:57+0000\n"
"Last-Translator: Jonas Mortensen <Unknown>\n" "Last-Translator: Jonas Mortensen <Unknown>\n"
"Language-Team: Danish <da@li.org>\n" "Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-10 12:36+0000\n" "PO-Revision-Date: 2011-10-10 12:36+0000\n"
"Last-Translator: Felix Schubert <Unknown>\n" "Last-Translator: Felix Schubert <Unknown>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-18 10:41+0000\n" "PO-Revision-Date: 2011-10-18 10:41+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n" "Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 15:54+0000\n" "PO-Revision-Date: 2011-10-07 15:54+0000\n"
"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n" "Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n"
"Language-Team: Spanish (Ecuador) <es_EC@li.org>\n" "Language-Team: Spanish (Ecuador) <es_EC@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-10 19:20+0000\n" "PO-Revision-Date: 2011-10-10 19:20+0000\n"
"Last-Translator: Aare Vesi <Unknown>\n" "Last-Translator: Aare Vesi <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n" "Language-Team: Estonian <et@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-23 12:12+0000\n" "PO-Revision-Date: 2011-10-23 12:12+0000\n"
"Last-Translator: fhe (OpenERP) <Unknown>\n" "Last-Translator: fhe (OpenERP) <Unknown>\n"
"Language-Team: French <fr@li.org>\n" "Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 10:25+0000\n" "PO-Revision-Date: 2011-10-19 10:25+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n" "Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -0,0 +1,30 @@
# Croatian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-28 12:04+0000\n"
"Last-Translator: Goran Kliska <gkliska@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;"
msgstr "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-08 13:39+0000\n" "PO-Revision-Date: 2011-10-08 13:39+0000\n"
"Last-Translator: Nicola Riolini - Micronaet <Unknown>\n" "Last-Translator: Nicola Riolini - Micronaet <Unknown>\n"
"Language-Team: Italian <it@li.org>\n" "Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -0,0 +1,30 @@
# Dutch translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-06 11:46+0000\n"
"Last-Translator: Douwe Wullink (Dypalio) <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-07 05:25+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr "Verantwoordelijke"
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr "Navigator"
#: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;"
msgstr "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 09:05+0000\n" "PO-Revision-Date: 2011-10-07 09:05+0000\n"
"Last-Translator: Niels Huylebroeck <Unknown>\n" "Last-Translator: Niels Huylebroeck <Unknown>\n"
"Language-Team: Dutch (Belgium) <nl_BE@li.org>\n" "Language-Team: Dutch (Belgium) <nl_BE@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-21 21:57+0000\n" "PO-Revision-Date: 2011-11-21 21:57+0000\n"
"Last-Translator: Daniel Reis <Unknown>\n" "Last-Translator: Daniel Reis <Unknown>\n"
"Language-Team: Portuguese <pt@li.org>\n" "Language-Team: Portuguese <pt@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-22 05:13+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -0,0 +1,30 @@
# Russian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-02 07:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Russian <ru@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;"
msgstr ""

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-23 14:42+0000\n" "PO-Revision-Date: 2011-10-23 14:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Slovak <sk@li.org>\n" "Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -7,15 +7,23 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 06:26+0000\n" "PO-Revision-Date: 2011-10-19 06:26+0000\n"
"Last-Translator: Anze (Neotek) <Unknown>\n" "Last-Translator: Anze (Neotek) <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n" "Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2011-10-07 10:38+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,6 +17,14 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 0.9.6\n" "Generated-By: Babel 0.9.6\n"
#: addons/web_calendar/static/src/js/calendar.js:409
msgid "Responsible"
msgstr ""
#: addons/web_calendar/static/src/js/calendar.js:438
msgid "Navigator"
msgstr ""
#: addons/web_calendar/static/src/xml/web_calendar.xml:0 #: addons/web_calendar/static/src/xml/web_calendar.xml:0
msgid "&nbsp;" msgid "&nbsp;"
msgstr "" msgstr ""

View File

@ -246,44 +246,75 @@ openerp.web_calendar.CalendarView = openerp.web.View.extend({
var self = this, var self = this,
data = this.get_event_data(event_obj); data = this.get_event_data(event_obj);
this.dataset.create(data, function(r) { this.dataset.create(data, function(r) {
var id = parseInt(r.result, 10); var id = r.result;
self.dataset.ids.push(id); self.dataset.ids.push(id);
scheduler.changeEventId(event_id, id); scheduler.changeEventId(event_id, id);
self.refresh_minical(); self.refresh_minical();
}, function(r, event) { }, function(r, event) {
self.creating_event_id = event_id;
self.form_dialog.form.on_record_loaded(data);
self.form_dialog.open();
event.preventDefault(); event.preventDefault();
self.do_create_event_with_formdialog(event_id, event_obj);
});
},
do_create_event_with_formdialog: function(event_id, event_obj) {
if (!event_obj) {
event_obj = scheduler.getEvent(event_id);
}
var self = this,
data = this.get_event_data(event_obj),
form = self.form_dialog.form,
fields_to_fetch = _(form.fields_view.fields).keys();
this.dataset.index = null;
self.creating_event_id = event_id;
this.form_dialog.form.do_show().then(function() {
form.show_invalid = false;
_.each(['date_start', 'date_stop', 'date_delay'], function(field) {
var field_name = self[field];
if (field_name) {
field = form.fields[field_name];
field.set_value(data[field_name]);
field.dirty = true;
form.do_onchange(field);
}
});
form.show_invalid = true;
self.form_dialog.open();
}); });
}, },
do_save_event: function(event_id, event_obj) { do_save_event: function(event_id, event_obj) {
var self = this, var self = this,
data = this.get_event_data(event_obj); data = this.get_event_data(event_obj),
this.dataset.write(parseInt(event_id, 10), data, {}, function() { index = this.dataset.get_id_index(event_id);
self.refresh_minical(); if (index != null) {
}); this.dataset.write(event_id, data, {}, function() {
self.refresh_minical();
});
}
}, },
do_delete_event: function(event_id, event_obj) { do_delete_event: function(event_id, event_obj) {
var self = this;
// dhtmlx sends this event even when it does not exist in openerp. // dhtmlx sends this event even when it does not exist in openerp.
// Eg: use cancel in dhtmlx new event dialog // Eg: use cancel in dhtmlx new event dialog
if (_.indexOf(this.dataset.ids, parseInt(event_id, 10)) > -1) { var self = this,
this.dataset.unlink(parseInt(event_id, 10), function() { index = this.dataset.get_id_index(event_id);
if (index !== null) {
this.dataset.unlink(event_id, function() {
self.refresh_minical(); self.refresh_minical();
}); });
} }
}, },
do_edit_event: function(event_id) { do_edit_event: function(event_id) {
var self = this; var self = this;
event_id = parseInt(event_id, 10); var index = this.dataset.get_id_index(event_id);
var index = _.indexOf(this.dataset.ids, event_id); if (index !== null) {
if (index > -1) {
this.dataset.index = index; this.dataset.index = index;
this.form_dialog.form.do_show().then(function() { this.form_dialog.form.do_show().then(function() {
self.form_dialog.open(); self.form_dialog.open();
}); });
return false; return false;
} else if (scheduler.getState().mode === 'month') {
this.do_create_event_with_formdialog(event_id);
// TODO: check dhtmlxscheduler problem here. At this line, scheduler
// event 'onEventChanged' bound to this.do_save_event() won't be fired !;
return false;
} }
return true; return true;
}, },

View File

@ -1,6 +1,10 @@
{ {
"name": "Web Chat", "name": "Web Chat",
"category" : "Hidden", "category": "Hidden",
"description":
"""
OpenERP Web chat module.
""",
"version": "2.0", "version": "2.0",
"depends": ['web'], "depends": ['web'],
"js": [ "js": [

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -1,6 +1,10 @@
{ {
"name": "web Dashboard", "name": "web Dashboard",
"category" : "Hidden", "category": "Hidden",
"description":
"""
OpenERP Web dashboard view.
""",
"version": "2.0", "version": "2.0",
"depends": ['web'], "depends": ['web'],
"js": [ "js": [

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-03 15:09+0000\n" "PO-Revision-Date: 2011-11-03 15:09+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n" "Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "إستعادة"
msgid "Undo" msgid "Undo"
msgstr "تراجع" msgstr "تراجع"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "أضف أداة"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "تغيير المخطط" msgstr "تغيير المخطط"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "اختر مخطط للعرض" msgstr "اختر مخطط للعرض"
@ -44,3 +44,29 @@ msgstr "التقدم:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-24 12:53+0000\n" "PO-Revision-Date: 2011-11-24 12:53+0000\n"
"Last-Translator: nasir khan saikat <nasir8891@gmail.com>\n" "Last-Translator: nasir khan saikat <nasir8891@gmail.com>\n"
"Language-Team: Bengali <bn@li.org>\n" "Language-Team: Bengali <bn@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-25 05:35+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14376)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -26,11 +26,11 @@ msgid "Undo"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget" msgid "Change layout"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "&nbsp;"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
@ -44,3 +44,29 @@ msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-11 13:59+0000\n" "PO-Revision-Date: 2011-10-11 13:59+0000\n"
"Last-Translator: Jonas Mortensen <Unknown>\n" "Last-Translator: Jonas Mortensen <Unknown>\n"
"Language-Team: Danish <da@li.org>\n" "Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Nulstil"
msgid "Undo" msgid "Undo"
msgstr "Fortryd" msgstr "Fortryd"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Tilføj widget"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Skift layout" msgstr "Skift layout"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Vælg layout for kontrolpanel" msgstr "Vælg layout for kontrolpanel"
@ -44,3 +44,29 @@ msgstr "fremskridt:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-10 12:38+0000\n" "PO-Revision-Date: 2011-10-10 12:38+0000\n"
"Last-Translator: Felix Schubert <Unknown>\n" "Last-Translator: Felix Schubert <Unknown>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Zurücksetzen"
msgid "Undo" msgid "Undo"
msgstr "Rückgängig" msgstr "Rückgängig"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Widget hinzufügen"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Layout wechseln" msgstr "Layout wechseln"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Wählen Sie das Dashboard Layout" msgstr "Wählen Sie das Dashboard Layout"
@ -44,3 +44,29 @@ msgstr "Fortschritt:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-18 10:44+0000\n" "PO-Revision-Date: 2011-10-18 10:44+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n" "Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Reiniciar"
msgid "Undo" msgid "Undo"
msgstr "Deshacer" msgstr "Deshacer"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Añadir Widget"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Cambiar disposición" msgstr "Cambiar disposición"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Cambiar disposición del tablero" msgstr "Cambiar disposición del tablero"
@ -44,3 +44,29 @@ msgstr "progreso:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 15:56+0000\n" "PO-Revision-Date: 2011-10-07 15:56+0000\n"
"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n" "Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n"
"Language-Team: Spanish (Ecuador) <es_EC@li.org>\n" "Language-Team: Spanish (Ecuador) <es_EC@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Reset"
msgid "Undo" msgid "Undo"
msgstr "Deshacer" msgstr "Deshacer"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Agregar Widget"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Cambiar disposición" msgstr "Cambiar disposición"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Elegir el diseño del panel de control" msgstr "Elegir el diseño del panel de control"
@ -44,3 +44,29 @@ msgstr "progreso:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-10 19:29+0000\n" "PO-Revision-Date: 2011-10-10 19:29+0000\n"
"Last-Translator: Aare Vesi <Unknown>\n" "Last-Translator: Aare Vesi <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n" "Language-Team: Estonian <et@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -26,11 +26,11 @@ msgid "Undo"
msgstr "Ennista" msgstr "Ennista"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget" msgid "Change layout"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "&nbsp;"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
@ -44,3 +44,29 @@ msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-23 12:11+0000\n" "PO-Revision-Date: 2011-10-23 12:11+0000\n"
"Last-Translator: Xavier (Open ERP) <Unknown>\n" "Last-Translator: Xavier (Open ERP) <Unknown>\n"
"Language-Team: French <fr@li.org>\n" "Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr ""
msgid "Undo" msgid "Undo"
msgstr "Annuler" msgstr "Annuler"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Ajouter un Gadget"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Changer la mise en page" msgstr "Changer la mise en page"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Choisissez la mise en page du tableau de bord" msgstr "Choisissez la mise en page du tableau de bord"
@ -44,3 +44,29 @@ msgstr "progrès"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 10:29+0000\n" "PO-Revision-Date: 2011-10-19 10:29+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n" "Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Reiniciar"
msgid "Undo" msgid "Undo"
msgstr "Desfacer" msgstr "Desfacer"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Engadir un widget"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Cambiar disposición" msgstr "Cambiar disposición"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Cambiar disposición do taboleiro" msgstr "Cambiar disposición do taboleiro"
@ -44,3 +44,29 @@ msgstr "progreso:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -0,0 +1,72 @@
# Croatian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-28 12:07+0000\n"
"Last-Translator: Goran Kliska <gkliska@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset"
msgstr "Vrati izvorno"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Undo"
msgstr "Vrati"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout"
msgstr "Promijeni raspored"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout"
msgstr "Odaberi raspored"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "progress:"
msgstr "napredak:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%"
msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 09:00+0000\n" "PO-Revision-Date: 2011-10-07 09:00+0000\n"
"Last-Translator: Davide Corio - agilebg.com <davide.corio@agilebg.com>\n" "Last-Translator: Davide Corio - agilebg.com <davide.corio@agilebg.com>\n"
"Language-Team: Italian <it@li.org>\n" "Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Ripristina"
msgid "Undo" msgid "Undo"
msgstr "Annulla" msgstr "Annulla"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Aggiungi Widget"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Cambia layout" msgstr "Cambia layout"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Scegli layout dashboard" msgstr "Scegli layout dashboard"
@ -44,3 +44,29 @@ msgstr "avanzamento:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -0,0 +1,74 @@
# Dutch translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-06 11:44+0000\n"
"Last-Translator: Douwe Wullink (Dypalio) <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-07 05:25+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset"
msgstr "Reset"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Undo"
msgstr "Ongedaan maken"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout"
msgstr "Layout wijzigen"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr "&nbsp;"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout"
msgstr "Kies dashboard layout"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "progress:"
msgstr "voortgang:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%"
msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
"Klink op de onderstaande functionaliteiten om ze de starten en uw systeem te "
"configureren"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Welkom bij uw nieuwe OpenERP versie."
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr "Vergeet niet een bladwijzer te maken van deze pagina"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr "Onthoudt uw login:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Kies de eerste OpenERP applicatie die u wilt installeren.."
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr "Installeren"

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-07 09:04+0000\n" "PO-Revision-Date: 2011-10-07 09:04+0000\n"
"Last-Translator: Niels Huylebroeck <Unknown>\n" "Last-Translator: Niels Huylebroeck <Unknown>\n"
"Language-Team: Dutch (Belgium) <nl_BE@li.org>\n" "Language-Team: Dutch (Belgium) <nl_BE@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Reset"
msgid "Undo" msgid "Undo"
msgstr "Ongedaan maken" msgstr "Ongedaan maken"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Widget toevoegen"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Layout aanpassen" msgstr "Layout aanpassen"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Dashboard layout kiezen" msgstr "Dashboard layout kiezen"
@ -44,3 +44,29 @@ msgstr "vooruitgang:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-04 16:28+0000\n" "PO-Revision-Date: 2011-11-04 16:28+0000\n"
"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\n"
"Language-Team: Polish <pl@li.org>\n" "Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Przywróć"
msgid "Undo" msgid "Undo"
msgstr "Cofnij" msgstr "Cofnij"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Dodaj kontrolkę"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Zmień układ" msgstr "Zmień układ"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Wybierz układ konsoli" msgstr "Wybierz układ konsoli"
@ -44,3 +44,29 @@ msgstr "postęp:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -0,0 +1,72 @@
# Russian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-12-02 07:09+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Russian <ru@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Undo"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "progress:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-23 14:45+0000\n" "PO-Revision-Date: 2011-10-23 14:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Slovak <sk@li.org>\n" "Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -26,11 +26,11 @@ msgid "Undo"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget" msgid "Change layout"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "&nbsp;"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
@ -44,3 +44,29 @@ msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-10-19 06:25+0000\n" "PO-Revision-Date: 2011-10-19 06:25+0000\n"
"Last-Translator: Anze (Neotek) <Unknown>\n" "Last-Translator: Anze (Neotek) <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n" "Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Reset" msgid "Reset"
@ -25,14 +25,14 @@ msgstr "Ponastavi"
msgid "Undo" msgid "Undo"
msgstr "Razveljavi" msgstr "Razveljavi"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget"
msgstr "Dodaj gradnik"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "Change layout"
msgstr "Spreminjanje postavitve" msgstr "Spreminjanje postavitve"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "&nbsp;"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose dashboard layout" msgid "Choose dashboard layout"
msgstr "Izberite postavitev nadzorne plošče" msgstr "Izberite postavitev nadzorne plošče"
@ -44,3 +44,29 @@ msgstr "napredek:"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "%" msgid "%"
msgstr "%" msgstr "%"
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure your "
"system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PROJECT VERSION\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -26,11 +26,11 @@ msgid "Undo"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Add Widget" msgid "Change layout"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Change layout" msgid "&nbsp;"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0 #: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
@ -45,3 +45,29 @@ msgstr ""
msgid "%" msgid "%"
msgstr "" msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid ""
"Click on the functionalites listed below to launch them and configure "
"your system"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_dashboard/static/src/xml/web_dashboard.xml:0
msgid "Install"
msgstr ""

View File

@ -24,7 +24,6 @@ openerp.web.form.DashBoard = openerp.web.form.Widget.extend({
}).disableSelection().bind('sortstop', self.do_save_dashboard); }).disableSelection().bind('sortstop', self.do_save_dashboard);
// Events // Events
this.$element.find('.oe-dashboard-link-undo').click(this.on_undo);
this.$element.find('.oe-dashboard-link-reset').click(this.on_reset); this.$element.find('.oe-dashboard-link-reset').click(this.on_reset);
this.$element.find('.oe-dashboard-link-change_layout').click(this.on_change_layout); this.$element.find('.oe-dashboard-link-change_layout').click(this.on_change_layout);
@ -47,11 +46,6 @@ openerp.web.form.DashBoard = openerp.web.form.Widget.extend({
}); });
}); });
}, },
on_undo: function() {
this.rpc('/web/view/undo_custom', {
view_id: this.view.fields_view.view_id
}, this.do_reload);
},
on_reset: function() { on_reset: function() {
this.rpc('/web/view/undo_custom', { this.rpc('/web/view/undo_custom', {
view_id: this.view.fields_view.view_id, view_id: this.view.fields_view.view_id,
@ -145,7 +139,7 @@ openerp.web.form.DashBoard = openerp.web.form.Widget.extend({
view_id: this.view.fields_view.view_id, view_id: this.view.fields_view.view_id,
arch: arch arch: arch
}, function() { }, function() {
self.$element.find('.oe-dashboard-link-undo, .oe-dashboard-link-reset').show(); self.$element.find('.oe-dashboard-link-reset').show();
}); });
}, },
on_load_action: function(result, index) { on_load_action: function(result, index) {
@ -154,13 +148,11 @@ openerp.web.form.DashBoard = openerp.web.form.Widget.extend({
action_attrs = this.actions_attrs[action.id], action_attrs = this.actions_attrs[action.id],
view_mode = action_attrs.view_mode; view_mode = action_attrs.view_mode;
// TODO: Use xmo's python evaluator when ready
if (action_attrs.context) { if (action_attrs.context) {
action.context = _.extend(action.context || {}, action_attrs.context); action.context = action_attrs.context;
} }
if (action_attrs.domain) { if (action_attrs.domain) {
action.domain = action.domain || []; action.domain = action_attrs.domain;
action.domain.push.apply(action.domain, action_attrs.domain);
} }
var action_orig = _.extend({}, action); var action_orig = _.extend({}, action);
@ -383,25 +375,13 @@ openerp.web_dashboard.apps = {
openerp.web_dashboard.ApplicationTiles = openerp.web.View.extend({ openerp.web_dashboard.ApplicationTiles = openerp.web.View.extend({
template: 'ApplicationTiles', template: 'ApplicationTiles',
start: function () { start: function () {
var self = this;
this._super(); this._super();
// Check for installed application return this.do_display_root_menu();
var Installer = new openerp.web.DataSet(this, 'base.setup.installer');
Installer.call('default_get', [], function (installed_modules) {
var installed = _(installed_modules).any(function (active, name) {
return _.str.startsWith(name, 'cat') && active; });
if(installed) {
self.do_display_root_menu();
} else {
self.do_display_installer();
}
});
}, },
do_display_root_menu: function() { do_display_root_menu: function() {
var self = this; var self = this;
var dss = new openerp.web.DataSetSearch( this, 'ir.ui.menu', null, [['parent_id', '=', false]]); return new openerp.web.DataSetSearch( this, 'ir.ui.menu', null, [['parent_id', '=', false]])
var r = dss.read_slice( ['name', 'web_icon_data', 'web_icon_hover_data'], {}, function (applications) { .read_slice( ['name', 'web_icon_data', 'web_icon_hover_data'], {}, function (applications) {
// Create a matrix of 3*x applications // Create a matrix of 3*x applications
var rows = []; var rows = [];
while (applications.length) { while (applications.length) {
@ -414,52 +394,6 @@ openerp.web_dashboard.ApplicationTiles = openerp.web.View.extend({
openerp.webclient.menu.on_menu_click(null, $(this).data('menuid')) openerp.webclient.menu.on_menu_click(null, $(this).data('menuid'))
}); });
}); });
return r;
},
do_display_installer: function() {
var self = this;
var render_ctx = {
url: window.location.protocol + '//' + window.location.host + window.location.pathname,
session: self.session,
rows: openerp.web_dashboard.apps.applications
};
var installer = QWeb.render('StaticHome', render_ctx);
self.$element.append(installer);
this.$element.delegate('.oe-static-home-tile-text button', 'click', function () {
self.install_module($(this).val());
});
},
install_module: function (module_name) {
var self = this;
var Modules = new openerp.web.DataSetSearch(
this, 'ir.module.module', null,
[['name', '=', module_name], ['state', '=', 'uninstalled']]);
var Upgrade = new openerp.web.DataSet(this, 'base.module.upgrade');
$.blockUI();
Modules.read_slice(['id'], {}, function (records) {
if (!(records.length === 1)) { $.unblockUI(); return; }
Modules.call('state_update',
[_.pluck(records, 'id'), 'to install', ['uninstalled']],
function () {
Upgrade.call('upgrade_module', [[]], function () {
self.run_configuration_wizards();
});
}
)
});
},
run_configuration_wizards: function () {
var self = this;
new openerp.web.DataSet(this, 'res.config').call('start', [[]], function (action) {
self.widget_parent.widget_parent.do_action(action, function () {
openerp.webclient.do_reload();
});
self.$element.empty();
self.do_display_root_menu().then(function () {
$.unblockUI();
});
});
} }
}); });

View File

@ -5,10 +5,6 @@
<img src="/web/static/src/img/icons/STOCK_GOTO_FIRST.png" width="16" height="16"/> <img src="/web/static/src/img/icons/STOCK_GOTO_FIRST.png" width="16" height="16"/>
<span>Reset</span> <span>Reset</span>
</button> </button>
<button type="button" class="button oe-dashboard-link-undo" t-att-style="view.fields_view.custom_view_id ? null : 'display: none'">
<img src="/web/static/src/img/icons/gtk-undo.png" width="16" height="16"/>
<span>Undo</span>
</button>
<button type="button" class="button oe-dashboard-link-change_layout"> <button type="button" class="button oe-dashboard-link-change_layout">
<img src="/web/static/src/img/icons/gtk-edit.png" width="16" height="16"/> <img src="/web/static/src/img/icons/gtk-edit.png" width="16" height="16"/>
<span>Change layout</span> <span>Change layout</span>
@ -108,36 +104,4 @@
<h3><t t-esc="widget.title"/></h3> <h3><t t-esc="widget.title"/></h3>
<iframe width="100%" frameborder="0" t-att-src="url"/> <iframe width="100%" frameborder="0" t-att-src="url"/>
</t> </t>
<div t-name="StaticHome" class="oe-static-home">
<h1>Welcome to your new OpenERP instance.</h1>
<div class="oe-static-home-banner">
<li>Remember to bookmark this page.</li>
<li>Remember your login: <t t-esc="session.username"/></li>
<li>Choose the first OpenERP Application you want to install..</li>
</div>
<div class="oe-static-home-tiles">
<table width="100%">
<tr t-foreach="rows" t-as="row">
<td t-foreach="row" t-as="application" width="25%">
<table class="oe-static-home-tile">
<tr>
<td>
<div class="oe-static-home-tile-logo">
<img t-att-src="'/web_dashboard/static/src/img/installer_' + application.module + '.png'"/>
</div>
</td>
<td>
<div class="oe-static-home-tile-text">
<h2><t t-esc="application.name"/></h2>
<p><t t-esc="application.help"/></p>
<button type="button" t-att-value="application.module"> Install</button>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</template> </template>

View File

@ -1,38 +0,0 @@
# Arabic translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-11-08 05:50+0000\n"
"Last-Translator: Ahmad Khayyat <Unknown>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "أهلاً و مرحباً بك في OpenERP"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "لا تنس إدراج هذه الصفحة ضمن المفضلات"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "تذكر كلمة المرور"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "اختر أول تطبيق OpenERP تود تثبيته"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "تثبيت"

View File

@ -1,38 +0,0 @@
# Danish translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-11 14:02+0000\n"
"Last-Translator: Jonas Mortensen <Unknown>\n"
"Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Velkommen til din nye OpenERP instans."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Husk at tilføje denne side til dine favoritter."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Husk dit log ind:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Vælg den første OpenERP Applikation som du ønsker at installere."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Installér"

View File

@ -1,38 +0,0 @@
# German translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-10 12:40+0000\n"
"Last-Translator: Felix Schubert <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Willkommen zu Ihrer neuen OpenERP Instanz."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Denken Sie daran ein Lesezeichen für diese Seite zu setzen."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Anmeldung speichern"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Wählen Sie die erste OpenERP Anwendung die Sie installieren möchten."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Installieren"

View File

@ -1,38 +0,0 @@
# Spanish translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-18 10:47+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Bienvenido a su nueva instancia de OpenERP."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Recuerde añadir a marcadores esta página"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Recordar su inicio de sesión:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Elija la primera Aplicación de OpenERP que quiere instalar."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Instalar"

View File

@ -1,38 +0,0 @@
# Spanish (Ecuador) translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-07 16:00+0000\n"
"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n"
"Language-Team: Spanish (Ecuador) <es_EC@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Bienvenido a tu nueva instancia de OpenERP"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Recuerda marcar esta página"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Recordar tu inicio de sesión"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Escoge la primea Aplicación OpenERP que deseas instalar..."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Instalar"

View File

@ -1,38 +0,0 @@
# Estonian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-10 19:29+0000\n"
"Last-Translator: Aare Vesi <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Paigalda"

View File

@ -1,39 +0,0 @@
# French translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-23 12:10+0000\n"
"Last-Translator: fhe (OpenERP) <Unknown>\n"
"Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Bienvenue dans votre nouvelle instance OpenERP."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Assurez-vous de marquer cette page comme favoris."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Mémorisez votre identifiant:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
"Choisissez la première application OpenERP que vous voulez installer..."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Installer"

View File

@ -1,38 +0,0 @@
# Galician translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-19 10:31+0000\n"
"Last-Translator: Amós Oviedo <Unknown>\n"
"Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Binvido á súa nova instancia de OpenERP."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Recorde engadir a marcadores esta páxgina"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Recordar o seu inicio de sesión:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Elixa a primeira Aplicación de OpenERP que quere instalar."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Instalar"

View File

@ -1,38 +0,0 @@
# Italian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-08 13:41+0000\n"
"Last-Translator: Nicola Riolini - Micronaet <Unknown>\n"
"Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Benvenuto nella nuova istanza di OpenERP"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Ricordarsi di aggiungere ai preferiti questa pagina"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Ricordare il proprio login:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Scegliere la prima applicazione OpenERP che volete installare..."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Installa"

View File

@ -1,38 +0,0 @@
# Dutch (Belgium) translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-07 09:07+0000\n"
"Last-Translator: Niels Huylebroeck <Unknown>\n"
"Language-Team: Dutch (Belgium) <nl_BE@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Welkom bij uw nieuwe OpenERP."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Gelieve een bookmark voor deze pagina te maken."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Vergeet je login niet:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Kies welke OpenERP Applicatie je wilt installeren..."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Installeer"

View File

@ -1,38 +0,0 @@
# Polish translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-11-04 16:30+0000\n"
"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Witamy w twojej nowej instancji OpenERP."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Pamiętaj o dodaniu tej strony do zakładek."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Zapamiętaj twój login:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Wybierz pierwszą aplikację OpenERP do instalacji."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Instaluj"

View File

@ -1,38 +0,0 @@
# Slovak translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-11-01 13:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr ""
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr ""

View File

@ -1,38 +0,0 @@
# Slovenian translation for openerp-web
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openerp-web package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n"
"PO-Revision-Date: 2011-10-19 06:24+0000\n"
"Last-Translator: Anze (Neotek) <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n"
"X-Generator: Launchpad (build 14299)\n"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Welcome to your new OpenERP instance."
msgstr "Dobrodošli v vaš nov primer OpenERP."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember to bookmark this page."
msgstr "Ne pozabite narediti zaznamka te strani."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Remember your login:"
msgstr "Zapomni si prijavo:"
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Choose the first OpenERP Application you want to install.."
msgstr "Izberite prvi aplikacijo OpenERP, ki jo želite namestiti .."
#: addons/web_default_home/static/src/xml/web_default_home.xml:0
msgid "Install"
msgstr "Namesti"

View File

@ -1,6 +1,7 @@
{ {
"name" : "OpenERP Web Diagram", "name" : "OpenERP Web Diagram",
"category" : "Hidden", "category" : "Hidden",
"description":'Openerp web Diagram view',
"version" : "2.0", "version" : "2.0",
"depends" : ["base"], "depends" : ["base"],
"js": [ "js": [

View File

@ -7,28 +7,20 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openerp-web\n" "Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-10-07 10:39+0200\n" "POT-Creation-Date: 2011-12-05 11:50+0100\n"
"PO-Revision-Date: 2011-11-03 15:11+0000\n" "PO-Revision-Date: 2011-11-03 15:11+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n" "Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-21 05:50+0000\n" "X-Launchpad-Export-Date: 2011-12-06 05:59+0000\n"
"X-Generator: Launchpad (build 14299)\n" "X-Generator: Launchpad (build 14435)\n"
#: addons/web_diagram/static/src/xml/base_diagram.xml:0 #: addons/web_diagram/static/src/xml/base_diagram.xml:0
msgid "New Node" msgid "New Node"
msgstr "طرف جديد" msgstr "طرف جديد"
#: addons/web_diagram/static/src/xml/base_diagram.xml:0
msgid "New Edge"
msgstr "حافة جديدة"
#: addons/web_diagram/static/src/xml/base_diagram.xml:0
msgid "Show Grid:"
msgstr "عرض الشبكة"
#: addons/web_diagram/static/src/xml/base_diagram.xml:0 #: addons/web_diagram/static/src/xml/base_diagram.xml:0
msgid "First" msgid "First"
msgstr "الأول" msgstr "الأول"

Some files were not shown because too many files have changed in this diff Show More