From 7c76232a18357dd32170dabdea10296d66b586ff Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Fri, 20 Nov 2015 13:52:28 +0100 Subject: [PATCH 001/103] [FIX] disjunctions in advanced search fixes #222 --- .../static/src/js/web_advanced_search_x2x.js | 59 +++++++++++++------ 1 file changed, 42 insertions(+), 17 deletions(-) diff --git a/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js b/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js index f233c235..baf29f0a 100644 --- a/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js +++ b/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js @@ -283,6 +283,42 @@ openerp.web_advanced_search_x2x = function(instance) }, }); + normalize_domain = function(domain) + { + // this is the js version of https://github.com/odoo/odoo/blob/8.0/openerp/osv/expression.py#L203 + if(!domain.length) + { + return [(1, '=', 1)] + } + result = [] + expected = 1 + op_arity = {'!': 1, '&': 2, '|': 2}; + _(domain).each(function(token) + { + if(expected == 0) + { + result.unshift('&'); + expected = 1; + } + result.push(token); + if(_.isArray(token)) + { + expected -= 1; + } + else + { + expected += (op_arity[token] || 0) - 1; + } + }) + if(expected) + { + throw _.sprintf( + 'This domain is syntactically not correct: %s', + domain) + } + return result; + }; + instance.web.SearchView.include({ build_search_data: function() { @@ -297,31 +333,20 @@ openerp.web_advanced_search_x2x = function(instance) { return; } - var compound_domains = [], leaves = []; + var combined = []; _.each(domain, function(leaf) { if(leaf instanceof instance.web.CompoundDomain) { - compound_domains.push(leaf); + combined = combined.concat( + normalize_domain(leaf.eval())); } - if(_.isArray(leaf)) + else { - leaves.push(leaf); + combined.push(leaf); } }); - if(compound_domains.length) - { - var combined = new instance.web.CompoundDomain(); - _.each(compound_domains, function(domain) - { - combined.add(domain.eval()); - }) - _.each(leaves, function(leaf) - { - combined.add([leaf]) - }); - result.domains[index] = combined; - } + result.domains[index] = combined; }); return result; }, From 87911bbf78306599d3389492efb37eae7fc01901 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 26 Apr 2016 18:33:25 +0200 Subject: [PATCH 002/103] [ADD] web_ir_actions_act_window_none --- web_ir_actions_act_window_none/README.rst | 61 ++++++++++++++++++ web_ir_actions_act_window_none/__init__.py | 3 + web_ir_actions_act_window_none/__openerp__.py | 17 +++++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../src/js/web_ir_actions_act_window_none.js | 19 ++++++ .../views/templates.xml | 10 +++ 6 files changed, 110 insertions(+) create mode 100644 web_ir_actions_act_window_none/README.rst create mode 100644 web_ir_actions_act_window_none/__init__.py create mode 100644 web_ir_actions_act_window_none/__openerp__.py create mode 100644 web_ir_actions_act_window_none/static/description/icon.png create mode 100644 web_ir_actions_act_window_none/static/src/js/web_ir_actions_act_window_none.js create mode 100644 web_ir_actions_act_window_none/views/templates.xml diff --git a/web_ir_actions_act_window_none/README.rst b/web_ir_actions_act_window_none/README.rst new file mode 100644 index 00000000..8a6869af --- /dev/null +++ b/web_ir_actions_act_window_none/README.rst @@ -0,0 +1,61 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +=========== +Noop action +=========== + +This module was written to have an action that does nothing. A notorious case +where this is useful is buttons on popup windows, because they need to return +an action. Given the default here is `ir.actions.act_window_close`, you'll +have to jump through some hoops if you have a button that is not supposed to +close the popup window. + +Usage +===== + +To use this module, depend on it in your module and return:: + + {'type': 'ir.actions.act_window.none'} + +The button will trigger a reload of the popup's form, in case you want to +suppress this, set key ``reload`` to ``False`` in the action you return. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + +Credits +======= + +Contributors +------------ + +* Holger Brunn + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_ir_actions_act_window_none/__init__.py b/web_ir_actions_act_window_none/__init__.py new file mode 100644 index 00000000..fa85807b --- /dev/null +++ b/web_ir_actions_act_window_none/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_ir_actions_act_window_none/__openerp__.py b/web_ir_actions_act_window_none/__openerp__.py new file mode 100644 index 00000000..809f006a --- /dev/null +++ b/web_ir_actions_act_window_none/__openerp__.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Noop action", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Hidden/Dependency", + "summary": "Execute nothing", + "depends": [ + 'web', + ], + "data": [ + 'views/templates.xml', + ], +} diff --git a/web_ir_actions_act_window_none/static/description/icon.png b/web_ir_actions_act_window_none/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/web_ir_actions_act_window_none/static/src/js/web_ir_actions_act_window_none.js b/web_ir_actions_act_window_none/static/src/js/web_ir_actions_act_window_none.js new file mode 100644 index 00000000..e933b2ee --- /dev/null +++ b/web_ir_actions_act_window_none/static/src/js/web_ir_actions_act_window_none.js @@ -0,0 +1,19 @@ +//-*- coding: utf-8 -*- +//© 2016 Therp BV +//License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +openerp.web_ir_actions_act_window_none = function(instance) +{ + instance.web.ActionManager.include({ + ir_actions_act_window_none: function(action) + { + if(action.reload === undefined || action.reload) + { + if(this.dialog_widget && this.dialog_widget.views.form) + { + return this.dialog_widget.views.form.controller.reload(); + } + } + }, + }); +} diff --git a/web_ir_actions_act_window_none/views/templates.xml b/web_ir_actions_act_window_none/views/templates.xml new file mode 100644 index 00000000..adceecec --- /dev/null +++ b/web_ir_actions_act_window_none/views/templates.xml @@ -0,0 +1,10 @@ + + + + + + From ac68afda065fb53f3ff10ccab72da0551bff639e Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 16 May 2016 11:24:48 +0200 Subject: [PATCH 003/103] [FIX] pass dataset's context to search_count --- .../static/src/js/web_search_autocomplete_prefetch.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js index b9f82588..1ff401ef 100644 --- a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js +++ b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js @@ -33,7 +33,8 @@ openerp.web_search_autocomplete_prefetch = function(instance) return self.autocomplete_mutex.exec(function() { return self.view.dataset._model.call( - 'search_count', [domain.eval()]) + 'search_count', [domain.eval()], + {context: self.view.dataset.get_context()}) .then(function(count) { if(count) From 0ccceadaecf0bc4fa4d54c7e3dcb0b18587fa04e Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 31 May 2016 10:02:57 +0200 Subject: [PATCH 004/103] [FIX] eval column's context --- .../static/src/js/web_widget_one2many_tags.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js b/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js index 48bd0f45..f3359c5a 100755 --- a/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js +++ b/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js @@ -178,7 +178,9 @@ openerp.web_widget_one2many_tags = function(instance) set: function() {}, build_context: function() { - return column.context; + return new instance.web.CompoundContext( + column.context + ); }, }, value = record.get(column.id); From ee7a3d5b7912df0db080d94c74f4c7858deeb243 Mon Sep 17 00:00:00 2001 From: lfreeke Date: Mon, 4 Jul 2016 12:13:13 +0200 Subject: [PATCH 005/103] [ADD] disable base_view search for better performance --- web_search_autocomplete_prefetch/__openerp__.py | 1 + .../views/base_view.xml | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 web_search_autocomplete_prefetch/views/base_view.xml diff --git a/web_search_autocomplete_prefetch/__openerp__.py b/web_search_autocomplete_prefetch/__openerp__.py index e12afde7..03db260a 100644 --- a/web_search_autocomplete_prefetch/__openerp__.py +++ b/web_search_autocomplete_prefetch/__openerp__.py @@ -16,6 +16,7 @@ ], "data": [ 'views/templates.xml', + 'views/base_view.xml', ], "installable": True, } diff --git a/web_search_autocomplete_prefetch/views/base_view.xml b/web_search_autocomplete_prefetch/views/base_view.xml new file mode 100644 index 00000000..2c6a9723 --- /dev/null +++ b/web_search_autocomplete_prefetch/views/base_view.xml @@ -0,0 +1,16 @@ + + + + + ir.ui.view + + + + + {'web_search_autocomplete_prefetch.disable': true} + + + + + + From d27fd0456fefa3569e9e2f7e4d2284afc3c9019d Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 19 Jul 2016 19:20:32 +0200 Subject: [PATCH 006/103] [ADD] run onclose handler if we got one --- .../static/src/js/web_ir_actions_act_window_page.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js b/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js index d8c03179..1624fbff 100644 --- a/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js +++ b/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js @@ -30,6 +30,10 @@ openerp.web_ir_actions_act_window_page = function(instance) this.inner_widget.views[this.inner_widget.active_view] .controller.execute_pager_action('previous'); } + if(options && options.on_close) + { + options.on_close(); + } }, ir_actions_act_window_page_next: function(action, options) { @@ -39,6 +43,10 @@ openerp.web_ir_actions_act_window_page = function(instance) this.inner_widget.views[this.inner_widget.active_view] .controller.execute_pager_action('next'); } + if(options && options.on_close) + { + options.on_close(); + } }, }); } From 1d78508b616a3f275833427afd42e18c73fb9079 Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 25 Jul 2016 12:18:39 -0400 Subject: [PATCH 007/103] Add web_graph_sort --- web_graph_sort/README.rst | 57 +++++++++ web_graph_sort/__init__.py | 4 + web_graph_sort/__openerp__.py | 22 ++++ web_graph_sort/static/description/icon.png | Bin 0 -> 8355 bytes .../static/src/css/web_graph_sort.css | 29 +++++ .../static/src/js/web_graph_sort.js | 112 ++++++++++++++++++ web_graph_sort/views/web_graph_sort.xml | 10 ++ 7 files changed, 234 insertions(+) create mode 100644 web_graph_sort/README.rst create mode 100644 web_graph_sort/__init__.py create mode 100644 web_graph_sort/__openerp__.py create mode 100644 web_graph_sort/static/description/icon.png create mode 100644 web_graph_sort/static/src/css/web_graph_sort.css create mode 100644 web_graph_sort/static/src/js/web_graph_sort.js create mode 100644 web_graph_sort/views/web_graph_sort.xml diff --git a/web_graph_sort/README.rst b/web_graph_sort/README.rst new file mode 100644 index 00000000..cfbfa110 --- /dev/null +++ b/web_graph_sort/README.rst @@ -0,0 +1,57 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============== +Web Graph Sort +============== + +This module allows to sort pivot tables. + +Usage +===== + +To use this module, you need to: + +#. Go to ... + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/web/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* NDP Systèmes +* David Dufresne + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_graph_sort/__init__.py b/web_graph_sort/__init__.py new file mode 100644 index 00000000..e855da69 --- /dev/null +++ b/web_graph_sort/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 NDP Systèmes (). +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/web_graph_sort/__openerp__.py b/web_graph_sort/__openerp__.py new file mode 100644 index 00000000..96f6614c --- /dev/null +++ b/web_graph_sort/__openerp__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2015 NDP Systèmes (). +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': "Web Graph Sort", + 'version': '8.0.1.0.0', + 'author': ( + "NDP Systèmes, " + "Savoir-faire Linux, " + "Odoo Community Association (OCA)" + ), + 'license': 'AGPL-3', + 'category': 'Technical', + 'depends': ['web_graph'], + 'data': [ + 'views/web_graph_sort.xml', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/web_graph_sort/static/description/icon.png b/web_graph_sort/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..243a194d7a4004b554eac576da04e86b36be22a3 GIT binary patch literal 8355 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. + © 2016 Savoir-faire Linux + License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +*/ + +openerp.web_graph_sort = function(instance) { + var _lt = openerp.web._lt; + var _t = openerp.web._t; + + var graph_events = instance.web_graph.Graph.events; + + instance.web_graph.Graph.include({ + + init: function(){ + this.events['click thead th.oe_sortable[data-id]'] = 'sort_by_column'; + this._super.apply(this, arguments); + }, + + draw_measure_row: function (measure_row) { + var $row = $('').append(''); + var self = this; + _.each(measure_row, function (cell) { + _.each(self.measure_list,function(item){ + if(item.string === cell.text) { + var data_id; + if ( + self.pivot.sort !== null && + self.pivot.sort[0].indexOf(item.field) >= 0 && + self.pivot.sort[0].indexOf('-') === -1 + ){ + data_id = "-" + item.field; + } + else { + data_id = item.field; + } + + var $cell = $('') + .addClass('measure_row') + .addClass('oe_sortable') + .attr('data-id', data_id) + .append("
" + cell.text + "
"); + + if (cell.is_bold) { + $cell.css('font-weight', 'bold'); + } + if (self.pivot.sort !== null && self.pivot.sort[0].indexOf(item.field) >= 0) { + $cell.addClass((self.pivot.sort[0].indexOf('-') === -1) ? "sortdown":"sortup"); + } + $row.append($cell); + } + }); + }); + this.$thead.append($row); + }, + + sort_by_column: function (e) { + e.stopPropagation(); + var $column = $(e.currentTarget); + var col_name = $column.data('id'); + this.pivot.sort = [col_name]; + this.pivot.update_data().then(this.proxy('display_data')); + } + }); + + instance.web_graph.PivotTable.include({ + sort : null, + get_groups: function (groupbys, fields, domain) { + var self = this; + var result = this.model.query(_.without(fields, '__count')); + if(this.sort !== null) { + result=result.order_by(this.sort); + } + return result.filter(domain) + .context(this.context) + .lazy(false) + .group_by(groupbys) + .then(function (groups) { + return groups.filter(function (group) { + return group.attributes.length > 0; + }).map(function (group) { + var attrs = group.attributes, + grouped_on = attrs.grouped_on instanceof Array ? attrs.grouped_on : [attrs.grouped_on], + raw_grouped_on = grouped_on.map(function (f) { + return self.raw_field(f); + }); + if (grouped_on.length === 1) { + attrs.value = [attrs.value]; + } + attrs.value = _.range(grouped_on.length).map(function (i) { + var grp = grouped_on[i], + field = self.fields[grp]; + + // This part was modified from original function in the web_graph module. + if (attrs.value[i] === false) { + return _t('Undefined'); + } else if (attrs.value[i] instanceof Array) { + return attrs.value[i][1]; + } else if (field && field.type === 'selection') { + var selected = _.where(field.selection, {0: attrs.value[i]})[0]; + return selected ? selected[1] : attrs.value[i]; + } + return attrs.value[i]; + }); + attrs.aggregates.__count = group.attributes.length; + attrs.grouped_on = raw_grouped_on; + return group; + }); + }); + } + }); +}; diff --git a/web_graph_sort/views/web_graph_sort.xml b/web_graph_sort/views/web_graph_sort.xml new file mode 100644 index 00000000..431624dd --- /dev/null +++ b/web_graph_sort/views/web_graph_sort.xml @@ -0,0 +1,10 @@ + + + + + From 232613d68db71527e7dbd32385be154d57d3e58f Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 25 Jul 2016 12:27:42 -0400 Subject: [PATCH 008/103] Fix module category --- web_graph_sort/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_graph_sort/__openerp__.py b/web_graph_sort/__openerp__.py index 96f6614c..5ef679f7 100644 --- a/web_graph_sort/__openerp__.py +++ b/web_graph_sort/__openerp__.py @@ -12,7 +12,7 @@ "Odoo Community Association (OCA)" ), 'license': 'AGPL-3', - 'category': 'Technical', + 'category': 'Web', 'depends': ['web_graph'], 'data': [ 'views/web_graph_sort.xml', From b383356307b4bc240c042ab8bf45f7e4241286ab Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 25 Jul 2016 13:32:39 -0400 Subject: [PATCH 009/103] Fix README.rst --- web_graph_sort/README.rst | 11 +++++++++-- web_graph_sort/static/src/js/web_graph_sort.js | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/web_graph_sort/README.rst b/web_graph_sort/README.rst index cfbfa110..f3f4a4c7 100644 --- a/web_graph_sort/README.rst +++ b/web_graph_sort/README.rst @@ -13,11 +13,18 @@ Usage To use this module, you need to: -#. Go to ... +#. Go to any pivot table. Click on a column header. The table will be sorted by that column. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/web/8.0 + :target: https://runbot.odoo-community.org/runbot/162/8.0 + +Known issues / Roadmap +====================== + +* The columns are sorted according to the sum over the row. If you have multiple +accounting periods for example, if you click on the column header of the first semester, +the rows will still be sorted by the total for the year. Bug Tracker =========== diff --git a/web_graph_sort/static/src/js/web_graph_sort.js b/web_graph_sort/static/src/js/web_graph_sort.js index 4419ae5f..0a7d46a2 100644 --- a/web_graph_sort/static/src/js/web_graph_sort.js +++ b/web_graph_sort/static/src/js/web_graph_sort.js @@ -69,7 +69,7 @@ openerp.web_graph_sort = function(instance) { var self = this; var result = this.model.query(_.without(fields, '__count')); if(this.sort !== null) { - result=result.order_by(this.sort); + result = result.order_by(this.sort); } return result.filter(domain) .context(this.context) From 9ad830d54cb38e6a90b6d7559fa21dd96039d7b7 Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 25 Jul 2016 14:41:37 -0400 Subject: [PATCH 010/103] Improve pivot table sorting Add the cursor (asc, desc) only on the total columns. --- .../static/src/js/web_graph_sort.js | 64 +++++++++++-------- 1 file changed, 38 insertions(+), 26 deletions(-) diff --git a/web_graph_sort/static/src/js/web_graph_sort.js b/web_graph_sort/static/src/js/web_graph_sort.js index 0a7d46a2..d5769780 100644 --- a/web_graph_sort/static/src/js/web_graph_sort.js +++ b/web_graph_sort/static/src/js/web_graph_sort.js @@ -20,36 +20,48 @@ openerp.web_graph_sort = function(instance) { draw_measure_row: function (measure_row) { var $row = $('').append(''); var self = this; + + var measures = _.unique(_.map(measure_row, function(cell){return cell.text;})); + var measure_index = _.indexBy(self.measure_list, 'string'); + + var first_total_index = measure_row.length - measures.length; + var column_index = 0; + _.each(measure_row, function (cell) { - _.each(self.measure_list,function(item){ - if(item.string === cell.text) { - var data_id; - if ( - self.pivot.sort !== null && - self.pivot.sort[0].indexOf(item.field) >= 0 && - self.pivot.sort[0].indexOf('-') === -1 - ){ - data_id = "-" + item.field; - } - else { - data_id = item.field; - } + var item = measure_index[cell.text]; + if(item){ + var data_id; + if ( + self.pivot.sort !== null && + self.pivot.sort[0].indexOf(item.field) >= 0 && + self.pivot.sort[0].indexOf('-') === -1 + ){ + data_id = "-" + item.field; + } + else { + data_id = item.field; + } - var $cell = $('') - .addClass('measure_row') - .addClass('oe_sortable') - .attr('data-id', data_id) - .append("
" + cell.text + "
"); + var $cell = $('') + .addClass('measure_row') + .addClass('oe_sortable') + .attr('data-id', data_id) + .append("
" + cell.text + "
"); - if (cell.is_bold) { - $cell.css('font-weight', 'bold'); - } - if (self.pivot.sort !== null && self.pivot.sort[0].indexOf(item.field) >= 0) { - $cell.addClass((self.pivot.sort[0].indexOf('-') === -1) ? "sortdown":"sortup"); - } - $row.append($cell); + if (cell.is_bold) { + $cell.css('font-weight', 'bold'); } - }); + + if ( + column_index >= first_total_index && + self.pivot.sort !== null && + self.pivot.sort[0].indexOf(item.field) >= 0 + ) { + $cell.addClass((self.pivot.sort[0].indexOf('-') === -1) ? "sortdown": "sortup"); + } + column_index += 1; + } + $row.append($cell); }); this.$thead.append($row); }, From 767fa6522d9a3909f3d49180507008c096eeb15a Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Tue, 26 Jul 2016 08:52:16 -0400 Subject: [PATCH 011/103] Clarify README.rst --- web_graph_sort/README.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web_graph_sort/README.rst b/web_graph_sort/README.rst index f3f4a4c7..bc4a73f1 100644 --- a/web_graph_sort/README.rst +++ b/web_graph_sort/README.rst @@ -13,7 +13,11 @@ Usage To use this module, you need to: -#. Go to any pivot table. Click on a column header. The table will be sorted by that column. +#. Go to any pivot table. + + For example, if you have the invoicing module installed, go to Reporting -> Accounting -> Invoice Analysis + +#. Click on a column header. The table will be sorted by that column. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot From 95c5de7503e8423f848313799698274155f1421f Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Fri, 5 Aug 2016 15:45:37 +0200 Subject: [PATCH 012/103] [FIX][web_widget_image_download] Make button look good everywhere (I hope). Fix https://github.com/OCA/web/pull/391#issuecomment-235906320. # Conflicts: # web_widget_image_download/static/src/js/web_widget_image_download.jsCopyright 2016 Jairo Llopis --- web_widget_image_download/README.rst | 1 + web_widget_image_download/__openerp__.py | 2 +- .../src/css/web_widget_image_download.css | 6 ++-- .../src/js/web_widget_image_download.js | 34 ++++++++++--------- 4 files changed, 24 insertions(+), 19 deletions(-) diff --git a/web_widget_image_download/README.rst b/web_widget_image_download/README.rst index cc5f3782..04682cf8 100644 --- a/web_widget_image_download/README.rst +++ b/web_widget_image_download/README.rst @@ -43,6 +43,7 @@ Contributors ------------ * Flavio Corpa +* Jairo Llopis Maintainer ---------- diff --git a/web_widget_image_download/__openerp__.py b/web_widget_image_download/__openerp__.py index ed01155b..de546b6e 100644 --- a/web_widget_image_download/__openerp__.py +++ b/web_widget_image_download/__openerp__.py @@ -4,7 +4,7 @@ { "name": "Web Widget - Image Download", "summary": "Allows to download any image from its widget", - "version": "8.0.1.0.0", + "version": "8.0.1.0.1", "category": "web", "website": "https://www.tecnativa.com", "author": "Tecnativa, Odoo Community Association (OCA)", diff --git a/web_widget_image_download/static/src/css/web_widget_image_download.css b/web_widget_image_download/static/src/css/web_widget_image_download.css index 7b1a6a98..a436cd42 100644 --- a/web_widget_image_download/static/src/css/web_widget_image_download.css +++ b/web_widget_image_download/static/src/css/web_widget_image_download.css @@ -1,6 +1,8 @@ /* Copyright 2016 Flavio Corpa + * Copyright 2016 Jairo Llopis * License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */ -.openerp .oe_application a.oe_form_binary_file_download { - color: #eee; +.openerp .oe_form .oe_form_field_image .oe_form_field_image_controls +.oe_form_binary_file_download { + color: inherit; } diff --git a/web_widget_image_download/static/src/js/web_widget_image_download.js b/web_widget_image_download/static/src/js/web_widget_image_download.js index bf2754bd..00e39dfe 100644 --- a/web_widget_image_download/static/src/js/web_widget_image_download.js +++ b/web_widget_image_download/static/src/js/web_widget_image_download.js @@ -1,37 +1,39 @@ -/* - * Copyright 2016 Flavio Corpa - * License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). - */ +/* Copyright 2016 Flavio Corpa + * Copyright 2016 Jairo Llopis + * License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). */ openerp.web_widget_image_download = function (instance) { 'use strict'; instance.web.form.web_widget_image_download = instance.web.form.FieldBinaryImage.include({ render_value: function () { this._super(); - var $widget = this.$el.find('.oe_form_binary_file_download'); - - this.imgSrc = this.$el.find('img[name="image"]').attr('src'); + this.imgSrc = this.$el.find('img[name="' + this.name + '"]') + .attr('src'); $.ajax({ - type: 'HEAD', + type: 'HEAD', // Avoid downloading full image, just headers url: this.imgSrc, complete: function (xhr) { - // retrieve image type from server ("Content-Type" header) - $widget.attr('download', xhr.getResponseHeader("Content-Type").replace('/', '.')); + $widget.attr( + 'download', + xhr.getResponseHeader("Content-Type") + .replace('/', '.') + ); } }); - // use jquery instead of `replace` with qweb (to avoid breaking inheritance) + // Replace with jQuery to keep inheritance intact if (this.has_custom_image()) { - this.$el.find('.oe_form_binary_file_clear').removeClass('col-md-offset-5'); + this.$el.find('.oe_form_binary_file_clear') + .removeClass('col-md-offset-5'); } $widget.attr('href', this.imgSrc); }, + has_custom_image: function () { - // check if the image of the widget is different from the default placeholder - return this.imgSrc && !this.imgSrc.includes('/placeholder.png'); - } + return this.imgSrc != this.placeholder; + }, }); -} +}); From ec15fed08837b4e3006c016cc98e2da79d1301be Mon Sep 17 00:00:00 2001 From: Yajo Date: Fri, 5 Aug 2016 18:10:47 +0200 Subject: [PATCH 013/103] Remove obsolete known issue. --- web_widget_image_download/README.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/web_widget_image_download/README.rst b/web_widget_image_download/README.rst index 04682cf8..675e61b0 100644 --- a/web_widget_image_download/README.rst +++ b/web_widget_image_download/README.rst @@ -26,7 +26,6 @@ Known Issues / Roadmap ====================== * In order to work correctly, this widget has to detect image type, the server should include this information in the `Content-Type` header. Right now, odoo is not doing so, but a fix has been `proposed `_. -* For some unknown reason, the widget does not work in the `Preferences` view, because odoo is not rendering the **QWeb** template. Bug Tracker =========== From ce7e3f621f45343cc1b0eeca027f5aeca63c3436 Mon Sep 17 00:00:00 2001 From: Peter Hahn Date: Thu, 11 Aug 2016 15:32:57 +0200 Subject: [PATCH 014/103] [ADD] Model based quick create config option. --- web_m2x_options/__init__.py | 1 + web_m2x_options/__openerp__.py | 5 ++++- web_m2x_options/models/__init__.py | 2 ++ web_m2x_options/models/model.py | 9 +++++++++ web_m2x_options/static/src/js/form.js | 15 +++++++++++++-- web_m2x_options/views/model_view.xml | 14 ++++++++++++++ 6 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 web_m2x_options/models/__init__.py create mode 100644 web_m2x_options/models/model.py create mode 100644 web_m2x_options/views/model_view.xml diff --git a/web_m2x_options/__init__.py b/web_m2x_options/__init__.py index 57d631c3..042e239e 100644 --- a/web_m2x_options/__init__.py +++ b/web_m2x_options/__init__.py @@ -1 +1,2 @@ # coding: utf-8 +from . import models diff --git a/web_m2x_options/__openerp__.py b/web_m2x_options/__openerp__.py index bc1e59d0..f09a32e4 100644 --- a/web_m2x_options/__openerp__.py +++ b/web_m2x_options/__openerp__.py @@ -11,7 +11,10 @@ 'static/src/xml/base.xml', ], 'license': 'AGPL-3', - 'data': ['views/view.xml'], + 'data': [ + 'views/view.xml', + 'views/model_view.xml', + ], "author": "0k.io,Odoo Community Association (OCA)", "installable": True, } diff --git a/web_m2x_options/models/__init__.py b/web_m2x_options/models/__init__.py new file mode 100644 index 00000000..4550b3d0 --- /dev/null +++ b/web_m2x_options/models/__init__.py @@ -0,0 +1,2 @@ +# coding: utf-8 +from . import model diff --git a/web_m2x_options/models/model.py b/web_m2x_options/models/model.py new file mode 100644 index 00000000..475800f2 --- /dev/null +++ b/web_m2x_options/models/model.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- + +from openerp import models, fields + + +class IrModel(models.Model): + _inherit = 'ir.model' + + disable_quick_create = fields.Boolean('Disable quick create') diff --git a/web_m2x_options/static/src/js/form.js b/web_m2x_options/static/src/js/form.js index 9fe51d23..e0898825 100644 --- a/web_m2x_options/static/src/js/form.js +++ b/web_m2x_options/static/src/js/form.js @@ -100,8 +100,19 @@ openerp.web_m2x_options = function (instance) { var create_rights; if (!(self.options && (self.options.no_create || self.options.no_create_edit))) { - create_rights = new instance.web.Model(this.field.relation).call( - "check_access_rights", ["create", false]); + // check quick create options + var target_model = this.field.relation + create_rights = new instance.web.Model('ir.model'). + query(['disable_quick_create']). + filter([['model', '=', target_model]]). + first(). + then(function(result){ + if(result.disable_quick_create) + return $.when(false); + else + return new instance.web.Model(target_model).call( + "check_access_rights", ["create", false]); + }); } $.when(search_result, create_rights).then(function (data, can_create) { diff --git a/web_m2x_options/views/model_view.xml b/web_m2x_options/views/model_view.xml new file mode 100644 index 00000000..2378c5d5 --- /dev/null +++ b/web_m2x_options/views/model_view.xml @@ -0,0 +1,14 @@ + + + + + ir.model + + + + + + + + + From 3e873c834376675abe704f263c781cfc80989993 Mon Sep 17 00:00:00 2001 From: Cesar Lage Date: Fri, 12 Aug 2016 10:26:26 -0400 Subject: [PATCH 015/103] [ADD] adding module web_invalid_tab to highlights a tab when fields inside are invalid --- web_invalid_tab/README.rst | 45 ++++++++++++++ web_invalid_tab/__init__.py | 3 + web_invalid_tab/__openerp__.py | 19 ++++++ web_invalid_tab/static/src/css/view_form.css | 3 + web_invalid_tab/static/src/js/view_form.js | 62 ++++++++++++++++++++ web_invalid_tab/views/assets.xml | 12 ++++ 6 files changed, 144 insertions(+) create mode 100644 web_invalid_tab/README.rst create mode 100644 web_invalid_tab/__init__.py create mode 100644 web_invalid_tab/__openerp__.py create mode 100644 web_invalid_tab/static/src/css/view_form.css create mode 100644 web_invalid_tab/static/src/js/view_form.js create mode 100644 web_invalid_tab/views/assets.xml diff --git a/web_invalid_tab/README.rst b/web_invalid_tab/README.rst new file mode 100644 index 00000000..1ceea8b8 --- /dev/null +++ b/web_invalid_tab/README.rst @@ -0,0 +1,45 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============== +Web invalid tab +=============== + +This module highlights a tab when fields inside are invalid. Is useful when you have a form with many tabs. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed `feedback +`_. + +Credits +======= + +Contributors +------------ + +* Cesar Lage +* Robert Rübner + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_invalid_tab/__init__.py b/web_invalid_tab/__init__.py new file mode 100644 index 00000000..de1a96ac --- /dev/null +++ b/web_invalid_tab/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Cesar Lage (bloopark systems GmbH) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/web_invalid_tab/__openerp__.py b/web_invalid_tab/__openerp__.py new file mode 100644 index 00000000..ea60ab8d --- /dev/null +++ b/web_invalid_tab/__openerp__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# © 2016 Cesar Lage (bloopark systems GmbH) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + 'name': "Web Invalid Tab", + 'summary': "Highlight tab when fields inside are invalid.", + 'author': "bloopark systems GmbH & Co. KG, " + "Odoo Community Association (OCA)", + 'website': "http://www.bloopark.de", + 'category': 'web', + 'version': '8.0.1.0.0', + "license": "AGPL-3", + 'depends': [ + 'web', + ], + 'data': [ + 'views/assets.xml', + ] +} diff --git a/web_invalid_tab/static/src/css/view_form.css b/web_invalid_tab/static/src/css/view_form.css new file mode 100644 index 00000000..e6ba0023 --- /dev/null +++ b/web_invalid_tab/static/src/css/view_form.css @@ -0,0 +1,3 @@ +li > a.oe_form_tab_invalid { + border: 1px solid #D00 !important; +} diff --git a/web_invalid_tab/static/src/js/view_form.js b/web_invalid_tab/static/src/js/view_form.js new file mode 100644 index 00000000..706e7c91 --- /dev/null +++ b/web_invalid_tab/static/src/js/view_form.js @@ -0,0 +1,62 @@ +openerp.web_invalid_tab = function(instance) { + + var tab_selector = 'div[role="tabpanel"]'; + + function tab_link(tab) { + return $("a[href='#" + tab.attr('id') + "']"); + } + + function is_visible(tab, element) { + if ($(element).hasClass('oe_form_invisible') || element.style.display == 'none') { + return false; + } + else if (element.parentNode && element.parentNode != tab) { + return is_visible(tab, element.parentNode); + } + else { + return true; + } + } + + instance.web.form.AbstractField.include({ + _check_css_flags: function() { + if (this.field.translate) { + this.$el.find('.oe_field_translate').toggle(this.field_manager.get('actual_mode') !== "create"); + } + if (!this.disable_utility_classes) { + if (this.field_manager.get('display_invalid_fields')) { + this.$el.toggleClass('oe_form_invalid', !this.is_valid()); + this._check_invalid_tab(); + } + } + }, + _check_invalid_tab: function() { + var tab = this.$el.closest(tab_selector); + if (tab && tab.attr('id')) { + if (this.is_valid()) { + if (tab.find('.oe_form_invalid').length == 0) { + tab_link(tab).removeClass('oe_form_tab_invalid'); + } + } + else if (is_visible(tab.get(0), this.$el.get(0)) === true) { + tab_link(tab).addClass('oe_form_tab_invalid'); + } + } + } + }); + + instance.web.FormView.include({ + on_form_changed: function() { + this._super(); + $(tab_selector).each(function(i, tab) { + var invalid = _.detect($(tab).find('.oe_form_invalid'), function(x) { + return is_visible(tab, x); + }); + if (!invalid) { + tab_link($(tab)).removeClass('oe_form_tab_invalid'); + } + }); + }, + }); + +}; diff --git a/web_invalid_tab/views/assets.xml b/web_invalid_tab/views/assets.xml new file mode 100644 index 00000000..3a2b0bdb --- /dev/null +++ b/web_invalid_tab/views/assets.xml @@ -0,0 +1,12 @@ + + + + + + From 12b1c55d1558a26309a566940dd25211ba645921 Mon Sep 17 00:00:00 2001 From: Cesar Lage Date: Fri, 12 Aug 2016 10:27:51 -0400 Subject: [PATCH 016/103] [IMP] use _update_tab_invalid_class funcion name instead of _check_invalid_tab, update tab.attr('id') condition, update description --- web_invalid_tab/README.rst | 2 +- web_invalid_tab/static/src/js/view_form.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web_invalid_tab/README.rst b/web_invalid_tab/README.rst index 1ceea8b8..a62ff311 100644 --- a/web_invalid_tab/README.rst +++ b/web_invalid_tab/README.rst @@ -6,7 +6,7 @@ Web invalid tab =============== -This module highlights a tab when fields inside are invalid. Is useful when you have a form with many tabs. +This module highlights a tab when fields inside are invalid. It's useful when you have a form with many tabs. Bug Tracker =========== diff --git a/web_invalid_tab/static/src/js/view_form.js b/web_invalid_tab/static/src/js/view_form.js index 706e7c91..41d9f322 100644 --- a/web_invalid_tab/static/src/js/view_form.js +++ b/web_invalid_tab/static/src/js/view_form.js @@ -26,13 +26,13 @@ openerp.web_invalid_tab = function(instance) { if (!this.disable_utility_classes) { if (this.field_manager.get('display_invalid_fields')) { this.$el.toggleClass('oe_form_invalid', !this.is_valid()); - this._check_invalid_tab(); + this._update_tab_invalid_class(); } } }, - _check_invalid_tab: function() { + _update_tab_invalid_class: function() { var tab = this.$el.closest(tab_selector); - if (tab && tab.attr('id')) { + if (tab.attr('id')) { if (this.is_valid()) { if (tab.find('.oe_form_invalid').length == 0) { tab_link(tab).removeClass('oe_form_tab_invalid'); From 6fad2c3f1fb5a555f06475894a00efb993ba2681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Fri, 12 Aug 2016 01:45:30 -0300 Subject: [PATCH 017/103] Code cleanup, remove unused field 'active', avoid calculating fields in form view. Support relative time filters and context_today. Updated version and headers --- web_dashboard_tile/README.rst | 5 +- web_dashboard_tile/__init__.py | 29 +-- web_dashboard_tile/__openerp__.py | 35 +-- web_dashboard_tile/models/__init__.py | 24 +- web_dashboard_tile/models/tile_tile.py | 224 ++++++++---------- web_dashboard_tile/static/src/js/custom_js.js | 6 +- 6 files changed, 125 insertions(+), 198 deletions(-) diff --git a/web_dashboard_tile/README.rst b/web_dashboard_tile/README.rst index 21d96ab0..8aa70f02 100644 --- a/web_dashboard_tile/README.rst +++ b/web_dashboard_tile/README.rst @@ -17,20 +17,21 @@ Usage ===== * Dashboad sample, displaying Sale Orders to invoice: + .. image:: ./static/src/img/screenshot_dashboard.png + * Tree view displayed when user click on the tile: + .. image:: ./static/src/img/screenshot_action_click.png Kown issues/limits ================== * can not edit tile from dashboard (color, sequence, function, ...); * context are ignored; -* date filter can not be relative; * combine domain of menue and filter so can not restore origin filter; possible future improvments =========================== -* support context_today; * add icons; * support client side action (like inbox); diff --git a/web_dashboard_tile/__init__.py b/web_dashboard_tile/__init__.py index 35d8f47b..9bc26bb1 100644 --- a/web_dashboard_tile/__init__.py +++ b/web_dashboard_tile/__init__.py @@ -1,26 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2010-2013 OpenERP s.a. (). -# Copyright (C) 2014 initOS GmbH & Co. KG (). -# Copyright (C) 2015-Today GRAP -# Author Markus Schneider -# @author Sylvain LE GAL (https://twitter.com/legalsylvain) -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2010-2013 OpenERP s.a. (). +# © 2014 initOS GmbH & Co. KG (). +# © 2015-Today GRAP +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from . import models +from . import models \ No newline at end of file diff --git a/web_dashboard_tile/__openerp__.py b/web_dashboard_tile/__openerp__.py index c401c30a..c438143a 100644 --- a/web_dashboard_tile/__openerp__.py +++ b/web_dashboard_tile/__openerp__.py @@ -1,38 +1,27 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2010-2013 OpenERP s.a. (). -# Copyright (C) 2014 initOS GmbH & Co. KG (). -# Author Markus Schneider -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2010-2013 OpenERP s.a. (). +# © 2014 initOS GmbH & Co. KG (). +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { "name": "Dashboard Tile", "summary": "Add Tiles to Dashboard", - "version": "8.0.1.0.0", + "version": "8.0.1.1.0", "depends": [ 'web', 'board', 'mail', 'web_widget_color', ], - 'author': "initOS GmbH & Co. KG,GRAP,Odoo Community Association (OCA)", + 'author': 'initOS GmbH & Co. KG, ' + 'GRAP, ' + 'Odoo Community Association (OCA)', "category": "web", 'license': 'AGPL-3', + 'contributors': [ + 'initOS GmbH & Co. KG', + 'GRAP', + 'Iván Todorovich ' + ], 'data': [ 'views/tile.xml', 'views/templates.xml', diff --git a/web_dashboard_tile/models/__init__.py b/web_dashboard_tile/models/__init__.py index fc23e732..97fec216 100644 --- a/web_dashboard_tile/models/__init__.py +++ b/web_dashboard_tile/models/__init__.py @@ -1,23 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2015-Today GRAP -# @author Sylvain LE GAL (https://twitter.com/legalsylvain) -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2010-2013 OpenERP s.a. (). +# © 2014 initOS GmbH & Co. KG (). +# © 2015-Today GRAP +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import tile_tile diff --git a/web_dashboard_tile/models/tile_tile.py b/web_dashboard_tile/models/tile_tile.py index 4743afcb..e011105c 100644 --- a/web_dashboard_tile/models/tile_tile.py +++ b/web_dashboard_tile/models/tile_tile.py @@ -1,35 +1,20 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2010-2013 OpenERP s.a. (). -# Copyright (C) 2014 initOS GmbH & Co. KG (). -# Copyright (C) 2015-Today GRAP -# Author Markus Schneider -# @author Sylvain LE GAL (https://twitter.com/legalsylvain) -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from openerp import api, fields -from openerp.models import Model -from openerp.exceptions import except_orm +# © 2010-2013 OpenERP s.a. (). +# © 2014 initOS GmbH & Co. KG (). +# © 2015-Today GRAP +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +import datetime +import time +from dateutil.relativedelta import relativedelta + +from openerp import api, fields, models +from openerp.tools.safe_eval import safe_eval as eval from openerp.tools.translate import _ +from openerp.exceptions import ValidationError -class TileTile(Model): +class TileTile(models.Model): _name = 'tile.tile' _order = 'sequence, name' @@ -37,77 +22,38 @@ class TileTile(Model): # https://docs.python.org/3/library/statistics.html#statistics.median # TODO : refactor, using statistics.median when Odoo will be available # in Python 3.4 - even = (0 if len(aList) % 2 else 1) + 1 - half = (len(aList) - 1) / 2 - return sum(sorted(aList)[half:half + even]) / float(even) - - def _get_tile_info(self): - ima_obj = self.env['ir.model.access'] - res = {} - for r in self: - r.active = False - r.count = 0 - r.computed_value = 0 - r.helper = '' - if ima_obj.check(r.model_id.model, 'read', False): - # Compute count item - model = self.env[r.model_id.model] - r.count = model.search_count(eval(r.domain)) - r.active = True - - # Compute datas for field_id depending of field_function - if r.field_function and r.field_id and r.count != 0: - records = model.search(eval(r.domain)) - vals = [x[r.field_id.name] for x in records] - desc = r.field_id.field_description - if r.field_function == 'min': - r.computed_value = min(vals) - r.helper = _("Minimum value of '%s'") % desc - elif r.field_function == 'max': - r.computed_value = max(vals) - r.helper = _("Maximum value of '%s'") % desc - elif r.field_function == 'sum': - r.computed_value = sum(vals) - r.helper = _("Total value of '%s'") % desc - elif r.field_function == 'avg': - r.computed_value = sum(vals) / len(vals) - r.helper = _("Average value of '%s'") % desc - elif r.field_function == 'median': - r.computed_value = self.median(vals) - r.helper = _("Median value of '%s'") % desc - return res + even = (0 if len(aList) % 2 else 1) + 1 + half = (len(aList) - 1) / 2 + return sum(sorted(aList)[half:half + even]) / float(even) - def _search_active(self, operator, value): - cr = self.env.cr - if operator != '=': - raise except_orm( - 'Unimplemented Feature', - 'Search on Active field disabled.') - ima_obj = self.env['ir.model.access'] - ids = [] - cr.execute(""" - SELECT tt.id, im.model - FROM tile_tile tt - INNER JOIN ir_model im - ON tt.model_id = im.id""") - for result in cr.fetchall(): - if (ima_obj.check(result[1], 'read', False) == value): - ids.append(result[0]) - return [('id', 'in', ids)] + def _get_eval_context(self): + def _context_today(): + return fields.Date.from_string(fields.Date.context_today(self)) + context = self.env.context.copy() + context.update({ + 'time': time, + 'datetime': datetime, + 'relativedelta': relativedelta, + 'context_today': _context_today, + 'current_date': time.strftime('%Y-%m-%d'), + }) + return context # Column Section name = fields.Char(required=True) - model_id = fields.Many2one( - comodel_name='ir.model', string='Model', required=True) - user_id = fields.Many2one( - comodel_name='res.users', string='User') + sequence = fields.Integer(default=0, required=True) + user_id = fields.Many2one('res.users', 'User') + background_color = fields.Char(default='#0E6C7E', oldname='color') + font_color = fields.Char(default='#FFFFFF') + + model_id = fields.Many2one('ir.model', 'Model', required=True) domain = fields.Text(default='[]') - action_id = fields.Many2one( - comodel_name='ir.actions.act_window', string='Action') - count = fields.Integer(compute='_get_tile_info') - computed_value = fields.Float(compute='_get_tile_info') - helper = fields.Char(compute='_get_tile_info') - field_function = fields.Selection(selection=[ + action_id = fields.Many2one('ir.actions.act_window', 'Action') + + count = fields.Integer(compute='_compute_data') + computed_value = fields.Float(compute='_compute_data') + + field_function = fields.Selection([ ('min', 'Minimum'), ('max', 'Maximum'), ('sum', 'Sum'), @@ -115,41 +61,67 @@ class TileTile(Model): ('median', 'Median'), ], string='Function') field_id = fields.Many2one( - comodel_name='ir.model.fields', string='Field', + 'ir.model.fields', + string='Field', domain="[('model_id', '=', model_id)," " ('ttype', 'in', ['float', 'int'])]") - active = fields.Boolean( - compute='_get_tile_info', readonly=True, search='_search_active') - background_color = fields.Char(default='#0E6C7E', oldname='color') - font_color = fields.Char(default='#FFFFFF') - sequence = fields.Integer(default=0, required=True) + helper = fields.Char(compute='_compute_function_helper') + + @api.one + def _compute_data(self): + self.count = 0 + self.computed_value = 0 + # Compute count item + model = self.env[self.model_id.model] + eval_context = self._get_eval_context() + self.count = model.search_count(eval(self.domain, eval_context)) + # Compute datas for field_id depending of field_function + if self.field_function and self.field_id and self.count != 0: + records = model.search(eval(self.domain, eval_context)) + vals = [x[self.field_id.name] for x in records] + if self.field_function == 'min': + self.computed_value = min(vals) + elif self.field_function == 'max': + self.computed_value = max(vals) + elif self.field_function == 'sum': + self.computed_value = sum(vals) + elif self.field_function == 'avg': + self.computed_value = sum(vals) / len(vals) + elif self.field_function == 'median': + self.computed_value = self.median(vals) + + @api.one + @api.onchange('field_function', 'field_id') + def _compute_function_helper(self): + self.helper = '' + if self.field_function and self.field_id: + desc = self.field_id.field_description + helpers = { + 'min': "Minimum value of '%s'", + 'max': "Maximum value of '%s'", + 'sum': "Total value of '%s'", + 'avg': "Average value of '%s'", + 'median': "Median value of '%s'", + } + self.helper = _(helpers.get(self.field_function, '')) % desc + + # Constraints and onchanges + @api.one + @api.constrains('model_id', 'field_id') + def _check_model_id_field_id(self): + if self.field_id and self.field_id.model_id.id != self.model_id.id: + raise ValidationError( + _("Please select a field of the selected model.")) + + @api.one + @api.constrains('field_id', 'field_function') + def _check_field_id_field_function(self): + if self.field_id and not self.field_function or\ + self.field_function and not self.field_id: + raise ValidationError( + _("Please set both: 'Field' and 'Function'.")) - # Constraint Section - def _check_model_id_field_id(self, cr, uid, ids, context=None): - for t in self.browse(cr, uid, ids, context=context): - if t.field_id and t.field_id.model_id.id != t.model_id.id: - return False - return True - - def _check_field_id_field_function(self, cr, uid, ids, context=None): - for t in self.browse(cr, uid, ids, context=context): - if t.field_id and not t.field_function or\ - t.field_function and not t.field_id: - return False - return True - - _constraints = [ - ( - _check_model_id_field_id, - "Error ! Please select a field of the selected model.", - ['model_id', 'field_id']), - ( - _check_field_id_field_function, - "Error ! Please set both fields: 'Field' and 'Function'.", - ['field_id', 'field_function']), - ] - - # View / action Section + # Action methods @api.multi def open_link(self): res = { diff --git a/web_dashboard_tile/static/src/js/custom_js.js b/web_dashboard_tile/static/src/js/custom_js.js index c192ef29..df16cee7 100644 --- a/web_dashboard_tile/static/src/js/custom_js.js +++ b/web_dashboard_tile/static/src/js/custom_js.js @@ -35,13 +35,13 @@ _.mixin({ var self = this; this.$('#add_dashboard_tile').on('click', this, function (){ self.save_tile(); - }) + }); }, render_data: function(dashboard_choices){ var selection = instance.web.qweb.render( "SearchView.addtodashboard.selection", { selections: dashboard_choices}); - this.$("form input").before(selection) + this.$("form input").before(selection); }, save_tile: function () { var self = this; @@ -97,4 +97,4 @@ _.mixin({ } }); -} +}; From a5cd01e6ecfa40fe4936a9d4e098d1502bf06dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Fri, 12 Aug 2016 11:50:15 -0300 Subject: [PATCH 018/103] FIX: Non-db action dictionaries should provide either multiple view modes or a single view mode and an optional view id. --- web_dashboard_tile/models/tile_tile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_dashboard_tile/models/tile_tile.py b/web_dashboard_tile/models/tile_tile.py index e011105c..1a5c617b 100644 --- a/web_dashboard_tile/models/tile_tile.py +++ b/web_dashboard_tile/models/tile_tile.py @@ -138,7 +138,7 @@ class TileTile(models.Model): } if self.action_id: res.update(self.action_id.read( - ['view_type', 'view_mode', 'view_id', 'type'])[0]) + ['view_type', 'view_mode', 'type'])[0]) # FIXME: restore original Domain + Filter would be better return res From 4370d4217efa8c040e4bd7e2074dda68e0f0384d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Fri, 12 Aug 2016 12:08:38 -0300 Subject: [PATCH 019/103] Show/Hide Add tile form under 'Add to Dashboard' menu --- web_dashboard_tile/static/src/css/tile.css | 26 ++++++++++++------- .../static/src/xml/custom_xml.xml | 2 +- web_dashboard_tile/views/tile.xml | 2 +- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/web_dashboard_tile/static/src/css/tile.css b/web_dashboard_tile/static/src/css/tile.css index 1d057cee..9bfdf0ae 100644 --- a/web_dashboard_tile/static/src/css/tile.css +++ b/web_dashboard_tile/static/src/css/tile.css @@ -1,24 +1,24 @@ -.openerp .oe_kanban_view .oe_dashbaord_tile{ +.openerp .oe_kanban_view .oe_dashboard_tile { width: 150px; height: 150px; border: 0; border-radius: 0; } -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_label, -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_count_without_computed_value, -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_count_with_computed_value, -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_computed_value { +.openerp .oe_kanban_view .oe_dashboard_tile .tile_label, +.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_without_computed_value, +.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_with_computed_value, +.openerp .oe_kanban_view .oe_dashboard_tile .tile_computed_value { width: 140px; text-align: center; } -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_label{ +.openerp .oe_kanban_view .oe_dashboard_tile .tile_label{ padding: 5px; font-size: 15px; } -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_count_without_computed_value{ +.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_without_computed_value{ font-size: 52px; font-weight: bold; position: absolute; @@ -26,7 +26,7 @@ bottom: 5px; } -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_count_with_computed_value{ +.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_with_computed_value{ font-size: 38px; font-weight: bold; position: absolute; @@ -34,7 +34,7 @@ bottom: 30px; } -.openerp .oe_kanban_view .oe_dashbaord_tile .tile_computed_value{ +.openerp .oe_kanban_view .oe_dashboard_tile .tile_computed_value{ font-size: 18px; font-weight: bold; position: absolute; @@ -42,3 +42,11 @@ bottom: 5px; font-style: italic; } + +.openerp .oe_searchview_drawer .oe_searchview_dashboard .oe_dashboard_tile_form { + display: none; +} + +.openerp .oe_searchview_drawer .oe_opened .oe_dashboard_tile_form { + display: block; +} \ No newline at end of file diff --git a/web_dashboard_tile/static/src/xml/custom_xml.xml b/web_dashboard_tile/static/src/xml/custom_xml.xml index 3e0c2316..38a0e3e9 100644 --- a/web_dashboard_tile/static/src/xml/custom_xml.xml +++ b/web_dashboard_tile/static/src/xml/custom_xml.xml @@ -2,7 +2,7 @@ -
+
diff --git a/web_dashboard_tile/views/tile.xml b/web_dashboard_tile/views/tile.xml index 36411ad8..5eef1756 100644 --- a/web_dashboard_tile/views/tile.xml +++ b/web_dashboard_tile/views/tile.xml @@ -61,7 +61,7 @@ -
+
From 887ee3e6da39fe0409d83f9f0a4206311ded8d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Mon, 15 Aug 2016 22:15:57 +0200 Subject: [PATCH 020/103] [FIX] remove en.po that was erroneously created by transbot --- help_online/i18n/en.po | 236 ---------------- help_popup/i18n/en.po | 64 ----- support_branding/i18n/en.po | 49 ---- web_advanced_search_wildcard/i18n/en.po | 24 -- web_advanced_search_x2x/i18n/en.po | 46 --- web_ckeditor4/i18n/en.po | 38 --- web_dashboard_tile/i18n/en.po | 263 ------------------ web_easy_switch_company/i18n/en.po | 33 --- web_export_view/i18n/en.po | 46 --- web_graph_improved/i18n/en.po | 38 --- web_hideleftmenu/i18n/en.po | 25 -- web_listview_custom_element_number/i18n/en.po | 25 -- web_m2x_options/i18n/en.po | 42 --- web_offline_warning/i18n/en.po | 39 --- web_option_auto_color/i18n/en.po | 27 -- web_search_datetime_completion/i18n/en.po | 25 -- web_shortcuts/i18n/en.po | 80 ------ web_switch_company_warning/i18n/en.po | 39 --- web_tree_dynamic_colored_field/i18n/en.po | 23 -- web_tree_image/i18n/en.po | 25 -- web_widget_digitized_signature/i18n/en.po | 39 --- web_widget_image_download/i18n/en.po | 23 -- web_widget_mail_send_odoo/i18n/en.po | 39 --- .../i18n/en.po | 32 --- web_widget_one2many_tags/i18n/en.po | 26 -- web_widget_text_markdown/i18n/en.po | 25 -- web_widget_x2many_2d_matrix/i18n/en.po | 26 -- 27 files changed, 1397 deletions(-) delete mode 100644 help_online/i18n/en.po delete mode 100644 help_popup/i18n/en.po delete mode 100644 support_branding/i18n/en.po delete mode 100644 web_advanced_search_wildcard/i18n/en.po delete mode 100644 web_advanced_search_x2x/i18n/en.po delete mode 100644 web_ckeditor4/i18n/en.po delete mode 100644 web_dashboard_tile/i18n/en.po delete mode 100644 web_easy_switch_company/i18n/en.po delete mode 100644 web_export_view/i18n/en.po delete mode 100644 web_graph_improved/i18n/en.po delete mode 100644 web_hideleftmenu/i18n/en.po delete mode 100644 web_listview_custom_element_number/i18n/en.po delete mode 100644 web_m2x_options/i18n/en.po delete mode 100644 web_offline_warning/i18n/en.po delete mode 100644 web_option_auto_color/i18n/en.po delete mode 100644 web_search_datetime_completion/i18n/en.po delete mode 100644 web_shortcuts/i18n/en.po delete mode 100644 web_switch_company_warning/i18n/en.po delete mode 100644 web_tree_dynamic_colored_field/i18n/en.po delete mode 100644 web_tree_image/i18n/en.po delete mode 100644 web_widget_digitized_signature/i18n/en.po delete mode 100644 web_widget_image_download/i18n/en.po delete mode 100644 web_widget_mail_send_odoo/i18n/en.po delete mode 100644 web_widget_many2many_tags_multi_selection/i18n/en.po delete mode 100644 web_widget_one2many_tags/i18n/en.po delete mode 100644 web_widget_text_markdown/i18n/en.po delete mode 100644 web_widget_x2many_2d_matrix/i18n/en.po diff --git a/help_online/i18n/en.po b/help_online/i18n/en.po deleted file mode 100644 index acfd12e4..00000000 --- a/help_online/i18n/en.po +++ /dev/null @@ -1,236 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * help_online -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:08+0000\n" -"PO-Revision-Date: 2016-04-28 07:09+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: help_online -#. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 -#, python-format -msgid "Cancel" -msgstr "Cancel" - -#. module: help_online -#: view:export.help.wizard:help_online.export_help_wizard_view -#: view:import.help.wizard:help_online.import_help_wizard_view -msgid "Close" -msgstr "Close" - -#. module: help_online -#. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 -#, python-format -msgid "Confirm" -msgstr "Confirm" - -#. module: help_online -#: code:addons/help_online/models/help_online.py:57 -#, python-format -msgid "Create Help page for %s" -msgstr "Create Help page for %s" - -#. module: help_online -#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 -#: field:import.help.wizard,create_uid:0 -msgid "Created by" -msgstr "Created by" - -#. module: help_online -#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 -#: field:import.help.wizard,create_date:0 -msgid "Created on" -msgstr "Created on" - -#. module: help_online -#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 -#: field:import.help.wizard,display_name:0 -msgid "Display Name" -msgstr "Display Name" - -#. module: help_online -#: view:export.help.wizard:help_online.export_help_wizard_view -msgid "Export" -msgstr "Export" - -#. module: help_online -#: code:addons/help_online/models/export_help_wizard.py:267 -#: model:ir.actions.act_window,name:help_online.action_export_help_wizard -#, python-format -msgid "Export Help" -msgstr "Export Help" - -#. module: help_online -#: view:export.help.wizard:help_online.export_help_wizard_view -msgid "Export Help Data" -msgstr "Export Help Data" - -#. module: help_online -#: model:ir.model,name:help_online.model_export_help_wizard -#: model:ir.ui.menu,name:help_online.menu_help_export -msgid "Export Help Online" -msgstr "Export Help Online" - -#. module: help_online -#: field:export.help.wizard,export_filename:0 -msgid "Export XML Filename" -msgstr "Export XML Filename" - -#. module: help_online -#: model:ir.ui.menu,name:help_online.menu_help -#: model:ir.ui.menu,name:help_online.menu_help_main -msgid "Help Online" -msgstr "Help Online" - -#. module: help_online -#: code:addons/help_online/models/help_online.py:52 -#, python-format -msgid "Help on %s" -msgstr "Help on %s" - -#. module: help_online -#: model:res.groups,name:help_online.help_online_group_reader -msgid "Help reader" -msgstr "Help reader" - -#. module: help_online -#: model:res.groups,name:help_online.help_online_group_writer -msgid "Help writer" -msgstr "Help writer" - -#. module: help_online -#: field:export.help.wizard,id:0 field:help.online,id:0 -#: field:import.help.wizard,id:0 -msgid "ID" -msgstr "ID" - -#. module: help_online -#: view:import.help.wizard:help_online.import_help_wizard_view -msgid "Import" -msgstr "Import" - -#. module: help_online -#: model:ir.actions.act_window,name:help_online.action_import_help_wizard -msgid "Import Help" -msgstr "Import Help" - -#. module: help_online -#: view:import.help.wizard:help_online.import_help_wizard_view -msgid "Import Help Data" -msgstr "Import Help Data" - -#. module: help_online -#: model:ir.ui.menu,name:help_online.menu_help_import -msgid "Import Help Online" -msgstr "Import Help Online" - -#. module: help_online -#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 -#: field:import.help.wizard,__last_update:0 -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: help_online -#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 -#: field:import.help.wizard,write_uid:0 -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: help_online -#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 -#: field:import.help.wizard,write_date:0 -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: help_online -#: code:addons/help_online/models/export_help_wizard.py:260 -#, python-format -msgid "No data to export !" -msgstr "No data to export !" - -#. module: help_online -#: code:addons/help_online/models/help_online.py:33 -#, python-format -msgid "No page prefix parameter specified !" -msgstr "No page prefix parameter specified !" - -#. module: help_online -#. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 -#, python-format -msgid "Ok" -msgstr "Ok" - -#. module: help_online -#. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 -#, python-format -msgid "Page does not exist. Do you want to create?" -msgstr "Page does not exist. Do you want to create?" - -#. module: help_online -#: field:import.help.wizard,source_file:0 -msgid "Source File" -msgstr "Source File" - -#. module: help_online -#: view:export.help.wizard:help_online.export_help_wizard_view -msgid "" -"This wizard allow you to export all QWeb views\n" -" related to help online. The result will be an Odoo\n" -" data xml file." -msgstr "This wizard allow you to export all QWeb views\n related to help online. The result will be an Odoo\n data xml file." - -#. module: help_online -#: view:import.help.wizard:help_online.import_help_wizard_view -msgid "" -"This wizard allow you to import QWeb views\n" -" related to help online. The required file format is an Odoo\n" -" data xml file." -msgstr "This wizard allow you to import QWeb views\n related to help online. The required file format is an Odoo\n data xml file." - -#. module: help_online -#: code:addons/help_online/models/export_help_wizard.py:297 -#, python-format -msgid "Unable to write autobackup file in given directory: %s" -msgstr "Unable to write autobackup file in given directory: %s" - -#. module: help_online -#: view:ir.ui.view:help_online.view_view_search -msgid "Website Page" -msgstr "Website Page" - -#. module: help_online -#: view:ir.ui.view:help_online.view_view_form -msgid "Website Page?" -msgstr "Website Page?" - -#. module: help_online -#: model:ir.actions.act_window,name:help_online.action_website_pages -#: model:ir.ui.menu,name:help_online.menu_help_pages -msgid "Website Pages" -msgstr "Website Pages" - -#. module: help_online -#: field:export.help.wizard,data:0 -msgid "XML" -msgstr "XML" - -#. module: help_online -#: view:export.help.wizard:help_online.export_help_wizard_view -#: view:import.help.wizard:help_online.import_help_wizard_view -msgid "or" -msgstr "or" diff --git a/help_popup/i18n/en.po b/help_popup/i18n/en.po deleted file mode 100644 index a47578a3..00000000 --- a/help_popup/i18n/en.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * help_popup -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:19+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: help_popup -#. openerp-web -#: code:addons/help_popup/static/src/xml/popup_help.xml:5 -#, python-format -msgid " " -msgstr " " - -#. module: help_popup -#: field:ir.actions.act_window,advanced_help:0 -msgid "Advanced Help" -msgstr "Advanced Help" - -#. module: help_popup -#: model:ir.actions.report.xml,name:help_popup.report_help_popup -msgid "Contextual Help" -msgstr "Contextual Help" - -#. module: help_popup -#: field:ir.actions.act_window,enduser_help:0 -msgid "End User Help" -msgstr "End User Help" - -#. module: help_popup -#: view:website:help_popup.tpl_help -msgid "Help from Odoo" -msgstr "Help from Odoo" - -#. module: help_popup -#: view:website:help_popup.tpl_help -msgid "Help from developer" -msgstr "Help from developer" - -#. module: help_popup -#: help:ir.actions.act_window,advanced_help:0 -msgid "" -"Use this field to add custom content for documentation purpose\n" -"mainly by developers" -msgstr "Use this field to add custom content for documentation purpose\nmainly by developers" - -#. module: help_popup -#: help:ir.actions.act_window,enduser_help:0 -msgid "" -"Use this field to add custom content for documentation purpose\n" -"mainly by power users " -msgstr "Use this field to add custom content for documentation purpose\nmainly by power users " diff --git a/support_branding/i18n/en.po b/support_branding/i18n/en.po deleted file mode 100644 index c732e395..00000000 --- a/support_branding/i18n/en.po +++ /dev/null @@ -1,49 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * support_branding -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:19+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: support_branding -#: view:website:web.menu_secondary -msgid ", supported by" -msgstr ", supported by" - -#. module: support_branding -#. openerp-web -#: code:addons/support_branding/static/src/js/support_branding.js:106 -#, python-format -msgid "Email to %s" -msgstr "Email to %s" - -#. module: support_branding -#. openerp-web -#: code:addons/support_branding/static/src/xml/base.xml:12 -#, python-format -msgid "Email to support company" -msgstr "Email to support company" - -#. module: support_branding -#. openerp-web -#: code:addons/support_branding/static/src/xml/base.xml:10 -#, python-format -msgid "Please fill in how you produced this error..." -msgstr "Please fill in how you produced this error..." - -#. module: support_branding -#: view:website:web.menu_secondary -msgid "Version" -msgstr "Version" diff --git a/web_advanced_search_wildcard/i18n/en.po b/web_advanced_search_wildcard/i18n/en.po deleted file mode 100644 index e85bb958..00000000 --- a/web_advanced_search_wildcard/i18n/en.po +++ /dev/null @@ -1,24 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (7.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-07 17:50+0000\n" -"PO-Revision-Date: 2015-10-07 17:50+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-7-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_advanced_search_wildcard -#. openerp-web -#: code:addons/web_advanced_search_wildcard/static/src/js/search.js:4 -#, python-format -msgid "matches" -msgstr "matches" diff --git a/web_advanced_search_x2x/i18n/en.po b/web_advanced_search_x2x/i18n/en.po deleted file mode 100644 index fd5926c6..00000000 --- a/web_advanced_search_x2x/i18n/en.po +++ /dev/null @@ -1,46 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_advanced_search_x2x -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-16 07:41+0000\n" -"PO-Revision-Date: 2015-11-07 11:19+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_advanced_search_x2x -#. openerp-web -#: code:addons/web_advanced_search_x2x/static/src/xml/web_advanced_search_x2x.xml:8 -#, python-format -msgid "Search" -msgstr "Search" - -#. module: web_advanced_search_x2x -#. openerp-web -#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:235 -#, python-format -msgid "Use criteria" -msgstr "Use criteria" - -#. module: web_advanced_search_x2x -#. openerp-web -#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:172 -#, python-format -msgid "invalid search domain" -msgstr "invalid search domain" - -#. module: web_advanced_search_x2x -#. openerp-web -#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:47 -#, python-format -msgid "is in selection" -msgstr "is in selection" diff --git a/web_ckeditor4/i18n/en.po b/web_ckeditor4/i18n/en.po deleted file mode 100644 index 24d69da1..00000000 --- a/web_ckeditor4/i18n/en.po +++ /dev/null @@ -1,38 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_ckeditor4 -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-28 07:10+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_ckeditor4 -#: field:ckeditor.monkeypatch,display_name:0 -msgid "Display Name" -msgstr "Display Name" - -#. module: web_ckeditor4 -#: field:ckeditor.monkeypatch,id:0 -msgid "ID" -msgstr "ID" - -#. module: web_ckeditor4 -#: field:ckeditor.monkeypatch,__last_update:0 -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: web_ckeditor4 -#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch -msgid "Monkeypatches for CKEditor" -msgstr "Monkeypatches for CKEditor" diff --git a/web_dashboard_tile/i18n/en.po b/web_dashboard_tile/i18n/en.po deleted file mode 100644 index 1f2e4c37..00000000 --- a/web_dashboard_tile/i18n/en.po +++ /dev/null @@ -1,263 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_dashboard_tile -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-28 07:10+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_dashboard_tile -#: field:tile.tile,action_id:0 -msgid "Action" -msgstr "Action" - -#. module: web_dashboard_tile -#: field:tile.tile,active:0 -msgid "Active" -msgstr "Active" - -#. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 -msgid "Average" -msgstr "Average" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Average value of '%s'" - -#. module: web_dashboard_tile -#: field:tile.tile,background_color:0 -msgid "Background color" -msgstr "Background color" - -#. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Computed value" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 -msgid "Count" -msgstr "Count" - -#. module: web_dashboard_tile -#. openerp-web -#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 -#, python-format -msgid "Create" -msgstr "Create" - -#. module: web_dashboard_tile -#: field:tile.tile,create_uid:0 -msgid "Created by" -msgstr "Created by" - -#. module: web_dashboard_tile -#: field:tile.tile,create_date:0 -msgid "Created on" -msgstr "Created on" - -#. module: web_dashboard_tile -#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile -#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile -#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard -msgid "Dashboard" -msgstr "Dashboard" - -#. module: web_dashboard_tile -#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile -msgid "Dashboard Tile" -msgstr "Dashboard Tile" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view -msgid "Dashboard tiles" -msgstr "Dashboard tiles" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Display" -msgstr "Display" - -#. module: web_dashboard_tile -#: field:tile.tile,display_name:0 -msgid "Display Name" -msgstr "Display Name" - -#. module: web_dashboard_tile -#: field:tile.tile,domain:0 -msgid "Domain" -msgstr "Domain" - -#. module: web_dashboard_tile -#. openerp-web -#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 -#, python-format -msgid "Error" -msgstr "Error" - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Error ! Please select a field of the selected model." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Error ! Please set both fields: 'Field' and 'Function'." - -#. module: web_dashboard_tile -#: field:tile.tile,field_id:0 -msgid "Field" -msgstr "Field" - -#. module: web_dashboard_tile -#. openerp-web -#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 -#, python-format -msgid "Filter name is required." -msgstr "Filter name is required." - -#. module: web_dashboard_tile -#: field:tile.tile,font_color:0 -msgid "Font color" -msgstr "Font color" - -#. module: web_dashboard_tile -#: field:tile.tile,field_function:0 -msgid "Function" -msgstr "Function" - -#. module: web_dashboard_tile -#: field:tile.tile,helper:0 -msgid "Helper" -msgstr "Helper" - -#. module: web_dashboard_tile -#: field:tile.tile,id:0 -msgid "ID" -msgstr "ID" - -#. module: web_dashboard_tile -#: field:tile.tile,__last_update:0 -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: web_dashboard_tile -#: field:tile.tile,write_uid:0 -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: web_dashboard_tile -#: field:tile.tile,write_date:0 -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 -msgid "Maximum" -msgstr "Maximum" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Maximum value of '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 -msgid "Median" -msgstr "Median" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Median value of '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 -msgid "Minimum" -msgstr "Minimum" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Minimum value of '%s'" - -#. module: web_dashboard_tile -#: field:tile.tile,model_id:0 -msgid "Model" -msgstr "Model" - -#. module: web_dashboard_tile -#: field:tile.tile,name:0 -msgid "Name" -msgstr "Name" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Optional Field Informations" - -#. module: web_dashboard_tile -#: field:tile.tile,sequence:0 -msgid "Sequence" -msgstr "Sequence" - -#. module: web_dashboard_tile -#. openerp-web -#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 -#, python-format -msgid "Success" -msgstr "Success" - -#. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 -msgid "Sum" -msgstr "Sum" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Technical Informations" -msgstr "Technical Informations" - -#. module: web_dashboard_tile -#. openerp-web -#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 -#, python-format -msgid "Tile is created" -msgstr "Tile is created" - -#. module: web_dashboard_tile -#. openerp-web -#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 -#, python-format -msgid "Tile:" -msgstr "Tile:" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 -#, python-format -msgid "Total value of '%s'" -msgstr "Total value of '%s'" - -#. module: web_dashboard_tile -#: field:tile.tile,user_id:0 -msgid "User" -msgstr "User" diff --git a/web_easy_switch_company/i18n/en.po b/web_easy_switch_company/i18n/en.po deleted file mode 100644 index 1b34b32a..00000000 --- a/web_easy_switch_company/i18n/en.po +++ /dev/null @@ -1,33 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_easy_switch_company -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:19+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_easy_switch_company -#: model:ir.model,name:web_easy_switch_company.model_res_company -msgid "Companies" -msgstr "Companies" - -#. module: web_easy_switch_company -#: field:res.company,logo_topbar:0 -msgid "Logo displayed in the switch company menu" -msgstr "Logo displayed in the switch company menu" - -#. module: web_easy_switch_company -#: model:ir.model,name:web_easy_switch_company.model_res_users -msgid "Users" -msgstr "Users" diff --git a/web_export_view/i18n/en.po b/web_export_view/i18n/en.po deleted file mode 100644 index cc2b538d..00000000 --- a/web_export_view/i18n/en.po +++ /dev/null @@ -1,46 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_export_view -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:20+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_export_view -#. openerp-web -#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:8 -#, python-format -msgid "Excel" -msgstr "Excel" - -#. module: web_export_view -#. openerp-web -#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:6 -#, python-format -msgid "Export Current View" -msgstr "Export Current View" - -#. module: web_export_view -#. openerp-web -#: code:addons/web_export_view/static/src/js/web_export_view.js:84 -#, python-format -msgid "False" -msgstr "False" - -#. module: web_export_view -#. openerp-web -#: code:addons/web_export_view/static/src/js/web_export_view.js:81 -#, python-format -msgid "True" -msgstr "True" diff --git a/web_graph_improved/i18n/en.po b/web_graph_improved/i18n/en.po deleted file mode 100644 index 65f7297e..00000000 --- a/web_graph_improved/i18n/en.po +++ /dev/null @@ -1,38 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_graph_improved -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:20+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_graph_improved -#. openerp-web -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 -#, python-format -msgid "Total" -msgstr "Total" - -#. module: web_graph_improved -#. openerp-web -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 -#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 -#, python-format -msgid "Undefined" -msgstr "Undefined" diff --git a/web_hideleftmenu/i18n/en.po b/web_hideleftmenu/i18n/en.po deleted file mode 100644 index 68697edd..00000000 --- a/web_hideleftmenu/i18n/en.po +++ /dev/null @@ -1,25 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_hideleftmenu -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:11+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_hideleftmenu -#. openerp-web -#: code:addons/web_hideleftmenu/static/src/xml/lib.xml:7 -#, python-format -msgid "Hide/Show Menu" -msgstr "Hide/Show Menu" diff --git a/web_listview_custom_element_number/i18n/en.po b/web_listview_custom_element_number/i18n/en.po deleted file mode 100644 index b72e3244..00000000 --- a/web_listview_custom_element_number/i18n/en.po +++ /dev/null @@ -1,25 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_listview_custom_element_number -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:20+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_listview_custom_element_number -#. openerp-web -#: code:addons/web_listview_custom_element_number/static/src/js/web_listview_custom_element_number.js:54 -#, python-format -msgid "0 (Unlimited)" -msgstr "0 (Unlimited)" diff --git a/web_m2x_options/i18n/en.po b/web_m2x_options/i18n/en.po deleted file mode 100644 index de2d12db..00000000 --- a/web_m2x_options/i18n/en.po +++ /dev/null @@ -1,42 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_m2x_options -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2015-11-07 11:20+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_m2x_options -#. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 -#, python-format -msgid "Create \"%s\"" -msgstr "Create \"%s\"" - -#. module: web_m2x_options -#. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 -#, python-format -msgid "Create and Edit..." -msgstr "Create and Edit..." - -#. module: web_m2x_options -#. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 -#, python-format -msgid "Search More..." -msgstr "Search More..." diff --git a/web_offline_warning/i18n/en.po b/web_offline_warning/i18n/en.po deleted file mode 100644 index 41e629fa..00000000 --- a/web_offline_warning/i18n/en.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_offline_warning -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-12 22:45+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_offline_warning -#. openerp-web -#: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:20 -#, python-format -msgid "Ok" -msgstr "Ok" - -#. module: web_offline_warning -#. openerp-web -#: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:23 -#, python-format -msgid "The server cannot be reached. You are probably offline." -msgstr "The server cannot be reached. You are probably offline." - -#. module: web_offline_warning -#. openerp-web -#: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:18 -#, python-format -msgid "Warning" -msgstr "Warning" diff --git a/web_option_auto_color/i18n/en.po b/web_option_auto_color/i18n/en.po deleted file mode 100644 index 41bd3217..00000000 --- a/web_option_auto_color/i18n/en.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_option_auto_color -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-28 07:11+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_option_auto_color -#. openerp-web -#: code:addons/web_option_auto_color/static/src/xml/templates.xml:5 -#, python-format -msgid "" -"column.autocolor == '1' and view.auto_color_cell_style(render_cell(record, " -"column), column)" -msgstr "column.autocolor == '1' and view.auto_color_cell_style(render_cell(record, column), column)" diff --git a/web_search_datetime_completion/i18n/en.po b/web_search_datetime_completion/i18n/en.po deleted file mode 100644 index 923fae7d..00000000 --- a/web_search_datetime_completion/i18n/en.po +++ /dev/null @@ -1,25 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_search_datetime_completion -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:12+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_search_datetime_completion -#. openerp-web -#: code:addons/web_search_datetime_completion/static/src/js/web_search_datetime_completion.js:60 -#, python-format -msgid "Search %(field)s at: %(value)s" -msgstr "Search %(field)s at: %(value)s" diff --git a/web_shortcuts/i18n/en.po b/web_shortcuts/i18n/en.po deleted file mode 100644 index 8cd5118b..00000000 --- a/web_shortcuts/i18n/en.po +++ /dev/null @@ -1,80 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_shortcuts -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-28 07:12+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Add / Remove Shortcut..." - -#. module: web_shortcuts -#: field:web.shortcut,create_uid:0 -msgid "Created by" -msgstr "Created by" - -#. module: web_shortcuts -#: field:web.shortcut,create_date:0 -msgid "Created on" -msgstr "Created on" - -#. module: web_shortcuts -#: field:web.shortcut,display_name:0 -msgid "Display Name" -msgstr "Display Name" - -#. module: web_shortcuts -#: field:web.shortcut,id:0 -msgid "ID" -msgstr "ID" - -#. module: web_shortcuts -#: field:web.shortcut,__last_update:0 -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: web_shortcuts -#: field:web.shortcut,write_uid:0 -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: web_shortcuts -#: field:web.shortcut,write_date:0 -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: web_shortcuts -#: field:web.shortcut,menu_id:0 -msgid "Menu id" -msgstr "Menu id" - -#. module: web_shortcuts -#: field:web.shortcut,name:0 -msgid "Shortcut Name" -msgstr "Shortcut Name" - -#. module: web_shortcuts -#: sql_constraint:web.shortcut:0 -msgid "Shortcut for this menu already exists!" -msgstr "Shortcut for this menu already exists!" - -#. module: web_shortcuts -#: field:web.shortcut,user_id:0 -msgid "User Ref." -msgstr "User Ref." diff --git a/web_switch_company_warning/i18n/en.po b/web_switch_company_warning/i18n/en.po deleted file mode 100644 index 8f1a0c34..00000000 --- a/web_switch_company_warning/i18n/en.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_switch_company_warning -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:12+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_switch_company_warning -#. openerp-web -#: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:6 -#, python-format -msgid "Reload" -msgstr "Reload" - -#. module: web_switch_company_warning -#. openerp-web -#: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:5 -#, python-format -msgid "You switched to a different company or user with another tab or window" -msgstr "You switched to a different company or user with another tab or window" - -#. module: web_switch_company_warning -#. openerp-web -#: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:6 -#, python-format -msgid "to refresh your session" -msgstr "to refresh your session" diff --git a/web_tree_dynamic_colored_field/i18n/en.po b/web_tree_dynamic_colored_field/i18n/en.po deleted file mode 100644 index 8cac9b7d..00000000 --- a/web_tree_dynamic_colored_field/i18n/en.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_tree_dynamic_colored_field -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-24 00:46+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: web_tree_dynamic_colored_field -#. openerp-web -#: code:addons/web_tree_dynamic_colored_field/static/src/xml/web_tree_dynamic_colored_field.xml:7 -#, python-format -msgid "columns.fct_colorize(record, column)" -msgstr "columns.fct_colorize(record, column)" diff --git a/web_tree_image/i18n/en.po b/web_tree_image/i18n/en.po deleted file mode 100644 index 5456c2f1..00000000 --- a/web_tree_image/i18n/en.po +++ /dev/null @@ -1,25 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_tree_image -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-18 15:48+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_tree_image -#. openerp-web -#: code:addons/web_tree_image/static/src/xml/widget.xml:31 -#, python-format -msgid "Image preview" -msgstr "Image preview" diff --git a/web_widget_digitized_signature/i18n/en.po b/web_widget_digitized_signature/i18n/en.po deleted file mode 100644 index f9534445..00000000 --- a/web_widget_digitized_signature/i18n/en.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_digitized_signature -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:13+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_widget_digitized_signature -#. openerp-web -#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 -#, python-format -msgid "Clear" -msgstr "Clear" - -#. module: web_widget_digitized_signature -#. openerp-web -#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 -#, python-format -msgid "Could not display the selected image." -msgstr "Could not display the selected image." - -#. module: web_widget_digitized_signature -#. openerp-web -#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 -#, python-format -msgid "Image" -msgstr "Image" diff --git a/web_widget_image_download/i18n/en.po b/web_widget_image_download/i18n/en.po deleted file mode 100644 index 59eab4d8..00000000 --- a/web_widget_image_download/i18n/en.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_image_download -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-30 01:06+0000\n" -"PO-Revision-Date: 2016-07-30 01:06+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: web_widget_image_download -#. openerp-web -#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 -#, python-format -msgid "Download" -msgstr "Download" diff --git a/web_widget_mail_send_odoo/i18n/en.po b/web_widget_mail_send_odoo/i18n/en.po deleted file mode 100644 index e54770cd..00000000 --- a/web_widget_mail_send_odoo/i18n/en.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_mail_send_odoo -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:13+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_widget_mail_send_odoo -#. openerp-web -#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 -#, python-format -msgid "Can't send email to invalid e-mail address" -msgstr "Can't send email to invalid e-mail address" - -#. module: web_widget_mail_send_odoo -#. openerp-web -#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 -#, python-format -msgid "E-mail Error" -msgstr "E-mail Error" - -#. module: web_widget_mail_send_odoo -#. openerp-web -#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:93 -#, python-format -msgid "Please complete partner's information." -msgstr "Please complete partner's information." diff --git a/web_widget_many2many_tags_multi_selection/i18n/en.po b/web_widget_many2many_tags_multi_selection/i18n/en.po deleted file mode 100644 index 1d6e68d9..00000000 --- a/web_widget_many2many_tags_multi_selection/i18n/en.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_many2many_tags_multi_selection -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_widget_many2many_tags_multi_selection -#. openerp-web -#: code:addons/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js:20 -#, python-format -msgid "Create: " -msgstr "Create: " - -#. module: web_widget_many2many_tags_multi_selection -#. openerp-web -#: code:addons/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js:20 -#, python-format -msgid "Search: " -msgstr "Search: " diff --git a/web_widget_one2many_tags/i18n/en.po b/web_widget_one2many_tags/i18n/en.po deleted file mode 100644 index 1e103c0a..00000000 --- a/web_widget_one2many_tags/i18n/en.po +++ /dev/null @@ -1,26 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_one2many_tags -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-02 16:09+0000\n" -"PO-Revision-Date: 2016-04-02 16:13+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_widget_one2many_tags -#. openerp-web -#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 -#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:200 -#, python-format -msgid "New record" -msgstr "New record" diff --git a/web_widget_text_markdown/i18n/en.po b/web_widget_text_markdown/i18n/en.po deleted file mode 100644 index 1490673e..00000000 --- a/web_widget_text_markdown/i18n/en.po +++ /dev/null @@ -1,25 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_text_markdown -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_widget_text_markdown -#. openerp-web -#: code:addons/web_widget_text_markdown/static/src/js/web_widget_text_markdown.js:12 -#, python-format -msgid "MarkDown" -msgstr "MarkDown" diff --git a/web_widget_x2many_2d_matrix/i18n/en.po b/web_widget_x2many_2d_matrix/i18n/en.po deleted file mode 100644 index 437769d2..00000000 --- a/web_widget_x2many_2d_matrix/i18n/en.po +++ /dev/null @@ -1,26 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * web_widget_x2many_2d_matrix -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: web (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:22+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-web-8-0/language/en/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: web_widget_x2many_2d_matrix -#. openerp-web -#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 -#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 -#, python-format -msgid "Total" -msgstr "Total" From eb841b494c711e770767468b6caa3d166dc28c35 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 16 Aug 2016 02:40:54 +0200 Subject: [PATCH 021/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7895dc08..3c7c6c25 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ addon | version | summary [web_hide_db_manager_link](web_hide_db_manager_link/) | 8.0.1.0.0 | Hide link to database manager in login screen [web_hideleftmenu](web_hideleftmenu/) | 8.0.1.0.0 | Hide Left Menu in Web Interface [web_ir_actions_act_window_message](web_ir_actions_act_window_message/) | 8.0.1.0.0 | Show a message box to users +[web_ir_actions_act_window_none](web_ir_actions_act_window_none/) | 8.0.1.0.0 | Execute nothing [web_ir_actions_act_window_page](web_ir_actions_act_window_page/) | 8.0.1.0.0 | Allows a developer to trigger a pager to show the previous or next next record in the form view [web_last_viewed_records](web_last_viewed_records/) | 8.0.1.0.0 | Last viewed records [web_listview_custom_element_number](web_listview_custom_element_number/) | 8.0.1.0.0 | Allow users to set manually a quantity of items to display in a tree view From 18cbdf319715ad98ada671520d487039f2b3d427 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 16 Aug 2016 04:39:30 +0200 Subject: [PATCH 022/103] [ADD] setup.py --- .../web_ir_actions_act_window_none/odoo_addons/__init__.py | 1 + .../odoo_addons/web_ir_actions_act_window_none | 1 + setup/web_ir_actions_act_window_none/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_ir_actions_act_window_none/odoo_addons/__init__.py create mode 120000 setup/web_ir_actions_act_window_none/odoo_addons/web_ir_actions_act_window_none create mode 100644 setup/web_ir_actions_act_window_none/setup.py diff --git a/setup/web_ir_actions_act_window_none/odoo_addons/__init__.py b/setup/web_ir_actions_act_window_none/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_ir_actions_act_window_none/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_ir_actions_act_window_none/odoo_addons/web_ir_actions_act_window_none b/setup/web_ir_actions_act_window_none/odoo_addons/web_ir_actions_act_window_none new file mode 120000 index 00000000..862a0674 --- /dev/null +++ b/setup/web_ir_actions_act_window_none/odoo_addons/web_ir_actions_act_window_none @@ -0,0 +1 @@ +../../../web_ir_actions_act_window_none \ No newline at end of file diff --git a/setup/web_ir_actions_act_window_none/setup.py b/setup/web_ir_actions_act_window_none/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_ir_actions_act_window_none/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 757a1812b5ddcd2b13a67706f9b749003f9c4015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Thu, 18 Aug 2016 12:19:40 -0300 Subject: [PATCH 023/103] Add new line to __init__.py --- web_dashboard_tile/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_dashboard_tile/__init__.py b/web_dashboard_tile/__init__.py index 9bc26bb1..1d098b58 100644 --- a/web_dashboard_tile/__init__.py +++ b/web_dashboard_tile/__init__.py @@ -4,4 +4,4 @@ # © 2015-Today GRAP # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from . import models \ No newline at end of file +from . import models From d96d8f4542f0cebcbfaad0051275c0baaf43d0c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Thu, 18 Aug 2016 12:29:58 -0300 Subject: [PATCH 024/103] Fixes --- web_dashboard_tile/README.rst | 2 ++ web_dashboard_tile/models/tile_tile.py | 9 ++++----- web_dashboard_tile/static/src/css/tile.css | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/web_dashboard_tile/README.rst b/web_dashboard_tile/README.rst index 8aa70f02..b6ee2989 100644 --- a/web_dashboard_tile/README.rst +++ b/web_dashboard_tile/README.rst @@ -34,6 +34,7 @@ possible future improvments =========================== * add icons; * support client side action (like inbox); +* restore original Domain + Filter when an action is set. Bug Tracker =========== @@ -52,6 +53,7 @@ Contributors * Markus Schneider * Sylvain Le Gal (https://twitter.com/legalsylvain) +* Iván Todorovich Maintainer ---------- diff --git a/web_dashboard_tile/models/tile_tile.py b/web_dashboard_tile/models/tile_tile.py index 1a5c617b..7dc72758 100644 --- a/web_dashboard_tile/models/tile_tile.py +++ b/web_dashboard_tile/models/tile_tile.py @@ -35,7 +35,7 @@ class TileTile(models.Model): 'datetime': datetime, 'relativedelta': relativedelta, 'context_today': _context_today, - 'current_date': time.strftime('%Y-%m-%d'), + 'current_date': fields.Date.today(), }) return context @@ -111,13 +111,13 @@ class TileTile(models.Model): def _check_model_id_field_id(self): if self.field_id and self.field_id.model_id.id != self.model_id.id: raise ValidationError( - _("Please select a field of the selected model.")) + _("Please select a field from the selected model.")) @api.one @api.constrains('field_id', 'field_function') def _check_field_id_field_function(self): - if self.field_id and not self.field_function or\ - self.field_function and not self.field_id: + validations = self.field_id, self.field_function + if any(validations) and not all(validations): raise ValidationError( _("Please set both: 'Field' and 'Function'.")) @@ -139,7 +139,6 @@ class TileTile(models.Model): if self.action_id: res.update(self.action_id.read( ['view_type', 'view_mode', 'type'])[0]) - # FIXME: restore original Domain + Filter would be better return res @api.model diff --git a/web_dashboard_tile/static/src/css/tile.css b/web_dashboard_tile/static/src/css/tile.css index 9bfdf0ae..5649c188 100644 --- a/web_dashboard_tile/static/src/css/tile.css +++ b/web_dashboard_tile/static/src/css/tile.css @@ -49,4 +49,4 @@ .openerp .oe_searchview_drawer .oe_opened .oe_dashboard_tile_form { display: block; -} \ No newline at end of file +} From 0623572ab841ff5dbf03d2c5b54bcf8e9cc43744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Thu, 18 Aug 2016 13:51:45 -0300 Subject: [PATCH 025/103] Fix #249 --- web_group_expand/static/src/js/web_group_expand.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web_group_expand/static/src/js/web_group_expand.js b/web_group_expand/static/src/js/web_group_expand.js index 37bee516..c724abc5 100644 --- a/web_group_expand/static/src/js/web_group_expand.js +++ b/web_group_expand/static/src/js/web_group_expand.js @@ -31,6 +31,7 @@ openerp.web_group_expand = function(openerp) { }, load_expand_buttons:function() { var self = this; + this.$el.find("ul#oe_group_by").remove(); this.$ExpandButtons = $(QWeb.render("GroupExpand.Buttons", {'widget':self})); this.$el.find("ul.oe_view_manager_switch.oe_button_group.oe_right").before(this.$ExpandButtons); }, @@ -41,4 +42,4 @@ openerp.web_group_expand = function(openerp) { return res }, }) -} \ No newline at end of file +} From 5dfe52840452953c71b4e4fd4236de173ad3213d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Mon, 22 Aug 2016 10:40:06 -0300 Subject: [PATCH 026/103] bring back active field --- web_dashboard_tile/models/tile_tile.py | 66 ++++++++++++++++++-------- 1 file changed, 47 insertions(+), 19 deletions(-) diff --git a/web_dashboard_tile/models/tile_tile.py b/web_dashboard_tile/models/tile_tile.py index 7dc72758..eaadae95 100644 --- a/web_dashboard_tile/models/tile_tile.py +++ b/web_dashboard_tile/models/tile_tile.py @@ -11,7 +11,7 @@ from dateutil.relativedelta import relativedelta from openerp import api, fields, models from openerp.tools.safe_eval import safe_eval as eval from openerp.tools.translate import _ -from openerp.exceptions import ValidationError +from openerp.exceptions import ValidationError, except_orm class TileTile(models.Model): @@ -67,28 +67,34 @@ class TileTile(models.Model): " ('ttype', 'in', ['float', 'int'])]") helper = fields.Char(compute='_compute_function_helper') + active = fields.Boolean( + compute='_compute_active', + search='_search_active', + readonly=True) + @api.one def _compute_data(self): self.count = 0 self.computed_value = 0 - # Compute count item - model = self.env[self.model_id.model] - eval_context = self._get_eval_context() - self.count = model.search_count(eval(self.domain, eval_context)) - # Compute datas for field_id depending of field_function - if self.field_function and self.field_id and self.count != 0: - records = model.search(eval(self.domain, eval_context)) - vals = [x[self.field_id.name] for x in records] - if self.field_function == 'min': - self.computed_value = min(vals) - elif self.field_function == 'max': - self.computed_value = max(vals) - elif self.field_function == 'sum': - self.computed_value = sum(vals) - elif self.field_function == 'avg': - self.computed_value = sum(vals) / len(vals) - elif self.field_function == 'median': - self.computed_value = self.median(vals) + if self.active: + # Compute count item + model = self.env[self.model_id.model] + eval_context = self._get_eval_context() + self.count = model.search_count(eval(self.domain, eval_context)) + # Compute datas for field_id depending of field_function + if self.field_function and self.field_id and self.count != 0: + records = model.search(eval(self.domain, eval_context)) + vals = [x[self.field_id.name] for x in records] + if self.field_function == 'min': + self.computed_value = min(vals) + elif self.field_function == 'max': + self.computed_value = max(vals) + elif self.field_function == 'sum': + self.computed_value = sum(vals) + elif self.field_function == 'avg': + self.computed_value = sum(vals) / len(vals) + elif self.field_function == 'median': + self.computed_value = self.median(vals) @api.one @api.onchange('field_function', 'field_id') @@ -105,6 +111,28 @@ class TileTile(models.Model): } self.helper = _(helpers.get(self.field_function, '')) % desc + @api.one + def _compute_active(self): + ima = self.env['ir.model.access'] + self.active = ima.check(self.model_id.model, 'read', False) + + def _search_active(self, operator, value): + cr = self.env.cr + if operator != '=': + raise except_orm( + _('Unimplemented Feature. Search on Active field disabled.')) + ima = self.env['ir.model.access'] + ids = [] + cr.execute(""" + SELECT tt.id, im.model + FROM tile_tile tt + INNER JOIN ir_model im + ON tt.model_id = im.id""") + for result in cr.fetchall(): + if (ima.check(result[1], 'read', False) == value): + ids.append(result[0]) + return [('id', 'in', ids)] + # Constraints and onchanges @api.one @api.constrains('model_id', 'field_id') From 6fca6dbb5a8a75e8864bd4d1008d7100fb24c687 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Tue, 23 Aug 2016 11:49:03 +0200 Subject: [PATCH 027/103] [FIX] web_graph_sort: README --- web_graph_sort/README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web_graph_sort/README.rst b/web_graph_sort/README.rst index bc4a73f1..4c7bcf5b 100644 --- a/web_graph_sort/README.rst +++ b/web_graph_sort/README.rst @@ -15,7 +15,7 @@ To use this module, you need to: #. Go to any pivot table. - For example, if you have the invoicing module installed, go to Reporting -> Accounting -> Invoice Analysis + For example, if you have the invoicing module installed, go to Reporting -> Accounting -> Invoice Analysis #. Click on a column header. The table will be sorted by that column. @@ -27,8 +27,8 @@ Known issues / Roadmap ====================== * The columns are sorted according to the sum over the row. If you have multiple -accounting periods for example, if you click on the column header of the first semester, -the rows will still be sorted by the total for the year. + accounting periods for example, if you click on the column header of the first semester, + the rows will still be sorted by the total for the year. Bug Tracker =========== From fe9caa255ac723e78ffdc50d8c8c7c76d1ced69c Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 24 Aug 2016 02:40:51 +0200 Subject: [PATCH 028/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3c7c6c25..38635d0a 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ addon | version | summary [web_export_view](web_export_view/) | 8.0.1.2.0 | Export Current View [web_favicon](web_favicon/) | 8.0.1.0.0 | Allows to set a custom shortcut icon (aka favicon) [web_graph_improved](web_graph_improved/) | 8.0.0.1.0 | Improves graph views. +[web_graph_sort](web_graph_sort/) | 8.0.1.0.0 | Web Graph Sort [web_group_expand](web_group_expand/) | 8.0.1.0.0 | Group Expand Buttons [web_hide_db_manager_link](web_hide_db_manager_link/) | 8.0.1.0.0 | Hide link to database manager in login screen [web_hideleftmenu](web_hideleftmenu/) | 8.0.1.0.0 | Hide Left Menu in Web Interface From e3d713183f338c0bb416258e7f43c24b64072446 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 24 Aug 2016 04:39:38 +0200 Subject: [PATCH 029/103] [ADD] setup.py --- setup/web_graph_sort/odoo_addons/__init__.py | 1 + setup/web_graph_sort/odoo_addons/web_graph_sort | 1 + setup/web_graph_sort/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_graph_sort/odoo_addons/__init__.py create mode 120000 setup/web_graph_sort/odoo_addons/web_graph_sort create mode 100644 setup/web_graph_sort/setup.py diff --git a/setup/web_graph_sort/odoo_addons/__init__.py b/setup/web_graph_sort/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_graph_sort/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_graph_sort/odoo_addons/web_graph_sort b/setup/web_graph_sort/odoo_addons/web_graph_sort new file mode 120000 index 00000000..2b813261 --- /dev/null +++ b/setup/web_graph_sort/odoo_addons/web_graph_sort @@ -0,0 +1 @@ +../../../web_graph_sort \ No newline at end of file diff --git a/setup/web_graph_sort/setup.py b/setup/web_graph_sort/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_graph_sort/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 73bdec2dfd60ea04108073d890cc7042c354d4cb Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Wed, 24 Aug 2016 09:54:51 +0200 Subject: [PATCH 030/103] Remove wrong closing parenthesis --- .../static/src/js/web_widget_image_download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_widget_image_download/static/src/js/web_widget_image_download.js b/web_widget_image_download/static/src/js/web_widget_image_download.js index 00e39dfe..b89afa16 100644 --- a/web_widget_image_download/static/src/js/web_widget_image_download.js +++ b/web_widget_image_download/static/src/js/web_widget_image_download.js @@ -36,4 +36,4 @@ openerp.web_widget_image_download = function (instance) { return this.imgSrc != this.placeholder; }, }); -}); +}; From 3d198bb0f7472c7d5349a3dcda0ddb94267bf308 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 25 Aug 2016 02:40:51 +0200 Subject: [PATCH 031/103] [UPD] addons table in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38635d0a..57163b63 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ addon | version | summary [web_widget_digitized_signature](web_widget_digitized_signature/) | 8.0.1.0.0 | Web Widget Digitized Signature [web_widget_digitized_signature_user](web_widget_digitized_signature_user/) | 8.0.1.0.0 | Web Digitized Signature for users [web_widget_float_formula](web_widget_float_formula/) | 8.0.1.0.0 | Web Widget - Formulas in Float fields -[web_widget_image_download](web_widget_image_download/) | 8.0.1.0.0 | Allows to download any image from its widget +[web_widget_image_download](web_widget_image_download/) | 8.0.1.0.1 | Allows to download any image from its widget [web_widget_mail_send_odoo](web_widget_mail_send_odoo/) | 8.0.1.0.0 | Send mail using internal composition wizard. [web_widget_many2many_tags_multi_selection](web_widget_many2many_tags_multi_selection/) | 8.0.0.1.0 | Tags multiple selection [web_widget_one2many_tags](web_widget_one2many_tags/) | 8.0.1.0.0 | Provides a widget similar to many2many_tags for one2many fields From 642decdbab7bb4ce4ec93e0b01a24c6d24be0b26 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 28 Aug 2016 09:36:57 -0400 Subject: [PATCH 032/103] OCA Transbot updated translations from Transifex --- web_graph_improved/i18n/hr.po | 38 +++++++++++++++++++++ web_graph_sort/i18n/ar.po | 26 ++++++++++++++ web_graph_sort/i18n/de.po | 26 ++++++++++++++ web_graph_sort/i18n/es.po | 26 ++++++++++++++ web_graph_sort/i18n/fi.po | 26 ++++++++++++++ web_graph_sort/i18n/fr.po | 26 ++++++++++++++ web_graph_sort/i18n/it.po | 26 ++++++++++++++ web_graph_sort/i18n/pt_BR.po | 26 ++++++++++++++ web_graph_sort/i18n/sl.po | 26 ++++++++++++++ web_graph_sort/i18n/tr.po | 26 ++++++++++++++ web_offline_warning/i18n/fr.po | 10 +++--- web_search_autocomplete_prefetch/i18n/sl.po | 24 +++++++++++++ web_tree_image/i18n/hr.po | 26 ++++++++++++++ web_widget_one2many_tags/i18n/fi.po | 4 +-- web_widget_one2many_tags/i18n/fr.po | 4 +-- web_widget_one2many_tags/i18n/it.po | 8 ++--- web_widget_one2many_tags/i18n/sl.po | 6 ++-- web_widget_x2many_2d_matrix/i18n/hr.po | 27 +++++++++++++++ 18 files changed, 365 insertions(+), 16 deletions(-) create mode 100644 web_graph_improved/i18n/hr.po create mode 100644 web_graph_sort/i18n/ar.po create mode 100644 web_graph_sort/i18n/de.po create mode 100644 web_graph_sort/i18n/es.po create mode 100644 web_graph_sort/i18n/fi.po create mode 100644 web_graph_sort/i18n/fr.po create mode 100644 web_graph_sort/i18n/it.po create mode 100644 web_graph_sort/i18n/pt_BR.po create mode 100644 web_graph_sort/i18n/sl.po create mode 100644 web_graph_sort/i18n/tr.po create mode 100644 web_search_autocomplete_prefetch/i18n/sl.po create mode 100644 web_tree_image/i18n/hr.po create mode 100644 web_widget_x2many_2d_matrix/i18n/hr.po diff --git a/web_graph_improved/i18n/hr.po b/web_graph_improved/i18n/hr.po new file mode 100644 index 00000000..b8a25c82 --- /dev/null +++ b/web_graph_improved/i18n/hr.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Ukupno" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_sort/i18n/ar.po b/web_graph_sort/i18n/ar.po new file mode 100644 index 00000000..acbd4c57 --- /dev/null +++ b/web_graph_sort/i18n/ar.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# SaFi J. , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: SaFi J. , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "غير معرف" diff --git a/web_graph_sort/i18n/de.po b/web_graph_sort/i18n/de.po new file mode 100644 index 00000000..a41ddff8 --- /dev/null +++ b/web_graph_sort/i18n/de.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Rudolf Schnapka , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Undefiniert" diff --git a/web_graph_sort/i18n/es.po b/web_graph_sort/i18n/es.po new file mode 100644 index 00000000..1a0fc474 --- /dev/null +++ b/web_graph_sort/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Sin definir" diff --git a/web_graph_sort/i18n/fi.po b/web_graph_sort/i18n/fi.po new file mode 100644 index 00000000..e309a143 --- /dev/null +++ b/web_graph_sort/i18n/fi.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Ei määritelty" diff --git a/web_graph_sort/i18n/fr.po b/web_graph_sort/i18n/fr.po new file mode 100644 index 00000000..b4b82743 --- /dev/null +++ b/web_graph_sort/i18n/fr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Christophe CHAUVET , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Non défini" diff --git a/web_graph_sort/i18n/it.po b/web_graph_sort/i18n/it.po new file mode 100644 index 00000000..176cc07e --- /dev/null +++ b/web_graph_sort/i18n/it.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Paolo Valier , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Paolo Valier , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Non definito" diff --git a/web_graph_sort/i18n/pt_BR.po b/web_graph_sort/i18n/pt_BR.po new file mode 100644 index 00000000..53c77e6c --- /dev/null +++ b/web_graph_sort/i18n/pt_BR.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# danimaribeiro , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: danimaribeiro , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Não definido" diff --git a/web_graph_sort/i18n/sl.po b/web_graph_sort/i18n/sl.po new file mode 100644 index 00000000..32909e3d --- /dev/null +++ b/web_graph_sort/i18n/sl.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Nedoločeno" diff --git a/web_graph_sort/i18n/tr.po b/web_graph_sort/i18n/tr.po new file mode 100644 index 00000000..fed30424 --- /dev/null +++ b/web_graph_sort/i18n/tr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_sort +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_graph_sort +#. openerp-web +#: code:addons/web_graph_sort/static/src/js/web_graph_sort.js:108 +#, python-format +msgid "Undefined" +msgstr "Tanımsız" diff --git a/web_offline_warning/i18n/fr.po b/web_offline_warning/i18n/fr.po index 886e370a..33cb8bda 100644 --- a/web_offline_warning/i18n/fr.po +++ b/web_offline_warning/i18n/fr.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-12 22:45+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-12 09:07+0000\n" +"Last-Translator: dglucose \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +29,11 @@ msgstr "Ok" #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:23 #, python-format msgid "The server cannot be reached. You are probably offline." -msgstr "" +msgstr "Le serveur ne peut être joins. Vous êtes probablement hors ligne." #. module: web_offline_warning #. openerp-web #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:18 #, python-format msgid "Warning" -msgstr "" +msgstr "Avertissement" diff --git a/web_search_autocomplete_prefetch/i18n/sl.po b/web_search_autocomplete_prefetch/i18n/sl.po new file mode 100644 index 00000000..681665ca --- /dev/null +++ b/web_search_autocomplete_prefetch/i18n/sl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_search_autocomplete_prefetch +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:50+0000\n" +"PO-Revision-Date: 2016-08-25 00:50+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_search_autocomplete_prefetch +#: view:ir.ui.view:web_search_autocomplete_prefetch.view_view_search_autocomplete +msgid "{'web_search_autocomplete_prefetch.disable': true}" +msgstr "{'web_search_autocomplete_prefetch.disable': true}" diff --git a/web_tree_image/i18n/hr.po b/web_tree_image/i18n/hr.po new file mode 100644 index 00000000..76a7d7cb --- /dev/null +++ b/web_tree_image/i18n/hr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_tree_image +# +# Translators: +# Ana-Maria Olujić , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:51+0000\n" +"PO-Revision-Date: 2016-08-19 11:48+0000\n" +"Last-Translator: Ana-Maria Olujić \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_tree_image +#. openerp-web +#: code:addons/web_tree_image/static/src/xml/widget.xml:31 +#, python-format +msgid "Image preview" +msgstr "Pregled slike" diff --git a/web_widget_one2many_tags/i18n/fi.po b/web_widget_one2many_tags/i18n/fi.po index c37e3f47..3b99f699 100644 --- a/web_widget_one2many_tags/i18n/fi.po +++ b/web_widget_one2many_tags/i18n/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 08:27+0000\n" +"POT-Creation-Date: 2016-08-25 00:51+0000\n" "PO-Revision-Date: 2016-04-04 11:11+0000\n" "Last-Translator: Jarmo Kortetjärvi \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" @@ -21,7 +21,7 @@ msgstr "" #. module: web_widget_one2many_tags #. openerp-web #: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 -#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:200 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 #, python-format msgid "New record" msgstr "Uusi tietue" diff --git a/web_widget_one2many_tags/i18n/fr.po b/web_widget_one2many_tags/i18n/fr.po index a94ac8c5..ce4d9624 100644 --- a/web_widget_one2many_tags/i18n/fr.po +++ b/web_widget_one2many_tags/i18n/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-06 15:50+0000\n" +"POT-Creation-Date: 2016-08-25 00:51+0000\n" "PO-Revision-Date: 2016-05-06 08:22+0000\n" "Last-Translator: Christophe CHAUVET \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" @@ -21,7 +21,7 @@ msgstr "" #. module: web_widget_one2many_tags #. openerp-web #: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 -#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:200 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 #, python-format msgid "New record" msgstr "Nouvel enregistrement" diff --git a/web_widget_one2many_tags/i18n/it.po b/web_widget_one2many_tags/i18n/it.po index d7f601c8..13ab152b 100644 --- a/web_widget_one2many_tags/i18n/it.po +++ b/web_widget_one2many_tags/i18n/it.po @@ -3,8 +3,8 @@ # * web_widget_one2many_tags # # Translators: -# Ahmet Altınışık , 2016 -# Ahmet Altınışık , 2013 +# Ahmet Altinisik , 2013,2016 +# Ahmet Altinisik , 2013 # Antonio Trueba, 2016 # danimaribeiro , 2016 # FIRST AUTHOR , 2012-2013 @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" +"POT-Creation-Date: 2016-08-25 00:51+0000\n" "PO-Revision-Date: 2016-04-28 06:44+0000\n" "Last-Translator: Paolo Valier\n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" @@ -33,7 +33,7 @@ msgstr "" #. module: web_widget_one2many_tags #. openerp-web #: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 -#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:200 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 #, python-format msgid "New record" msgstr "Nuovo record" diff --git a/web_widget_one2many_tags/i18n/sl.po b/web_widget_one2many_tags/i18n/sl.po index 7d2ca50a..66a035b3 100644 --- a/web_widget_one2many_tags/i18n/sl.po +++ b/web_widget_one2many_tags/i18n/sl.po @@ -3,7 +3,7 @@ # * web_widget_one2many_tags # # Translators: -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015 # FIRST AUTHOR , 2012 # Hotellook, 2014 # Jarmo Kortetjärvi , 2016 @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-02 16:09+0000\n" +"POT-Creation-Date: 2016-08-25 00:51+0000\n" "PO-Revision-Date: 2016-04-03 04:47+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" @@ -30,7 +30,7 @@ msgstr "" #. module: web_widget_one2many_tags #. openerp-web #: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 -#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:200 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 #, python-format msgid "New record" msgstr "Nov zapis" diff --git a/web_widget_x2many_2d_matrix/i18n/hr.po b/web_widget_x2many_2d_matrix/i18n/hr.po new file mode 100644 index 00000000..f209e294 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/hr.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +# Ana-Maria Olujić , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-25 00:51+0000\n" +"PO-Revision-Date: 2016-08-19 11:47+0000\n" +"Last-Translator: Ana-Maria Olujić \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Ukupno" From 1346b74e1f2886954f136c11dfc38af922d1ba95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Mon, 29 Aug 2016 19:32:54 -0300 Subject: [PATCH 033/103] Update README --- web_dashboard_tile/README.rst | 43 ++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/web_dashboard_tile/README.rst b/web_dashboard_tile/README.rst index b6ee2989..821a4c70 100644 --- a/web_dashboard_tile/README.rst +++ b/web_dashboard_tile/README.rst @@ -1,17 +1,17 @@ -Add Tiles to Dashboard -====================== +Dashboard Tiles +=============== -module to give you a dashboard where you can configure tile from any view +Adds a dashboard where you can configure tiles from any view and add them as short cut. * Tile can be: - * displayed only for a user; - * global for all users (In that case, some tiles will be hidden if - the current user doesn't have access to the given model); -* The tile displays items count of a given model restricted to a given domain; -* Optionnaly, the tile can display the result of a function of a field; - * Function is one of sum/avg/min/max/median; - * Field must be integer or float; + * Displayed only for a user. + * Global for all users (In that case, some tiles will be hidden if + the current user doesn't have access to the given model). +* The tile displays items count of a given model restricted to a given domain. +* Optionally, the tile can display the result of a function of a field + * Function is one of sum/avg/min/max/median. + * Field must be integer or float. Usage ===== @@ -24,17 +24,18 @@ Usage .. image:: ./static/src/img/screenshot_action_click.png -Kown issues/limits -================== -* can not edit tile from dashboard (color, sequence, function, ...); -* context are ignored; -* combine domain of menue and filter so can not restore origin filter; - -possible future improvments -=========================== -* add icons; -* support client side action (like inbox); -* restore original Domain + Filter when an action is set. +Known issues +============ +* Can not edit tile from dashboard (color, sequence, function, ...). +* Original context is ignored. +* Original domain and filter are not restored. +* To preserve a relative date domain, you have to manually edit the tile's domain from `Configuration > User Interface > Dashboard Tile`. You can use the same variables available in filters (`uid`, `context_today()`, `current_date`, `time`, `datetime`, `relativedelta`). + +Roadmap +======= +* Add icons. +* Support client side action (like inbox). +* Restore original Domain + Filter when an action is set. Bug Tracker =========== From d041ffea523404cc75fa07e66a32d51d1ba81fed Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 30 Aug 2016 02:41:14 +0200 Subject: [PATCH 034/103] [UPD] addons table in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57163b63..0ac224d3 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ addon | version | summary [web_clean_navbar](web_clean_navbar/) | 8.0.1.0.0 | Better visibility for the backend's main menu [web_context_in_colors](web_context_in_colors/) | 8.0.1.1.0 | Use the context in a tree view's colors and fonts attribute [web_dashboard_open_action](web_dashboard_open_action/) | 8.0.1.0.0 | Adds a button to open a dashboard in full mode -[web_dashboard_tile](web_dashboard_tile/) | 8.0.1.0.0 | Add Tiles to Dashboard +[web_dashboard_tile](web_dashboard_tile/) | 8.0.1.1.0 | Add Tiles to Dashboard [web_dialog_size](web_dialog_size/) | 8.0.0.1.0 | A module that lets the user expand a dialog box to the full screen width. [web_dom_model_classes](web_dom_model_classes/) | 8.0.1.0.0 | Allows small UI changes with simple CSS [web_easy_switch_company](web_easy_switch_company/) | 8.0.1.0.0 | Multicompany - Easy Switch Company From ea165e9f01ea3a2f981063d905861e83f1959a5f Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 30 Aug 2016 11:14:41 +0200 Subject: [PATCH 035/103] [ADD] support reference fields in many2one_clickable widget --- web_tree_many2one_clickable/README.rst | 10 ++++----- .../src/js/web_tree_many2one_clickable.js | 21 ++++++++++++++----- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/web_tree_many2one_clickable/README.rst b/web_tree_many2one_clickable/README.rst index 4ce9c82a..daafb2c2 100644 --- a/web_tree_many2one_clickable/README.rst +++ b/web_tree_many2one_clickable/README.rst @@ -1,8 +1,8 @@ Clickable many2one fields for tree views ======================================== -This addon provides a separate widget to allow many2one fields in a tree view -open the linked resource when clicking on their name. +This addon provides a separate widget to allow many2one or reference fields in +a tree view open the linked resource when clicking on their name. You can also define a system parameter to have this behaviour for all the existing many2one fields in tree views. @@ -15,9 +15,9 @@ Install it the regular way. Configuration ============= -If you want to have all many2one fields clickable by default, you have to -define in *Configuration > Technical > Parameters > System parameters*, a new -parameter with name `web_tree_many2one_clickable.default` and with value +If you want to have all many2one and reference fields clickable by default, you +have to define in *Configuration > Technical > Parameters > System parameters*, +a new parameter with name `web_tree_many2one_clickable.default` and with value `true`. Usage diff --git a/web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js b/web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js index 6c8e365e..810d4de0 100644 --- a/web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js +++ b/web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js @@ -59,11 +59,22 @@ openerp.web_tree_many2one_clickable = function(instance, local) _format: function (row_data, options) { - if (this.use_many2one_clickable) { - return _.str.sprintf('%s', - this.relation, - row_data[this.id].value[0], - _.escape(row_data[this.id].value[1] || options.value_if_empty)); + if (this.use_many2one_clickable && !!row_data[this.id]) { + var values = { + model: this.relation, + id: row_data[this.id].value[0], + name: _.escape(row_data[this.id].value[1] || options.value_if_empty), + } + if(this.type == 'reference' && !!row_data[this.id + '__display']) + { + values.model = row_data[this.id].value.split(',', 1)[0]; + values.id = row_data[this.id].value.split(',', 2)[1]; + values.name = _.escape(row_data[this.id + '__display'].value || options.value_if_empty); + } + return _.str.sprintf( + '%(name)s', + values + ); } else { return this._super(row_data, options); From 940b32b3eefa38cec9af45dd3c78e3a3b3b387c0 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 31 Aug 2016 19:15:02 +0200 Subject: [PATCH 036/103] [FIX] web_widget_one2many_tags: README --- web_widget_one2many_tags/README.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/web_widget_one2many_tags/README.rst b/web_widget_one2many_tags/README.rst index 44408630..a0f70942 100644 --- a/web_widget_one2many_tags/README.rst +++ b/web_widget_one2many_tags/README.rst @@ -12,7 +12,6 @@ Usage To use this module, use ``widget="one2many_tags"`` on your field element. -* go to ... .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/162/8.0 From ce0592c5982aeb6374586fdd379914c4f10feba8 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 4 Sep 2016 09:50:50 -0400 Subject: [PATCH 037/103] OCA Transbot updated translations from Transifex --- web_dashboard_tile/i18n/ar.po | 99 +++++++++++++++++------------ web_dashboard_tile/i18n/de.po | 98 +++++++++++++++++------------ web_dashboard_tile/i18n/es.po | 59 ++++++------------ web_dashboard_tile/i18n/fi.po | 62 +++++++------------ web_dashboard_tile/i18n/fr.po | 62 +++++++------------ web_dashboard_tile/i18n/it.po | 60 ++++++------------ web_dashboard_tile/i18n/pt_BR.po | 103 +++++++++++++++++++------------ web_dashboard_tile/i18n/sl.po | 59 ++++++------------ web_dashboard_tile/i18n/tr.po | 98 ++++++++++++++++------------- 9 files changed, 335 insertions(+), 365 deletions(-) diff --git a/web_dashboard_tile/i18n/ar.po b/web_dashboard_tile/i18n/ar.po index ea8e9396..dd2c39f3 100644 --- a/web_dashboard_tile/i18n/ar.po +++ b/web_dashboard_tile/i18n/ar.po @@ -3,14 +3,25 @@ # * web_dashboard_tile # # Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# FIRST AUTHOR , 2012-2014 +# Giacomo , 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2015-2016 +# Miku Laitinen , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 # SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-16 07:41+0000\n" -"PO-Revision-Date: 2015-12-16 18:04+0000\n" -"Last-Translator: SaFi J. \n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,22 +34,31 @@ msgstr "" msgid "Action" msgstr "الإجراء" +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Average" msgstr "المعدل" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "معدل القيمة الى '%s'" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" msgstr "لون الخلفية" +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + #. module: web_dashboard_tile #. openerp-web #: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 @@ -79,6 +99,11 @@ msgstr "" msgid "Display" msgstr "العرض" +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,domain:0 msgid "Domain" @@ -91,16 +116,6 @@ msgstr "النطاق" msgid "Error" msgstr "الخطأ" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "خطأ ! الرجاء اختيار حقل من النموذج المختار." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "خطأ ! الرجاء وضع قيمة لكلا الحقلين: 'الحقل' و 'الوظيفة'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -123,11 +138,21 @@ msgstr "لون الخط" msgid "Function" msgstr "الوظيفة" +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" msgstr "المعرف" +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" @@ -143,34 +168,16 @@ msgstr "آخر تحديث في" msgid "Maximum" msgstr "الحد الاعلى" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "القيمة العليا الى '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "متوسط" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "القيمة المتوسطة الى '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "الحد الادنى" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "القيمة الادنى الى '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -186,6 +193,18 @@ msgstr "الاسم" msgid "Optional Field Informations" msgstr "معلومات الحقل الاختياري" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -223,10 +242,10 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "القيمة الاجمالية الى '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/de.po b/web_dashboard_tile/i18n/de.po index 0410ea6e..1f88bb19 100644 --- a/web_dashboard_tile/i18n/de.po +++ b/web_dashboard_tile/i18n/de.po @@ -3,14 +3,24 @@ # * web_dashboard_tile # # Translators: +# Antonio Trueba, 2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2014 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015 +# Miku Laitinen , 2015 +# Paolo Valier, 2016 # Rudolf Schnapka , 2016 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-10 07:31+0000\n" -"PO-Revision-Date: 2016-01-18 21:15+0000\n" -"Last-Translator: Rudolf Schnapka \n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,22 +33,31 @@ msgstr "" msgid "Action" msgstr "Aktion" +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Average" msgstr "Durchschnitt" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Mittlerer Wert von '%s'" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" msgstr "Hintergrundfarbe" +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + #. module: web_dashboard_tile #. openerp-web #: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 @@ -79,6 +98,11 @@ msgstr "Pinwand-Kacheln" msgid "Display" msgstr "Anzeige" +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,domain:0 msgid "Domain" @@ -91,16 +115,6 @@ msgstr "Domäne" msgid "Error" msgstr "Fehler" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Fehler. Wählen Sie bitte ein Feld des ausgewählten Modells." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Fehler. Setzen Sie bitte beide Felder, 'Feld' und 'Funktion'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -123,11 +137,21 @@ msgstr "Schriftfarbe" msgid "Function" msgstr "Funktion" +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" @@ -143,34 +167,16 @@ msgstr "Zuletzt aktualisiert am" msgid "Maximum" msgstr "Maximum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Maximalwert von '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "Median" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Medianwert von '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Minimalwert von '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -186,6 +192,18 @@ msgstr "Bezeichnung" msgid "Optional Field Informations" msgstr "Optionale Feldinformation" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -223,10 +241,10 @@ msgid "Tile:" msgstr "Kachel:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "Gesamtwert von '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/es.po b/web_dashboard_tile/i18n/es.po index 2184c4e2..f7ce0d47 100644 --- a/web_dashboard_tile/i18n/es.po +++ b/web_dashboard_tile/i18n/es.po @@ -3,10 +3,11 @@ # * web_dashboard_tile # # Translators: -# Ahmet Altınışık , 2016 +# Ahmet Altinisik , 2016 # Antonio Trueba, 2016 # Antonio Trueba, 2016 # Carles Antoli , 2015 +# Carles Antoli , 2015 # FIRST AUTHOR , 2012-2014 # Giacomo , 2015 # Hotellook, 2014 @@ -22,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-23 10:58+0000\n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -47,12 +48,6 @@ msgstr "" msgid "Average" msgstr "Promedio" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Valor promedio de \"%s\"" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" @@ -125,16 +120,6 @@ msgstr "Dominio" msgid "Error" msgstr "Error" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "¡Error! Seleccione un campo del modelo seleccionado." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "¡Error! Cubra los dos campos: \"Campo\" y \"Función\"." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -187,34 +172,16 @@ msgstr "Última actualización en" msgid "Maximum" msgstr "Máximo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valor máximo de \"%s\"" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "Mediana" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Valor mediano de \"%s\"" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Mínimo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valor mínimo de \"%s\"" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -230,6 +197,18 @@ msgstr "Nombre" msgid "Optional Field Informations" msgstr "Información opcional" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -267,10 +246,10 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "Valor total de \"%s\"" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/fi.po b/web_dashboard_tile/i18n/fi.po index cac65576..3af27fed 100644 --- a/web_dashboard_tile/i18n/fi.po +++ b/web_dashboard_tile/i18n/fi.po @@ -3,8 +3,10 @@ # * web_dashboard_tile # # Translators: -# Ahmet Altınışık , 2015-2016 +# Ahmet Altinisik , 2015-2016 # Carles Antoli , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # FIRST AUTHOR , 2011-2014 # Florian Hatat, 2015 @@ -17,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-08 16:35+0000\n" -"PO-Revision-Date: 2016-07-08 10:49+0000\n" -"Last-Translator: Jarmo Kortetjärvi \n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,12 +44,6 @@ msgstr "Aktiivinen" msgid "Average" msgstr "Keskiarvo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Keskiarvo kentälle '%s'" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" @@ -120,16 +116,6 @@ msgstr "Domain" msgid "Error" msgstr "Virhe" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Virhe! Ole hyvä ja valitse valitun mallin kenttä." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Virhe! Ole hyvä ja valitse molemmat kentät: 'Kenttä' ja 'Toiminto'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -182,34 +168,16 @@ msgstr "Viimeksi päivitetty" msgid "Maximum" msgstr "Maksimi" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "'%s':n maksimiarvo" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "Mediaani" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "'%s':n mediaaniarvo" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimi" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "'%s':n minimiarvo" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -225,6 +193,18 @@ msgstr "Nimi" msgid "Optional Field Informations" msgstr "Valinnaiset kentän tiedot" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -262,10 +242,10 @@ msgid "Tile:" msgstr "Pala:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "'%s':n kokonaisarvo" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/fr.po b/web_dashboard_tile/i18n/fr.po index f7e12766..16c11512 100644 --- a/web_dashboard_tile/i18n/fr.po +++ b/web_dashboard_tile/i18n/fr.po @@ -4,13 +4,15 @@ # # Translators: # Carles Antoli , 2015 -# Christophe CHAUVET , 2016 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015-2016 # Christophe CHAUVET , 2015 # danimaribeiro , 2016 # FIRST AUTHOR , 2011-2013 # Hotellook, 2014 # Jarmo Kortetjärvi , 2016 # Leonardo J. Caballero G. , 2016 +# Leonardo J. Caballero G. , 2016 # Matjaž Mozetič , 2015-2016 # Paolo Valier, 2016 # Pedro M. Baeza , 2015 @@ -20,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-06 15:50+0000\n" -"PO-Revision-Date: 2016-05-06 08:19+0000\n" -"Last-Translator: Christophe CHAUVET \n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,12 +47,6 @@ msgstr "Actif" msgid "Average" msgstr "Moyenne" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Valeur moyenne du champ '%s'" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" @@ -123,16 +119,6 @@ msgstr "Domaine" msgid "Error" msgstr "Erreur" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Erreur ! Veuillez sélectioner un champ qui correspond au modèle." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Erreur ! Veuillez renseigner les deux champs : 'Champ' et 'Fonction'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -185,34 +171,16 @@ msgstr "Mis à jour le" msgid "Maximum" msgstr "Maximum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valeur maximale du champ '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "Médiane" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Valeur médian du champ '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valeur minimale du champ '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -228,6 +196,18 @@ msgstr "Nom" msgid "Optional Field Informations" msgstr "Information du champ optionnel" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -265,10 +245,10 @@ msgid "Tile:" msgstr "Indicateur :" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "Somme du champ '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/it.po b/web_dashboard_tile/i18n/it.po index 07f206fc..c11a4ae3 100644 --- a/web_dashboard_tile/i18n/it.po +++ b/web_dashboard_tile/i18n/it.po @@ -3,7 +3,7 @@ # * web_dashboard_tile # # Translators: -# Ahmet Altınışık , 2015-2016 +# Ahmet Altinisik , 2015-2016 # danimaribeiro , 2016 # FIRST AUTHOR , 2012,2014 # Gustavo Lepri , 2015 @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-30 19:57+0000\n" -"Last-Translator: Paolo Valier\n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,12 +42,6 @@ msgstr "Attivo" msgid "Average" msgstr "Media" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" @@ -120,16 +114,6 @@ msgstr "Dominio" msgid "Error" msgstr "Errore" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "" - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -182,34 +166,16 @@ msgstr "Ultimo aggiornamento il" msgid "Maximum" msgstr "Massimo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valore massimo di '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Valore mediano di '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valore minimo di '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -225,6 +191,18 @@ msgstr "Nome" msgid "Optional Field Informations" msgstr "Informazioni Opzionali Campo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -262,10 +240,10 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "Valore totale di '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/pt_BR.po b/web_dashboard_tile/i18n/pt_BR.po index 6cf2531b..8cd7fc88 100644 --- a/web_dashboard_tile/i18n/pt_BR.po +++ b/web_dashboard_tile/i18n/pt_BR.po @@ -3,14 +3,29 @@ # * web_dashboard_tile # # Translators: +# Ahmet Altinisik , 2015-2016 +# Alejandro Santana , 2015 +# Alexsandro Haag , 2015 +# Antonio Trueba, 2016 # danimaribeiro , 2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Jarmo Kortetjärvi , 2016 +# Jesús Alan Ramos Rodríguez , 2015 +# llum.birque@gmail.com , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 +# Stéphane Bidoul , 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-11 02:17+0000\n" -"PO-Revision-Date: 2016-03-05 16:21+0000\n" -"Last-Translator: danimaribeiro \n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,22 +38,31 @@ msgstr "" msgid "Action" msgstr "Ação" +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Average" msgstr "Média" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Valor médio de '%s'" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" msgstr "Cor de fundo" +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + #. module: web_dashboard_tile #. openerp-web #: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 @@ -79,6 +103,11 @@ msgstr "Dashboard tiles" msgid "Display" msgstr "Mostrar" +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,domain:0 msgid "Domain" @@ -91,16 +120,6 @@ msgstr "Domínio" msgid "Error" msgstr "Erro" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Erro ! Por favor selecione um campo para o modelo selecionado" - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Erro ! Por favor sete ambos os campos: 'Campo' e 'Função'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -123,11 +142,21 @@ msgstr "Cor da fonte" msgid "Function" msgstr "Função" +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" @@ -143,34 +172,16 @@ msgstr "Última atualização em" msgid "Maximum" msgstr "Máximo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valor máximo de '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "Mediana" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Valor mediano de '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minímo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valor mínimo de '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -186,6 +197,18 @@ msgstr "Nome" msgid "Optional Field Informations" msgstr "Informação de campos opcionais" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -223,10 +246,10 @@ msgid "Tile:" msgstr "Tile:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "Valor total de '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/sl.po b/web_dashboard_tile/i18n/sl.po index 0db03a29..98c5406f 100644 --- a/web_dashboard_tile/i18n/sl.po +++ b/web_dashboard_tile/i18n/sl.po @@ -3,9 +3,10 @@ # * web_dashboard_tile # # Translators: -# Ahmet Altınışık , 2016 +# Ahmet Altinisik , 2016 # Carles Antoli , 2015-2016 # Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 # FIRST AUTHOR , 2012,2014 # Giacomo , 2015 # Guewen Baconnier , 2015 @@ -19,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-30 05:24+0000\n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 09:43+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" @@ -44,12 +45,6 @@ msgstr "Aktivno" msgid "Average" msgstr "Povprečje" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "Povprečna vrednost '%s'" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" @@ -122,16 +117,6 @@ msgstr "Domena" msgid "Error" msgstr "Napaka" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Napaka! Izberite polje izbranega modela." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Napaka! Določite obe polji: 'Polje' in 'Funkcija'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -184,34 +169,16 @@ msgstr "Zadnjič posodobljeno" msgid "Maximum" msgstr "Maksimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Maksimalna vrednost '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "Sredina" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "Srednja vrednost '%s'" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Minimalna vrednost '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -227,6 +194,18 @@ msgstr "Naziv" msgid "Optional Field Informations" msgstr "Opcijske informacije o polju" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "Izberite polje iz izbranega modela." + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "Nastavite oboje: 'Polje' in 'Funkcija'." + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -264,10 +243,10 @@ msgid "Tile:" msgstr "Okvir:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "Skupna vrednost '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/tr.po b/web_dashboard_tile/i18n/tr.po index 1f64c603..f45d1696 100644 --- a/web_dashboard_tile/i18n/tr.po +++ b/web_dashboard_tile/i18n/tr.po @@ -3,15 +3,21 @@ # * web_dashboard_tile # # Translators: -# Ahmet Altınışık , 2015-2016 -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015-2016 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2013 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-10 07:31+0000\n" -"PO-Revision-Date: 2016-01-31 11:34+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2016-09-02 14:10+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,22 +30,31 @@ msgstr "" msgid "Action" msgstr "Eylem" +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Average" msgstr "Ortalama" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "'%s' nin ortalama değeri" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" msgstr "Arkaplan rengi" +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + #. module: web_dashboard_tile #. openerp-web #: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 @@ -80,6 +95,11 @@ msgstr "Gösterge parçası" msgid "Display" msgstr "Görünüm" +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,domain:0 msgid "Domain" @@ -92,16 +112,6 @@ msgstr "Alan" msgid "Error" msgstr "Hata" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "Hata ! Lütfen seçili modele ait bir alan seçin." - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "Hata ! Lütfen iki alanı da doldurun: 'Alan' ve 'Fonksiyon'." - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -124,11 +134,21 @@ msgstr "Font rengi" msgid "Function" msgstr "Fonksiyon" +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" @@ -144,34 +164,16 @@ msgstr "Son güncellendi" msgid "Maximum" msgstr "Maksimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "'%s' nin en fazla değeri" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "orta değer" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "'%s' nin orta değeri" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "'%s' nin en düşük değeri" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -187,6 +189,18 @@ msgstr "Adı" msgid "Optional Field Informations" msgstr "Opsiyonel Alan Bilgileri" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -224,10 +238,10 @@ msgid "Tile:" msgstr "Parça:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" -msgstr "'%s' nin toplam değeri" +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 From 34a789282443f00c659ef0b063c3fcb53776760a Mon Sep 17 00:00:00 2001 From: Peter Hahn Date: Tue, 13 Sep 2016 09:36:56 +0200 Subject: [PATCH 038/103] Update documentation and roadmap. --- web_m2x_options/README.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web_m2x_options/README.rst b/web_m2x_options/README.rst index de0adaac..dfd73566 100644 --- a/web_m2x_options/README.rst +++ b/web_m2x_options/README.rst @@ -103,6 +103,14 @@ To add these parameters go to Configuration -> Technical -> Parameters -> System - web_m2x_options.limit: 10 - web_m2x_options.search_more: True +ir.model options +---------------- + +Now you can disable quick create globally on model base of the target model. + +``disable_quick_create`` *boolean* (Default: ``False``) + + Whether to disable quick create for this model globally. This has the same effect as if you would add ``no_create`` to all m2x fields in all fields with that target model in their relation. Example ------- @@ -125,6 +133,7 @@ Roadmap - Instead of making the tags rectangle clickable, I think it's better to put the text as a clickable link, so we will get a consistent behaviour/aspect with other clickable elements (many2one...). - In edit mode, it would be great to add an icon like the one on many2one fields to allow to open the many2many in a popup window. - Include this feature as a configurable option via parameter to have this behaviour by default in all many2many tags. +- Client side caching of 'disable_quick_create' flag query on model. Bug Tracker =========== From 28adcce3ec0f4816cd0def876c3d0f95187802f2 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Sep 2016 09:32:56 +0200 Subject: [PATCH 039/103] [IMP] web_widget_x2many_2d_matrix: New option field_att_ Declare as many options prefixed with this string as you need for binding a field value with an HTML node attribute (disabled, class, style...) called as the `` passed in the option. NOTE: This doesn't prevent to require to fill the full matrix with all the combination records. --- web_widget_x2many_2d_matrix/README.rst | 38 ++++++++++++---- web_widget_x2many_2d_matrix/__openerp__.py | 33 +++----------- .../src/js/web_widget_x2many_2d_matrix.js | 45 ++++++++++--------- .../src/xml/web_widget_x2many_2d_matrix.xml | 2 +- 4 files changed, 62 insertions(+), 56 deletions(-) diff --git a/web_widget_x2many_2d_matrix/README.rst b/web_widget_x2many_2d_matrix/README.rst index 7c880b13..83c29328 100644 --- a/web_widget_x2many_2d_matrix/README.rst +++ b/web_widget_x2many_2d_matrix/README.rst @@ -1,5 +1,6 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 =========================== 2D matrix for x2many fields @@ -8,7 +9,8 @@ This module allows to show an x2many field with 3-tuples ($x_value, $y_value, $value) in a table - $x_value1 $x_value2 +========= =========== =========== +\ $x_value1 $x_value2 ========= =========== =========== $y_value1 $value(1/1) $value(2/1) $y_value2 $value(1/2) $value(2/2) @@ -23,7 +25,9 @@ result could look like this: .. image:: /web_widget_x2many_2d_matrix/static/description/screenshot.png :alt: Screenshot -The beauty of this is that you have an arbitrary amount of columns with this widget, trying to get this in standard x2many lists involves some quite agly hacks. +The beauty of this is that you have an arbitrary amount of columns with this +widget, trying to get this in standard x2many lists involves some quite ugly +hacks. Usage ===== @@ -54,11 +58,23 @@ show_row_totals If field_value is a numeric field, calculate row totals show_column_totals If field_value is a numeric field, calculate column totals +field_att_ + Declare as many options prefixed with this string as you need for binding + a field value with an HTML node attribute (disabled, class, style...) + called as the `` passed in the option. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 Example ======= -You need a data structure already filled with values. Let's assume we want to use this widget in a wizard that lets the user fill in planned hours for one task per project per user. In this case, we can use ``project.task`` as our data model and point to it from our wizard. The crucial part is that we fill the field in the default function:: +You need a data structure already filled with values. Let's assume we want to +use this widget in a wizard that lets the user fill in planned hours for one +task per project per user. In this case, we can use ``project.task`` as our +data model and point to it from our wizard. The crucial part is that we fill +the field in the default function:: class MyWizard(models.TransientModel): _name = 'my.wizard' @@ -85,6 +101,11 @@ Now in our wizard, we can use:: +Note that all values in the matrix must exist, so you need to create them +previously if not present, but you can control visually the editability of +the fields in the matrix through `field_att_disabled` option with a control +field. + Known issues / Roadmap ====================== @@ -93,10 +114,10 @@ Known issues / Roadmap Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. -In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed feedback -`here `_. +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. Credits ======= @@ -105,6 +126,7 @@ Contributors ------------ * Holger Brunn +* Pedro M. Baeza Maintainer ---------- diff --git a/web_widget_x2many_2d_matrix/__openerp__.py b/web_widget_x2many_2d_matrix/__openerp__.py index 0b652e3c..87dc3541 100644 --- a/web_widget_x2many_2d_matrix/__openerp__.py +++ b/web_widget_x2many_2d_matrix/__openerp__.py @@ -1,27 +1,13 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015 Holger Brunn +# Copyright 2016 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + { "name": "2D matrix for x2many fields", - "version": "8.0.1.0.0", + "version": "8.0.1.1.0", "author": "Therp BV, " + "Tecnativa," "Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Hidden/Dependency", @@ -35,12 +21,5 @@ "qweb": [ 'static/src/xml/web_widget_x2many_2d_matrix.xml', ], - "test": [ - ], - "auto_install": False, "installable": True, - "application": False, - "external_dependencies": { - 'python': [], - }, } diff --git a/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js b/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js index 4dbcb4cc..5f6147f4 100644 --- a/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js +++ b/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js @@ -1,23 +1,6 @@ -//-*- coding: utf-8 -*- -//############################################################################ -// -// OpenERP, Open Source Management Solution -// This module copyright (C) 2015 Therp BV . -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . -// -//############################################################################ +/* Copyright 2015 Holger Brunn + * Copyright 2016 Pedro M. Baeza + * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ openerp.web_widget_x2many_2d_matrix = function(instance) { @@ -44,6 +27,8 @@ openerp.web_widget_x2many_2d_matrix = function(instance) show_column_totals: true, // this will be filled with the model's fields_get fields: {}, + // Store fields used to fill HTML attributes + fields_att: {}, // read parameters init: function(field_manager, node) @@ -53,6 +38,12 @@ openerp.web_widget_x2many_2d_matrix = function(instance) this.field_label_x_axis = node.attrs.field_label_x_axis || this.field_x_axis; this.field_label_y_axis = node.attrs.field_label_y_axis || this.field_y_axis; this.field_value = node.attrs.field_value || this.field_value; + for (var property in node.attrs) { + if (property.startsWith("field_att_")) { + this.fields_att[property.substring(10)] = node.attrs[property]; + } + } + this.field_editability = node.attrs.field_editability || this.field_editability; this.show_row_totals = node.attrs.show_row_totals || this.show_row_totals; this.show_column_totals = node.attrs.show_column_totals || this.show_column_totals; return this._super.apply(this, arguments); @@ -261,6 +252,20 @@ openerp.web_widget_x2many_2d_matrix = function(instance) return this.by_x_axis[x][y]['id']; }, + get_xy_att: function(x, y) + { + var vals = {}; + for (var att in this.fields_att) { + var val = this.get_field_value( + this.by_x_axis[x][y], this.fields_att[att]); + // Discard empty values + if (val) { + vals[att] = val; + } + } + return vals; + }, + // return the value of a coordinate get_xy_value: function(x, y) { diff --git a/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml b/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml index 35f1669b..ca6b687f 100644 --- a/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml +++ b/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml @@ -16,7 +16,7 @@ - + From e2d40d515ad1926112b05c29732993e15c68834e Mon Sep 17 00:00:00 2001 From: "Adrien Peiffer (ACSONE)" Date: Thu, 15 Sep 2016 15:10:55 +0200 Subject: [PATCH 040/103] [ADD] Add help online for kanban view --- help_online/__openerp__.py | 2 ++ help_online/static/src/js/help_online.js | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/help_online/__openerp__.py b/help_online/__openerp__.py index 2d40f358..30e6b11c 100644 --- a/help_online/__openerp__.py +++ b/help_online/__openerp__.py @@ -28,6 +28,8 @@ 'depends': [ 'base', 'website', + 'web', + 'web_kanban', ], 'description': """ Help Online diff --git a/help_online/static/src/js/help_online.js b/help_online/static/src/js/help_online.js index c660a110..dca0431b 100644 --- a/help_online/static/src/js/help_online.js +++ b/help_online/static/src/js/help_online.js @@ -41,6 +41,16 @@ openerp.help_online = function (instance) { }, }); + instance.web_kanban.KanbanView.include({ + view_loading: function(r) { + var ret = this._super(r); + if(! _.isUndefined(this.ViewManager.load_help_buttons)){ + this.ViewManager.load_help_buttons(); + } + return ret + }, + }); + openerp.web.FormView.include({ view_loading: function(r) { var ret = this._super(r); From b065c6aba77e541458a9d6fdf2be5dec592dd9d9 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Fri, 16 Sep 2016 02:41:40 +0200 Subject: [PATCH 041/103] [UPD] addons table in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ac224d3..c2270dcd 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ addon | version | summary [web_widget_one2many_tags](web_widget_one2many_tags/) | 8.0.1.0.0 | Provides a widget similar to many2many_tags for one2many fields [web_widget_radio_tree](web_widget_radio_tree/) | 8.0.1.0.0 | Add radio buttons for records in tree. [web_widget_text_markdown](web_widget_text_markdown/) | 8.0.1.0.0 | web_widget_text_markdown -[web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.0.0 | Show list fields as a matrix +[web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.1.0 | Show list fields as a matrix Unported addons --------------- From 0c797a1e3b726af9c37c1af5c24bc6e2816c4140 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 17 Sep 2016 14:01:40 +0200 Subject: [PATCH 042/103] [FIX] web_widget_one2many_tags: README --- web_widget_one2many_tags/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_widget_one2many_tags/README.rst b/web_widget_one2many_tags/README.rst index a0f70942..8ce45f41 100644 --- a/web_widget_one2many_tags/README.rst +++ b/web_widget_one2many_tags/README.rst @@ -5,7 +5,7 @@ Tags widget for one2many fields =============================== -This module add a widget ``one2many_tags`` that looks and behaves like ``many2many_tags``, but works for one2many fields. +This module adds a widget ``one2many_tags`` that looks and behaves like ``many2many_tags``, but works for one2many fields. Usage ===== From 6e35172b309c8401392e4193b4d2957a808525ee Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 18 Sep 2016 11:20:31 -0400 Subject: [PATCH 043/103] OCA Transbot updated translations from Transifex --- help_online/i18n/am.po | 236 +++++++++++++++++++++ help_online/i18n/ar.po | 30 ++- help_online/i18n/ca.po | 236 +++++++++++++++++++++ help_online/i18n/cs.po | 236 +++++++++++++++++++++ help_online/i18n/de.po | 28 ++- help_online/i18n/el_GR.po | 236 +++++++++++++++++++++ help_online/i18n/es.po | 17 +- help_online/i18n/es_CR.po | 236 +++++++++++++++++++++ help_online/i18n/es_EC.po | 236 +++++++++++++++++++++ help_online/i18n/es_ES.po | 236 +++++++++++++++++++++ help_online/i18n/es_MX.po | 236 +++++++++++++++++++++ help_online/i18n/es_VE.po | 236 +++++++++++++++++++++ help_online/i18n/et.po | 236 +++++++++++++++++++++ help_online/i18n/fi.po | 14 +- help_online/i18n/fr.po | 12 +- help_online/i18n/gl.po | 236 +++++++++++++++++++++ help_online/i18n/hr.po | 10 +- help_online/i18n/it.po | 12 +- help_online/i18n/lt.po | 236 +++++++++++++++++++++ help_online/i18n/nl.po | 236 +++++++++++++++++++++ help_online/i18n/nl_BE.po | 236 +++++++++++++++++++++ help_online/i18n/pl.po | 236 +++++++++++++++++++++ help_online/i18n/pt.po | 236 +++++++++++++++++++++ help_online/i18n/pt_BR.po | 28 ++- help_online/i18n/pt_PT.po | 236 +++++++++++++++++++++ help_online/i18n/ro.po | 236 +++++++++++++++++++++ help_online/i18n/ru.po | 236 +++++++++++++++++++++ help_online/i18n/sl.po | 12 +- help_online/i18n/th.po | 236 +++++++++++++++++++++ help_online/i18n/tr.po | 31 ++- help_online/i18n/vi.po | 236 +++++++++++++++++++++ web_ckeditor4/i18n/am.po | 38 ++++ web_ckeditor4/i18n/ca.po | 38 ++++ web_ckeditor4/i18n/de.po | 24 ++- web_ckeditor4/i18n/el_GR.po | 38 ++++ web_ckeditor4/i18n/es.po | 13 +- web_ckeditor4/i18n/es_ES.po | 38 ++++ web_ckeditor4/i18n/gl.po | 38 ++++ web_ckeditor4/i18n/nl.po | 38 ++++ web_ckeditor4/i18n/pt.po | 38 ++++ web_ckeditor4/i18n/pt_PT.po | 38 ++++ web_dashboard_tile/i18n/am.po | 241 ++++++++++++++++++++++ web_dashboard_tile/i18n/ca.po | 241 ++++++++++++++++++++++ web_dashboard_tile/i18n/de.po | 9 +- web_dashboard_tile/i18n/el_GR.po | 241 ++++++++++++++++++++++ web_dashboard_tile/i18n/es.po | 7 +- web_dashboard_tile/i18n/es_ES.po | 241 ++++++++++++++++++++++ web_dashboard_tile/i18n/gl.po | 241 ++++++++++++++++++++++ web_dashboard_tile/i18n/nl.po | 108 ++++++---- web_dashboard_tile/i18n/pt.po | 241 ++++++++++++++++++++++ web_dashboard_tile/i18n/pt_PT.po | 241 ++++++++++++++++++++++ web_graph_improved/i18n/ca.po | 38 ++++ web_graph_improved/i18n/el_GR.po | 38 ++++ web_graph_improved/i18n/nl_NL.po | 38 ++++ web_m2x_options/i18n/ar.po | 38 +++- web_m2x_options/i18n/de.po | 39 +++- web_m2x_options/i18n/es.po | 46 ++++- web_m2x_options/i18n/fi.po | 40 +++- web_m2x_options/i18n/fr.po | 26 ++- web_m2x_options/i18n/it.po | 30 ++- web_m2x_options/i18n/nb_NO.po | 52 +++++ web_m2x_options/i18n/pt_BR.po | 38 +++- web_m2x_options/i18n/sl.po | 41 +++- web_m2x_options/i18n/tr.po | 63 +++++- web_m2x_options/i18n/zh_CN.po | 52 +++++ web_shortcuts/i18n/am.po | 80 +++++++ web_shortcuts/i18n/ca.po | 80 +++++++ web_shortcuts/i18n/de.po | 43 +++- web_shortcuts/i18n/el_GR.po | 80 +++++++ web_shortcuts/i18n/es.po | 11 +- web_shortcuts/i18n/es_ES.po | 80 +++++++ web_shortcuts/i18n/gl.po | 34 ++- web_shortcuts/i18n/nl.po | 30 ++- web_shortcuts/i18n/pt.po | 53 ++++- web_shortcuts/i18n/pt_PT.po | 80 +++++++ web_translate_dialog/i18n/am.po | 53 +++++ web_translate_dialog/i18n/ca.po | 53 +++++ web_translate_dialog/i18n/cs.po | 53 +++++ web_translate_dialog/i18n/es_CR.po | 53 +++++ web_translate_dialog/i18n/es_EC.po | 53 +++++ web_translate_dialog/i18n/es_MX.po | 53 +++++ web_translate_dialog/i18n/es_VE.po | 53 +++++ web_translate_dialog/i18n/et.po | 53 +++++ web_translate_dialog/i18n/gl.po | 53 +++++ web_translate_dialog/i18n/lt.po | 53 +++++ web_translate_dialog/i18n/nl.po | 80 +++++-- web_translate_dialog/i18n/nl_BE.po | 53 +++++ web_translate_dialog/i18n/pl.po | 53 +++++ web_translate_dialog/i18n/pt.po | 53 +++++ web_translate_dialog/i18n/ro.po | 53 +++++ web_translate_dialog/i18n/ru.po | 53 +++++ web_translate_dialog/i18n/th.po | 53 +++++ web_widget_x2many_2d_matrix/i18n/ca.po | 26 +++ web_widget_x2many_2d_matrix/i18n/el_GR.po | 26 +++ web_widget_x2many_2d_matrix/i18n/nl_NL.po | 26 +++ 95 files changed, 9210 insertions(+), 248 deletions(-) create mode 100644 help_online/i18n/am.po create mode 100644 help_online/i18n/ca.po create mode 100644 help_online/i18n/cs.po create mode 100644 help_online/i18n/el_GR.po create mode 100644 help_online/i18n/es_CR.po create mode 100644 help_online/i18n/es_EC.po create mode 100644 help_online/i18n/es_ES.po create mode 100644 help_online/i18n/es_MX.po create mode 100644 help_online/i18n/es_VE.po create mode 100644 help_online/i18n/et.po create mode 100644 help_online/i18n/gl.po create mode 100644 help_online/i18n/lt.po create mode 100644 help_online/i18n/nl.po create mode 100644 help_online/i18n/nl_BE.po create mode 100644 help_online/i18n/pl.po create mode 100644 help_online/i18n/pt.po create mode 100644 help_online/i18n/pt_PT.po create mode 100644 help_online/i18n/ro.po create mode 100644 help_online/i18n/ru.po create mode 100644 help_online/i18n/th.po create mode 100644 help_online/i18n/vi.po create mode 100644 web_ckeditor4/i18n/am.po create mode 100644 web_ckeditor4/i18n/ca.po create mode 100644 web_ckeditor4/i18n/el_GR.po create mode 100644 web_ckeditor4/i18n/es_ES.po create mode 100644 web_ckeditor4/i18n/gl.po create mode 100644 web_ckeditor4/i18n/nl.po create mode 100644 web_ckeditor4/i18n/pt.po create mode 100644 web_ckeditor4/i18n/pt_PT.po create mode 100644 web_dashboard_tile/i18n/am.po create mode 100644 web_dashboard_tile/i18n/ca.po create mode 100644 web_dashboard_tile/i18n/el_GR.po create mode 100644 web_dashboard_tile/i18n/es_ES.po create mode 100644 web_dashboard_tile/i18n/gl.po create mode 100644 web_dashboard_tile/i18n/pt.po create mode 100644 web_dashboard_tile/i18n/pt_PT.po create mode 100644 web_graph_improved/i18n/ca.po create mode 100644 web_graph_improved/i18n/el_GR.po create mode 100644 web_graph_improved/i18n/nl_NL.po create mode 100644 web_m2x_options/i18n/nb_NO.po create mode 100644 web_m2x_options/i18n/zh_CN.po create mode 100644 web_shortcuts/i18n/am.po create mode 100644 web_shortcuts/i18n/ca.po create mode 100644 web_shortcuts/i18n/el_GR.po create mode 100644 web_shortcuts/i18n/es_ES.po create mode 100644 web_shortcuts/i18n/pt_PT.po create mode 100644 web_translate_dialog/i18n/am.po create mode 100644 web_translate_dialog/i18n/ca.po create mode 100644 web_translate_dialog/i18n/cs.po create mode 100644 web_translate_dialog/i18n/es_CR.po create mode 100644 web_translate_dialog/i18n/es_EC.po create mode 100644 web_translate_dialog/i18n/es_MX.po create mode 100644 web_translate_dialog/i18n/es_VE.po create mode 100644 web_translate_dialog/i18n/et.po create mode 100644 web_translate_dialog/i18n/gl.po create mode 100644 web_translate_dialog/i18n/lt.po create mode 100644 web_translate_dialog/i18n/nl_BE.po create mode 100644 web_translate_dialog/i18n/pl.po create mode 100644 web_translate_dialog/i18n/pt.po create mode 100644 web_translate_dialog/i18n/ro.po create mode 100644 web_translate_dialog/i18n/ru.po create mode 100644 web_translate_dialog/i18n/th.po create mode 100644 web_widget_x2many_2d_matrix/i18n/ca.po create mode 100644 web_widget_x2many_2d_matrix/i18n/el_GR.po create mode 100644 web_widget_x2many_2d_matrix/i18n/nl_NL.po diff --git a/help_online/i18n/am.po b/help_online/i18n/am.po new file mode 100644 index 00000000..5e2c0306 --- /dev/null +++ b/help_online/i18n/am.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/ar.po b/help_online/i18n/ar.po index 3fbf4ace..6771001c 100644 --- a/help_online/i18n/ar.po +++ b/help_online/i18n/ar.po @@ -3,10 +3,12 @@ # * help_online # # Translators: -# Ahmet Altınışık , 2015-2016 +# Ahmet Altinisik , 2015-2016 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # Carles Antoli , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # FIRST AUTHOR , 2012,2014 # Giacomo , 2015 @@ -21,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-22 15:47+0000\n" -"PO-Revision-Date: 2015-12-16 16:57+0000\n" -"Last-Translator: SaFi J. \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +35,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "إلغاء" @@ -46,7 +48,7 @@ msgstr "إغلاق" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "تأكييد" @@ -69,6 +71,12 @@ msgstr "تم الإنشاء بواسطة" msgid "Created on" msgstr "تم الإنشاء في" +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view msgid "Export" @@ -145,6 +153,12 @@ msgstr "استيراد بيانات المساعدة" msgid "Import Help Online" msgstr "استيراد المساعدة الحية" +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 @@ -171,14 +185,14 @@ msgstr "لاتوجد معلمة بادئة محددة للصفحة ! " #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "موافق" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "الصفحة غير موجودة. هل تريد الإنشاء ؟" diff --git a/help_online/i18n/ca.po b/help_online/i18n/ca.po new file mode 100644 index 00000000..45bceccb --- /dev/null +++ b/help_online/i18n/ca.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/cs.po b/help_online/i18n/cs.po new file mode 100644 index 00000000..6f3e8e72 --- /dev/null +++ b/help_online/i18n/cs.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Zrušit" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/de.po b/help_online/i18n/de.po index ce288a68..ea9e6eea 100644 --- a/help_online/i18n/de.po +++ b/help_online/i18n/de.po @@ -3,7 +3,7 @@ # * help_online # # Translators: -# Ahmet Altınışık , 2015-2016 +# Ahmet Altinisik , 2015-2016 # Alejandro Santana , 2015 # Antonio Trueba, 2016 # Artūras Griškonis , 2012,2015-2016 @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-22 15:47+0000\n" -"PO-Revision-Date: 2016-01-18 21:15+0000\n" -"Last-Translator: Rudolf Schnapka \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-18 08:13+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Abbrechen" @@ -45,7 +45,7 @@ msgstr "Schließen" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Bestätigen" @@ -68,6 +68,12 @@ msgstr "Angelegt durch" msgid "Created on" msgstr "Angelegt am" +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view msgid "Export" @@ -144,6 +150,12 @@ msgstr "Import Hilfedaten" msgid "Import Help Online" msgstr "Import Online-Hilfe" +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 @@ -170,14 +182,14 @@ msgstr "Kein Seiten-Präfix festgelegt." #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Ok" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "Seite existiert nicht. Wollen Sie diese anlegen?" diff --git a/help_online/i18n/el_GR.po b/help_online/i18n/el_GR.po new file mode 100644 index 00000000..c496a475 --- /dev/null +++ b/help_online/i18n/el_GR.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es.po b/help_online/i18n/es.po index 7c14e5e7..dd4800a0 100644 --- a/help_online/i18n/es.po +++ b/help_online/i18n/es.po @@ -3,7 +3,7 @@ # * help_online # # Translators: -# Ahmet Altınışık , 2016 +# Ahmet Altinisik , 2016 # Antonio Trueba, 2016 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 @@ -14,6 +14,7 @@ # Kostas Goutoudis , 2015 # Jesús Alan Ramos Rodríguez , 2015 # Jesús Alan Ramos Rodríguez , 2015 +# Jesús Alan Ramos Rodríguez , 2015 # Kostas Goutoudis , 2015 # Matjaž Mozetič , 2015 # Paolo Valier, 2016 @@ -25,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-23 10:59+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -37,7 +38,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Cancelar" @@ -50,7 +51,7 @@ msgstr "Cerrar" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Confirmar" @@ -77,7 +78,7 @@ msgstr "Creado en" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre mostrado" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -187,14 +188,14 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Ok" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "La página no existe. ¿Quiere crearla?" diff --git a/help_online/i18n/es_CR.po b/help_online/i18n/es_CR.po new file mode 100644 index 00000000..e9a820f9 --- /dev/null +++ b/help_online/i18n/es_CR.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es_EC.po b/help_online/i18n/es_EC.po new file mode 100644 index 00000000..7a89a205 --- /dev/null +++ b/help_online/i18n/es_EC.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es_ES.po b/help_online/i18n/es_ES.po new file mode 100644 index 00000000..fd2ee0ed --- /dev/null +++ b/help_online/i18n/es_ES.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es_MX.po b/help_online/i18n/es_MX.po new file mode 100644 index 00000000..93ca66a8 --- /dev/null +++ b/help_online/i18n/es_MX.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es_VE.po b/help_online/i18n/es_VE.po new file mode 100644 index 00000000..2231b32a --- /dev/null +++ b/help_online/i18n/es_VE.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/et.po b/help_online/i18n/et.po new file mode 100644 index 00000000..111e75f5 --- /dev/null +++ b/help_online/i18n/et.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Loobu" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/fi.po b/help_online/i18n/fi.po index 9df9f989..c0ed7f61 100644 --- a/help_online/i18n/fi.po +++ b/help_online/i18n/fi.po @@ -3,7 +3,7 @@ # * help_online # # Translators: -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015 # Antonio Trueba, 2016 # FIRST AUTHOR , 2012,2014 # Hotellook, 2014 @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-08 16:35+0000\n" -"PO-Revision-Date: 2016-07-08 10:49+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 12:45+0000\n" "Last-Translator: Jarmo Kortetjärvi \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Peru" @@ -41,7 +41,7 @@ msgstr "Sulje" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Vahvista" @@ -178,14 +178,14 @@ msgstr "Sivun etuliitettä ei ole määritetty!" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Ok" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "Sivua ei ole olemassa. Haluatko luoda sivun?" diff --git a/help_online/i18n/fr.po b/help_online/i18n/fr.po index f591b6f3..78439a74 100644 --- a/help_online/i18n/fr.po +++ b/help_online/i18n/fr.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-06 15:49+0000\n" -"PO-Revision-Date: 2016-05-06 08:19+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 21:46+0000\n" "Last-Translator: Christophe CHAUVET \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Annuler" @@ -46,7 +46,7 @@ msgstr "Fermer" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Confirmer" @@ -183,14 +183,14 @@ msgstr "Le paramètre spécifiant le préfixe des pages n'est pas configuré !" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Ok" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "La page n'existe pas. Voulez-vous la créer?" diff --git a/help_online/i18n/gl.po b/help_online/i18n/gl.po new file mode 100644 index 00000000..3c6b7744 --- /dev/null +++ b/help_online/i18n/gl.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/hr.po b/help_online/i18n/hr.po index ac78c482..be64d484 100644 --- a/help_online/i18n/hr.po +++ b/help_online/i18n/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" "PO-Revision-Date: 2016-06-14 11:47+0000\n" "Last-Translator: Bole \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Otkaži" @@ -33,7 +33,7 @@ msgstr "Zatvori" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Potvrdi" @@ -170,14 +170,14 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "U redu" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "Stranica ne postoji. Želite ju napraviti?" diff --git a/help_online/i18n/it.po b/help_online/i18n/it.po index 7f559922..bc579e3a 100644 --- a/help_online/i18n/it.po +++ b/help_online/i18n/it.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:08+0000\n" -"PO-Revision-Date: 2016-04-30 19:55+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" "Last-Translator: Paolo Valier\n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Annulla" @@ -41,7 +41,7 @@ msgstr "Chiudi" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Conferma" @@ -178,14 +178,14 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Ok" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "La pagina non esiste. Desideri crearla?" diff --git a/help_online/i18n/lt.po b/help_online/i18n/lt.po new file mode 100644 index 00000000..e1bd7ba5 --- /dev/null +++ b/help_online/i18n/lt.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/nl.po b/help_online/i18n/nl.po new file mode 100644 index 00000000..6de138bf --- /dev/null +++ b/help_online/i18n/nl.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-17 18:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/nl_BE.po b/help_online/i18n/nl_BE.po new file mode 100644 index 00000000..9a0fc932 --- /dev/null +++ b/help_online/i18n/nl_BE.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/pl.po b/help_online/i18n/pl.po new file mode 100644 index 00000000..f6885f92 --- /dev/null +++ b/help_online/i18n/pl.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Anuluj" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/pt.po b/help_online/i18n/pt.po new file mode 100644 index 00000000..c043906c --- /dev/null +++ b/help_online/i18n/pt.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/pt_BR.po b/help_online/i18n/pt_BR.po index db36a522..f0abfe47 100644 --- a/help_online/i18n/pt_BR.po +++ b/help_online/i18n/pt_BR.po @@ -8,8 +8,10 @@ # Armando Vulcano Junior , 2015 # bossnm11 , 2014 # Carles Antoli , 2015 +# Carles Antoli , 2015 # Chanseok , 2014 # Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 # danimaribeiro , 2015-2016 # danimaribeiro , 2016 # FIRST AUTHOR , 2012,2014 @@ -31,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-22 15:47+0000\n" -"PO-Revision-Date: 2016-03-05 16:01+0000\n" -"Last-Translator: danimaribeiro \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-08 13:37+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +45,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Cancelar" @@ -56,7 +58,7 @@ msgstr "Fechar" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Confirmar" @@ -79,6 +81,12 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em " +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view msgid "Export" @@ -155,6 +163,12 @@ msgstr "Importar dados de ajuda" msgid "Import Help Online" msgstr "Importar ajuda online" +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 @@ -181,14 +195,14 @@ msgstr "Nenhum prefixo de página especificado!" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Ok" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "Página não existe. Você quer criar?" diff --git a/help_online/i18n/pt_PT.po b/help_online/i18n/pt_PT.po new file mode 100644 index 00000000..b725da34 --- /dev/null +++ b/help_online/i18n/pt_PT.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/ro.po b/help_online/i18n/ro.po new file mode 100644 index 00000000..0d806be8 --- /dev/null +++ b/help_online/i18n/ro.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Anuleaza" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/ru.po b/help_online/i18n/ru.po new file mode 100644 index 00000000..3cc7ff9c --- /dev/null +++ b/help_online/i18n/ru.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Отменена" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/sl.po b/help_online/i18n/sl.po index 87f2a086..897dc904 100644 --- a/help_online/i18n/sl.po +++ b/help_online/i18n/sl.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:08+0000\n" -"PO-Revision-Date: 2016-04-30 05:23+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "Preklic" @@ -49,7 +49,7 @@ msgstr "Zaključi" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Potrdi" @@ -186,14 +186,14 @@ msgstr "Predpona strani ni določena!" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "V redu" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "Stran ne obstaja. Jo želite ustvariti?" diff --git a/help_online/i18n/th.po b/help_online/i18n/th.po new file mode 100644 index 00000000..54db030d --- /dev/null +++ b/help_online/i18n/th.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/tr.po b/help_online/i18n/tr.po index 56b13bd4..e6ae5192 100644 --- a/help_online/i18n/tr.po +++ b/help_online/i18n/tr.po @@ -3,8 +3,8 @@ # * help_online # # Translators: -# Ahmet Altınışık , 2015-2016 -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015-2016 +# Ahmet Altinisik , 2015 # Armando Vulcano Junior , 2015 # Bruno JOLIVEAU, 2015 # FIRST AUTHOR , 2012-2013 @@ -17,13 +17,14 @@ # SaFi J. , 2015 # Thomas A. Jaeger, 2015 # Yael Terrettaz, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-22 15:47+0000\n" -"PO-Revision-Date: 2016-01-31 11:39+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +34,7 @@ msgstr "" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:83 +#: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" msgstr "İptal" @@ -46,7 +47,7 @@ msgstr "Kapat" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:81 +#: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" msgstr "Onayla" @@ -69,6 +70,12 @@ msgstr "Oluşturan" msgid "Created on" msgstr "Oluşturuldu" +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view msgid "Export" @@ -145,6 +152,12 @@ msgstr "Yardım verisini içe aktarma" msgid "Import Help Online" msgstr "Online yardımı İçe aktar" +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 @@ -171,14 +184,14 @@ msgstr "Hiç sayfa ön-ek parametresi tanımlanmamış !" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:88 +#: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" msgstr "Taman" #. module: help_online #. openerp-web -#: code:addons/help_online/static/src/js/help_online.js:107 +#: code:addons/help_online/static/src/js/help_online.js:117 #, python-format msgid "Page does not exist. Do you want to create?" msgstr "Sayfa bulunamadı, baştan oluşturmak ister misin?" diff --git a/help_online/i18n/vi.po b/help_online/i18n/vi.po new file mode 100644 index 00000000..589df507 --- /dev/null +++ b/help_online/i18n/vi.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/web_ckeditor4/i18n/am.po b/web_ckeditor4/i18n/am.po new file mode 100644 index 00000000..3757fc0f --- /dev/null +++ b/web_ckeditor4/i18n/am.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/ca.po b/web_ckeditor4/i18n/ca.po new file mode 100644 index 00000000..f37d6ca1 --- /dev/null +++ b/web_ckeditor4/i18n/ca.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/de.po b/web_ckeditor4/i18n/de.po index fa0d7bf0..5f2acaf9 100644 --- a/web_ckeditor4/i18n/de.po +++ b/web_ckeditor4/i18n/de.po @@ -3,14 +3,22 @@ # * web_ckeditor4 # # Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012-2014 +# Kostas Goutoudis , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 # Rudolf Schnapka , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-10 07:31+0000\n" -"PO-Revision-Date: 2016-01-18 20:15+0000\n" -"Last-Translator: Rudolf Schnapka \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-18 08:13+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,11 +26,21 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 msgid "ID" msgstr "ID" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch msgid "Monkeypatches for CKEditor" diff --git a/web_ckeditor4/i18n/el_GR.po b/web_ckeditor4/i18n/el_GR.po new file mode 100644 index 00000000..3ad9e6c5 --- /dev/null +++ b/web_ckeditor4/i18n/el_GR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es.po b/web_ckeditor4/i18n/es.po index 14c470e5..aa721f8c 100644 --- a/web_ckeditor4/i18n/es.po +++ b/web_ckeditor4/i18n/es.po @@ -3,25 +3,26 @@ # * web_ckeditor4 # # Translators: -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015 # Alexis de Lattre , 2016 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 # danimaribeiro , 2015-2016 # FIRST AUTHOR , 2013-2014 # Hotellook, 2014 # Matjaž Mozetič , 2015 -# Oihane Crucelaegui , 2016 +# oihane , 2016 # Rudolf Schnapka , 2016 # Rudolf Schnapka , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-23 10:58+0000\n" -"Last-Translator: Oihane Crucelaegui \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" +"Last-Translator: oihane \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +33,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre mostrado" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 diff --git a/web_ckeditor4/i18n/es_ES.po b/web_ckeditor4/i18n/es_ES.po new file mode 100644 index 00000000..03c4fc96 --- /dev/null +++ b/web_ckeditor4/i18n/es_ES.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/gl.po b/web_ckeditor4/i18n/gl.po new file mode 100644 index 00000000..b0352fbe --- /dev/null +++ b/web_ckeditor4/i18n/gl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/nl.po b/web_ckeditor4/i18n/nl.po new file mode 100644 index 00000000..a096c47b --- /dev/null +++ b/web_ckeditor4/i18n/nl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/pt.po b/web_ckeditor4/i18n/pt.po new file mode 100644 index 00000000..d101083f --- /dev/null +++ b/web_ckeditor4/i18n/pt.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/pt_PT.po b/web_ckeditor4/i18n/pt_PT.po new file mode 100644 index 00000000..8896026c --- /dev/null +++ b/web_ckeditor4/i18n/pt_PT.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_dashboard_tile/i18n/am.po b/web_dashboard_tile/i18n/am.po new file mode 100644 index 00000000..1ccd10fa --- /dev/null +++ b/web_dashboard_tile/i18n/am.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_dashboard_tile/i18n/ca.po b/web_dashboard_tile/i18n/ca.po new file mode 100644 index 00000000..30ec5bcb --- /dev/null +++ b/web_dashboard_tile/i18n/ca.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_dashboard_tile/i18n/de.po b/web_dashboard_tile/i18n/de.po index 1f88bb19..77f37945 100644 --- a/web_dashboard_tile/i18n/de.po +++ b/web_dashboard_tile/i18n/de.po @@ -9,6 +9,7 @@ # Hotellook, 2014 # Jarmo Kortetjärvi , 2016 # Leonardo J. Caballero G. , 2016 +# Leonardo J. Caballero G. , 2016 # Matjaž Mozetič , 2015 # Miku Laitinen , 2015 # Paolo Valier, 2016 @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-18 08:13+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" @@ -101,7 +102,7 @@ msgstr "Anzeige" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Anzeigename" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -150,7 +151,7 @@ msgstr "ID" #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Zuletzt geändert am" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 diff --git a/web_dashboard_tile/i18n/el_GR.po b/web_dashboard_tile/i18n/el_GR.po new file mode 100644 index 00000000..e1bc7378 --- /dev/null +++ b/web_dashboard_tile/i18n/el_GR.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_dashboard_tile/i18n/es.po b/web_dashboard_tile/i18n/es.po index f7ce0d47..449e08db 100644 --- a/web_dashboard_tile/i18n/es.po +++ b/web_dashboard_tile/i18n/es.po @@ -4,6 +4,7 @@ # # Translators: # Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 # Antonio Trueba, 2016 # Antonio Trueba, 2016 # Carles Antoli , 2015 @@ -23,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -106,7 +107,7 @@ msgstr "Mostrar" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre mostrado" #. module: web_dashboard_tile #: field:tile.tile,domain:0 diff --git a/web_dashboard_tile/i18n/es_ES.po b/web_dashboard_tile/i18n/es_ES.po new file mode 100644 index 00000000..8a229368 --- /dev/null +++ b/web_dashboard_tile/i18n/es_ES.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_dashboard_tile/i18n/gl.po b/web_dashboard_tile/i18n/gl.po new file mode 100644 index 00000000..f8cf204f --- /dev/null +++ b/web_dashboard_tile/i18n/gl.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_dashboard_tile/i18n/nl.po b/web_dashboard_tile/i18n/nl.po index 7d5a018e..3a55b620 100644 --- a/web_dashboard_tile/i18n/nl.po +++ b/web_dashboard_tile/i18n/nl.po @@ -3,13 +3,35 @@ # * web_dashboard_tile # # Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Bruno JOLIVEAU, 2015 +# Chanseok , 2014 +# FIRST AUTHOR , 2012,2014 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015-2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:19+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-17 18:43+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,20 +44,29 @@ msgstr "" msgid "Action" msgstr "" +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "Actief" + #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Average" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" +#: field:tile.tile,background_color:0 +msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,background_color:0 -msgid "Background color" +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" msgstr "" #. module: web_dashboard_tile @@ -78,6 +109,11 @@ msgstr "" msgid "Display" msgstr "" +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + #. module: web_dashboard_tile #: field:tile.tile,domain:0 msgid "Domain" @@ -90,16 +126,6 @@ msgstr "" msgid "Error" msgstr "" -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." -msgstr "" - -#. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,field_id:0 msgid "Field" @@ -122,11 +148,21 @@ msgstr "" msgid "Function" msgstr "" +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" msgstr "" +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" @@ -142,34 +178,16 @@ msgstr "" msgid "Maximum" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 -#, python-format -msgid "Maximum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Median" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 -#, python-format -msgid "Median value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 -#, python-format -msgid "Minimum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -178,13 +196,25 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,name:0 msgid "Name" -msgstr "" +msgstr "Naam" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view msgid "Optional Field Informations" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" @@ -222,9 +252,9 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format -msgid "Total value of '%s'" +msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" #. module: web_dashboard_tile diff --git a/web_dashboard_tile/i18n/pt.po b/web_dashboard_tile/i18n/pt.po new file mode 100644 index 00000000..6a4990af --- /dev/null +++ b/web_dashboard_tile/i18n/pt.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_dashboard_tile/i18n/pt_PT.po b/web_dashboard_tile/i18n/pt_PT.po new file mode 100644 index 00000000..6c0a7447 --- /dev/null +++ b/web_dashboard_tile/i18n/pt_PT.po @@ -0,0 +1,241 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,field_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,field_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" diff --git a/web_graph_improved/i18n/ca.po b/web_graph_improved/i18n/ca.po new file mode 100644 index 00000000..23238a63 --- /dev/null +++ b/web_graph_improved/i18n/ca.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/el_GR.po b/web_graph_improved/i18n/el_GR.po new file mode 100644 index 00000000..40cf3b41 --- /dev/null +++ b/web_graph_improved/i18n/el_GR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Σύνολο" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/nl_NL.po b/web_graph_improved/i18n/nl_NL.po new file mode 100644 index 00000000..f097008a --- /dev/null +++ b/web_graph_improved/i18n/nl_NL.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Totaal" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_m2x_options/i18n/ar.po b/web_m2x_options/i18n/ar.po index 1011622c..75f87b1f 100644 --- a/web_m2x_options/i18n/ar.po +++ b/web_m2x_options/i18n/ar.po @@ -3,14 +3,24 @@ # * web_m2x_options # # Translators: +# Ahmet Altinisik , 2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010,2012 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 # SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2015-12-16 17:30+0000\n" -"Last-Translator: SaFi J. \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +30,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "إنشاء \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "إنشاء وتحرير ..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "البحث عن المزيد ..." diff --git a/web_m2x_options/i18n/de.po b/web_m2x_options/i18n/de.po index 112e2b91..57115214 100644 --- a/web_m2x_options/i18n/de.po +++ b/web_m2x_options/i18n/de.po @@ -3,13 +3,26 @@ # * web_m2x_options # # Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015-2016 +# FIRST AUTHOR , 2012,2014 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 # Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-01-18 20:15+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Rudolf Schnapka \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" @@ -20,24 +33,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Anlegen \"%s" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Anlegen und Bearbeiten" +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Datenmodelle" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Suche weitere..." diff --git a/web_m2x_options/i18n/es.po b/web_m2x_options/i18n/es.po index 7a4764ba..64a85238 100644 --- a/web_m2x_options/i18n/es.po +++ b/web_m2x_options/i18n/es.po @@ -3,13 +3,33 @@ # * web_m2x_options # # Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2010,2012,2014 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 # Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2015-11-07 11:28+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -20,24 +40,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Crear \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Crear y editar..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modelos" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Buscar más..." diff --git a/web_m2x_options/i18n/fi.po b/web_m2x_options/i18n/fi.po index 9dab4ae4..5ac7cc8a 100644 --- a/web_m2x_options/i18n/fi.po +++ b/web_m2x_options/i18n/fi.po @@ -3,14 +3,26 @@ # * web_m2x_options # # Translators: +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# danimaribeiro , 2016 +# Bole , 2015 +# FIRST AUTHOR , 2011-2012,2014 +# Giacomo , 2015 +# Hotellook, 2014 # Jarmo Kortetjärvi , 2016 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-01 09:52+0000\n" -"Last-Translator: Jarmo Kortetjärvi \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +32,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Luo \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Luo ja muokkaa..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Hae lisää..." diff --git a/web_m2x_options/i18n/fr.po b/web_m2x_options/i18n/fr.po index 448e0f46..fda5c82e 100644 --- a/web_m2x_options/i18n/fr.po +++ b/web_m2x_options/i18n/fr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-06 15:50+0000\n" -"PO-Revision-Date: 2016-05-06 08:27+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Christophe CHAUVET \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -20,24 +20,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Creer \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Créer et modifier..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modèles" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Rechercher plus..." diff --git a/web_m2x_options/i18n/it.po b/web_m2x_options/i18n/it.po index ce21776c..30bede28 100644 --- a/web_m2x_options/i18n/it.po +++ b/web_m2x_options/i18n/it.po @@ -3,9 +3,11 @@ # * web_m2x_options # # Translators: -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 +# Bole , 2015 +# Carles Antoli , 2015 # Carles Antoli , 2015 # Bole , 2015 # FIRST AUTHOR , 2012,2014 @@ -20,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-28 07:09+0000\n" -"PO-Revision-Date: 2016-04-28 06:46+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Paolo Valier\n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -32,24 +34,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Crea \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Crea e Modifica..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modelli" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Cerca altro..." diff --git a/web_m2x_options/i18n/nb_NO.po b/web_m2x_options/i18n/nb_NO.po new file mode 100644 index 00000000..2e2ad4d7 --- /dev/null +++ b/web_m2x_options/i18n/nb_NO.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_m2x_options/i18n/pt_BR.po b/web_m2x_options/i18n/pt_BR.po index 8074af4c..dba2ecf2 100644 --- a/web_m2x_options/i18n/pt_BR.po +++ b/web_m2x_options/i18n/pt_BR.po @@ -3,13 +3,25 @@ # * web_m2x_options # # Translators: +# Artūras Griškonis , 2012,2015-2016 +# Artūras Griškonis , 2012 +# Carles Antoli , 2015 # danimaribeiro , 2016 +# danimaribeiro , 2016 +# Dorin Hongu , 2015 +# FIRST AUTHOR , 2012 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# Zapata11 , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-11 02:17+0000\n" -"PO-Revision-Date: 2016-03-05 16:20+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: danimaribeiro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -20,24 +32,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Criar \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Criar e editar.." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modelos" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Buscar mais..." diff --git a/web_m2x_options/i18n/sl.po b/web_m2x_options/i18n/sl.po index c63f36ed..a4f1ebd8 100644 --- a/web_m2x_options/i18n/sl.po +++ b/web_m2x_options/i18n/sl.po @@ -3,13 +3,26 @@ # * web_m2x_options # # Translators: -# Matjaž Mozetič , 2015 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Hotellook, 2014 +# Isabelle RICHARD , 2015 +# Jarmo Kortetjärvi , 2016 +# Jesús Alan Ramos Rodríguez , 2015 +# Lixon Jean-Yves , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2015-11-08 05:46+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 12:33+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" @@ -20,24 +33,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Ustvari \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Ustvari in urejaj..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "Onemogoči hitro ustvarjanje" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modeli" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Poišči več..." diff --git a/web_m2x_options/i18n/tr.po b/web_m2x_options/i18n/tr.po index c9418f2d..121bdfd3 100644 --- a/web_m2x_options/i18n/tr.po +++ b/web_m2x_options/i18n/tr.po @@ -3,15 +3,46 @@ # * web_m2x_options # # Translators: -# Ahmet Altınışık , 2015 -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015-2016 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Thomas A. Jaeger, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2015-12-30 21:53+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,24 +52,34 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:191 -#: code:addons/web_m2x_options/static/src/js/form.js:330 +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 #, python-format msgid "Create \"%s\"" msgstr "Oluştur \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:213 -#: code:addons/web_m2x_options/static/src/js/form.js:351 +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 #, python-format msgid "Create and Edit..." msgstr "Oluştur ve düzenle..." +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modeller" + #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:156 -#: code:addons/web_m2x_options/static/src/js/form.js:305 +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 #, python-format msgid "Search More..." msgstr "Daha Fazla..." diff --git a/web_m2x_options/i18n/zh_CN.po b/web_m2x_options/i18n/zh_CN.po new file mode 100644 index 00000000..d872c06a --- /dev/null +++ b/web_m2x_options/i18n/zh_CN.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:202 +#: code:addons/web_m2x_options/static/src/js/form.js:341 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:224 +#: code:addons/web_m2x_options/static/src/js/form.js:362 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "模型" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:316 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_shortcuts/i18n/am.po b/web_shortcuts/i18n/am.po new file mode 100644 index 00000000..8c371317 --- /dev/null +++ b/web_shortcuts/i18n/am.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/ca.po b/web_shortcuts/i18n/ca.po new file mode 100644 index 00000000..d425ed67 --- /dev/null +++ b/web_shortcuts/i18n/ca.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/de.po b/web_shortcuts/i18n/de.po index 976acdf9..e3aaa0b7 100644 --- a/web_shortcuts/i18n/de.po +++ b/web_shortcuts/i18n/de.po @@ -3,15 +3,40 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2012 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Bruno JOLIVEAU, 2015 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 # Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-10 07:31+0000\n" -"PO-Revision-Date: 2016-01-18 21:04+0000\n" -"Last-Translator: Rudolf Schnapka \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-18 08:13+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,11 +61,21 @@ msgstr "Angelegt durch" msgid "Created on" msgstr "Angelegt am" +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" msgstr "ID" +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" diff --git a/web_shortcuts/i18n/el_GR.po b/web_shortcuts/i18n/el_GR.po new file mode 100644 index 00000000..68a1fd0a --- /dev/null +++ b/web_shortcuts/i18n/el_GR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es.po b/web_shortcuts/i18n/es.po index 08dd4179..4f847b95 100644 --- a/web_shortcuts/i18n/es.po +++ b/web_shortcuts/i18n/es.po @@ -3,7 +3,7 @@ # * web_shortcuts # # Translators: -# Ahmet Altınışık , 2016 +# Ahmet Altinisik , 2016 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # bossnm11 , 2014 @@ -14,7 +14,7 @@ # Eduardo Rodríguez Crespo , 2016 # FIRST AUTHOR , 2012-2013 # Gil , 2014 -# Hongseob Lee , 2015 +# kmooc , 2015 # Hongseob Lee , 2015 # jeon , 2014 # JiyeonLee , 2014 @@ -35,12 +35,13 @@ # Sujin Lee , 2014 # Sunah Lim , 2013 # Young C. Kim, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-23 10:58+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-16 21:45+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -69,7 +70,7 @@ msgstr "Creado en" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre mostrado" #. module: web_shortcuts #: field:web.shortcut,id:0 diff --git a/web_shortcuts/i18n/es_ES.po b/web_shortcuts/i18n/es_ES.po new file mode 100644 index 00000000..51d2f0f5 --- /dev/null +++ b/web_shortcuts/i18n/es_ES.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/gl.po b/web_shortcuts/i18n/gl.po index 5c4f6db9..6e437343 100644 --- a/web_shortcuts/i18n/gl.po +++ b/web_shortcuts/i18n/gl.po @@ -3,13 +3,27 @@ # * web_shortcuts # # Translators: +# Ahmet Altinisik , 2015 +# Alejandro Santana , 2015 +# Alexsandro Haag , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 # FIRST AUTHOR , 2014 +# Hans Henrik Gabelgaard , 2015 +# llum.birque@gmail.com , 2015 +# Matjaž Mozetič , 2015 +# Rudolf Schnapka , 2015-2016 +# Stéphane Bidoul , 2015 +# Wagner Pereira , 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:25+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -28,27 +42,37 @@ msgstr "Engadir / Eliminar atallo..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" msgstr "" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" msgstr "" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "ültima actualización por" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Última actualización en" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/nl.po b/web_shortcuts/i18n/nl.po index 5fac09b1..60e795c3 100644 --- a/web_shortcuts/i18n/nl.po +++ b/web_shortcuts/i18n/nl.po @@ -3,13 +3,27 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2012 +# Ahmet Altinisik , 2015-2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# Matjaž Mozetič , 2015 +# Mohamed HABOU , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-17 18:43+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -35,11 +49,21 @@ msgstr "" msgid "Created on" msgstr "" +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" msgstr "" +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" diff --git a/web_shortcuts/i18n/pt.po b/web_shortcuts/i18n/pt.po index 0587dd78..333ed828 100644 --- a/web_shortcuts/i18n/pt.po +++ b/web_shortcuts/i18n/pt.po @@ -3,13 +3,44 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2012 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2010,2012-2014 +# Giacomo , 2015 +# Giedrius Slavinskas , 2012 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:27+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" "MIME-Version: 1.0\n" @@ -28,27 +59,37 @@ msgstr "Adicionar / Remover atalho..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Criado por" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" +msgstr "Criado em" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" msgstr "" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" msgstr "" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Atualizado pela última vez por" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Atualizado pela última vez em" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/pt_PT.po b/web_shortcuts/i18n/pt_PT.po new file mode 100644 index 00000000..fc45b7d0 --- /dev/null +++ b/web_shortcuts/i18n/pt_PT.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_translate_dialog/i18n/am.po b/web_translate_dialog/i18n/am.po new file mode 100644 index 00000000..00eca7ff --- /dev/null +++ b/web_translate_dialog/i18n/am.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ca.po b/web_translate_dialog/i18n/ca.po new file mode 100644 index 00000000..a674d1ca --- /dev/null +++ b/web_translate_dialog/i18n/ca.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/cs.po b/web_translate_dialog/i18n/cs.po new file mode 100644 index 00000000..56aea411 --- /dev/null +++ b/web_translate_dialog/i18n/cs.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Zrušit" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_CR.po b/web_translate_dialog/i18n/es_CR.po new file mode 100644 index 00000000..9ec05820 --- /dev/null +++ b/web_translate_dialog/i18n/es_CR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_EC.po b/web_translate_dialog/i18n/es_EC.po new file mode 100644 index 00000000..9f103073 --- /dev/null +++ b/web_translate_dialog/i18n/es_EC.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_MX.po b/web_translate_dialog/i18n/es_MX.po new file mode 100644 index 00000000..41b37c7d --- /dev/null +++ b/web_translate_dialog/i18n/es_MX.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_VE.po b/web_translate_dialog/i18n/es_VE.po new file mode 100644 index 00000000..4d07c274 --- /dev/null +++ b/web_translate_dialog/i18n/es_VE.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/et.po b/web_translate_dialog/i18n/et.po new file mode 100644 index 00000000..f76ad77f --- /dev/null +++ b/web_translate_dialog/i18n/et.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Loobu" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/gl.po b/web_translate_dialog/i18n/gl.po new file mode 100644 index 00000000..b5531a0e --- /dev/null +++ b/web_translate_dialog/i18n/gl.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/lt.po b/web_translate_dialog/i18n/lt.po new file mode 100644 index 00000000..6e3a2a31 --- /dev/null +++ b/web_translate_dialog/i18n/lt.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/nl.po b/web_translate_dialog/i18n/nl.po index 90749f99..a9a01ef7 100644 --- a/web_translate_dialog/i18n/nl.po +++ b/web_translate_dialog/i18n/nl.po @@ -1,21 +1,66 @@ -# Dutch translation for web-addons -# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 -# This file is distributed under the same license as the web-addons package. -# FIRST AUTHOR , 2014. -# +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2015 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# Chen-Do LU , 2015 +# Christophe CHAUVET , 2015 +# Bole , 2015 +# Dimitrios Glentadakis , 2013-2014, 2015-2016 +# Efstathios Iosifidis , 2014 +# FIRST AUTHOR , 2012,2014 +# François Breysse , 2015 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jim Spentzos, 2014 +# Matjaž Mozetič , 2015 +# Mohamed HABOU , 2016 +# njeudy , 2015 +# Pedro M. Baeza , 2015 +# Pierre Verkest , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" -"Project-Id-Version: web-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-12-09 07:15+0000\n" -"PO-Revision-Date: 2014-03-10 10:09+0000\n" -"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" -"Language-Team: Dutch \n" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-06-28 06:02+0000\n" -"X-Generator: Launchpad (build 17077)\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "Veld" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" #. module: web_translate_dialog #. openerp-web @@ -30,10 +75,3 @@ msgstr "Vertalen" #, python-format msgid "Translations" msgstr "Vertalingen" - -#. module: web_translate_dialog -#. openerp-web -#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 -#, python-format -msgid "Field" -msgstr "Veld" diff --git a/web_translate_dialog/i18n/nl_BE.po b/web_translate_dialog/i18n/nl_BE.po new file mode 100644 index 00000000..0fe3a4ee --- /dev/null +++ b/web_translate_dialog/i18n/nl_BE.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/pl.po b/web_translate_dialog/i18n/pl.po new file mode 100644 index 00000000..801bc7ab --- /dev/null +++ b/web_translate_dialog/i18n/pl.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Anuluj" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/pt.po b/web_translate_dialog/i18n/pt.po new file mode 100644 index 00000000..79467fbb --- /dev/null +++ b/web_translate_dialog/i18n/pt.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ro.po b/web_translate_dialog/i18n/ro.po new file mode 100644 index 00000000..c2e60e14 --- /dev/null +++ b/web_translate_dialog/i18n/ro.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Anuleaza" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ru.po b/web_translate_dialog/i18n/ru.po new file mode 100644 index 00000000..26022164 --- /dev/null +++ b/web_translate_dialog/i18n/ru.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Отменена" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/th.po b/web_translate_dialog/i18n/th.po new file mode 100644 index 00000000..52c7fb1c --- /dev/null +++ b/web_translate_dialog/i18n/th.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_widget_x2many_2d_matrix/i18n/ca.po b/web_widget_x2many_2d_matrix/i18n/ca.po new file mode 100644 index 00000000..ec226faa --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/ca.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/el_GR.po b/web_widget_x2many_2d_matrix/i18n/el_GR.po new file mode 100644 index 00000000..98d00cb2 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/el_GR.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Σύνολο" diff --git a/web_widget_x2many_2d_matrix/i18n/nl_NL.po b/web_widget_x2many_2d_matrix/i18n/nl_NL.po new file mode 100644 index 00000000..4af22d61 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/nl_NL.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Totaal" From 82088b11e137fa44a4e68f9d1be60ee4718fc4e7 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 20 Sep 2016 21:34:55 +0200 Subject: [PATCH 044/103] [IMP] web_menu_navbar_needaction: reflow, new features (#265) [IMP] web_menu_navbar_needaction: Several improvements: * Make the menu reflow after updating needactions * Allow to disable needaction completely or to set a custom domain * Support for clicking the number to end up on the first action * No need to block the UI for our request * Don't crash on corner cases, filter out search defaults from context, disable custom filters * Allow to define needaction domains for any menu * Support server actions * Support models implementing the function, but not the interface * Show a main menu's child needaction counters --- web_menu_navbar_needaction/README.rst | 3 + web_menu_navbar_needaction/__openerp__.py | 1 + .../models/ir_ui_menu.py | 108 +++++++++++++++++- .../src/css/web_menu_navbar_needaction.css | 4 + .../src/js/web_menu_navbar_needaction.js | 57 +++++++-- .../views/ir_ui_menu.xml | 16 +++ 6 files changed, 177 insertions(+), 12 deletions(-) create mode 100644 web_menu_navbar_needaction/views/ir_ui_menu.xml diff --git a/web_menu_navbar_needaction/README.rst b/web_menu_navbar_needaction/README.rst index 81d54813..9e663d1a 100644 --- a/web_menu_navbar_needaction/README.rst +++ b/web_menu_navbar_needaction/README.rst @@ -1,5 +1,6 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg :alt: License: AGPL-3 + ================================ Needaction counters in main menu ================================ @@ -15,6 +16,8 @@ To configure the update frequency, set the configuration parameter `web_menu_nav To disable updates, set the parameter to 0. +For more fine-grained control over the menus, you can turn off needaction for a menu by setting its field `needaction` to `False`, or in case you need a different needaction domain, set `needaction_domain` on the menuitem to the domain you need. A side effect of this is that you can use this addon to add needaction capabilities to any model, independent of it implementing the respective mixin by simply filling in your domain there. + Usage ===== diff --git a/web_menu_navbar_needaction/__openerp__.py b/web_menu_navbar_needaction/__openerp__.py index 4f54faf9..d631363c 100644 --- a/web_menu_navbar_needaction/__openerp__.py +++ b/web_menu_navbar_needaction/__openerp__.py @@ -29,6 +29,7 @@ 'mail', ], "data": [ + "views/ir_ui_menu.xml", "data/ir_config_parameter.xml", 'views/templates.xml', ], diff --git a/web_menu_navbar_needaction/models/ir_ui_menu.py b/web_menu_navbar_needaction/models/ir_ui_menu.py index 8cc1b553..c5ab8ac6 100644 --- a/web_menu_navbar_needaction/models/ir_ui_menu.py +++ b/web_menu_navbar_needaction/models/ir_ui_menu.py @@ -17,25 +17,123 @@ # along with this program. If not, see . # ############################################################################## -from openerp import models, api +import operator +from openerp import _, models, api, fields +from openerp.tools.safe_eval import safe_eval +from openerp.exceptions import Warning as UserError +from openerp.osv import expression class IrUiMenu(models.Model): _inherit = 'ir.ui.menu' + needaction = fields.Boolean( + help='Set to False to disable needaction for specific menu items', + default=True) + needaction_domain = fields.Text( + help='If your menu item needs a different domain, set it here. It ' + 'will override the model\'s needaction domain completely.') + @api.multi def get_navbar_needaction_data(self): result = {} for this in self: count_per_model = {} + action_menu = self.env['ir.ui.menu'].browse([]) + if not this.needaction: + continue for menu_id, needaction in self.search( [('id', 'child_of', this.ids)])._filter_visible_menus()\ .get_needaction_data().iteritems(): if needaction['needaction_enabled']: - model = self.env['ir.ui.menu'].browse(menu_id).action\ - .res_model + menu = self.env['ir.ui.menu'].browse(menu_id) + model = menu._get_needaction_model() count_per_model[model] = max( count_per_model.get(model), - needaction['needaction_counter']) - result[this.id] = sum(count_per_model.itervalues()) + needaction['needaction_counter'] + ) + if needaction['needaction_counter'] and not action_menu: + action_menu = menu + result[this.id] = { + 'count': sum(count_per_model.itervalues()), + } + if action_menu: + result[this.id].update({ + 'action_id': action_menu.action and + action_menu.action.id or None, + 'action_domain': action_menu._eval_needaction_domain(), + }) + return result + + @api.multi + def get_needaction_data(self): + result = super(IrUiMenu, self).get_needaction_data() + for this in self.sorted(operator.itemgetter('parent_left'), True): + data = result[this.id] + if data['needaction_enabled'] or this.needaction and\ + this.needaction_domain: + if not this.needaction: + data['needaction_enabled'] = False + data['needaction_counter'] = 0 + continue + if this.needaction_domain and\ + this._get_needaction_model() is not None: + data['needaction_enabled'] = True + data['needaction_counter'] = this._get_needaction_model()\ + .search_count(this._eval_needaction_domain()) + if not data['needaction_enabled'] and this.needaction and\ + this.child_id and this.parent_id and this.parent_id.parent_id: + # if the user didn't turn it off, show counters for submenus + # but only from the 3rd level (the first that is closed by + # default) + for child in this.child_id: + data['needaction_counter'] += result.get(child.id, {}).get( + 'needaction_counter', 0) + data['needaction_enabled'] = bool(data['needaction_counter']) return result + + @api.multi + def _eval_needaction_domain(self): + self.ensure_one() + eval_context = { + 'uid': self.env.user.id, + 'user': self.env.user, + } + if self.needaction_domain: + return safe_eval(self.needaction_domain, locals_dict=eval_context) + model = self._get_needaction_model() + if model is None or not hasattr(model, '_needaction_domain_get'): + return [] + return expression.AND([ + safe_eval( + 'domain' in self.action._fields and self.action.domain or '[]', + locals_dict=eval_context), + model._needaction_domain_get(), + ]) + + @api.multi + def _get_needaction_model(self): + if not self.action: + return None + model = None + if 'res_model' in self.action._fields: + model = self.action.res_model + elif 'model_id' in self.action._fields: + model = self.action.model_id.model + if model in self.env.registry: + return self.env[model] + return None + + @api.constrains('needaction_domain') + @api.multi + def _check_needaction_domain(self): + for this in self: + try: + expression.AND([ + this._eval_needaction_domain(), + expression.TRUE_DOMAIN, + ]) + except Exception as ex: + raise UserError( + _('Cannot evaluate %s to a search domain:\n%s') % + (self.needaction_domain, ex)) diff --git a/web_menu_navbar_needaction/static/src/css/web_menu_navbar_needaction.css b/web_menu_navbar_needaction/static/src/css/web_menu_navbar_needaction.css index 259502de..fc858479 100644 --- a/web_menu_navbar_needaction/static/src/css/web_menu_navbar_needaction.css +++ b/web_menu_navbar_needaction/static/src/css/web_menu_navbar_needaction.css @@ -2,3 +2,7 @@ { margin-left: .3em; } +#oe_main_menu_navbar .badge:hover +{ + transform: scale(1.1); +} diff --git a/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js b/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js index 799b6120..dcb26826 100644 --- a/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js +++ b/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js @@ -50,29 +50,72 @@ openerp.web_menu_navbar_needaction = function(instance) .map(function() { return parseInt(jQuery(this).attr('data-menu')); }) .get(); return new instance.web.Model('ir.ui.menu') - .call('get_navbar_needaction_data', [this.navbar_menu_ids]) + .call('get_navbar_needaction_data', [this.navbar_menu_ids], + {}, {shadow: true}) .then(this.proxy(this.process_navbar_needaction)); }, process_navbar_needaction: function(data) { var self = this; - _.each(data, function (needaction_count, menu_id) + _.each(data, function (needaction_data, menu_id) { var $item = self.$el.parents('body').find( _.str.sprintf('#oe_main_menu_navbar a[data-menu="%s"]', menu_id)); - if(!$item.length) + if(!$item.length || _.isEmpty(needaction_data)) { return; } $item.find('.badge').remove(); - if(needaction_count) + if(needaction_data.count) { - $item.append( - instance.web.qweb.render("Menu.needaction_counter", - {widget : {needaction_counter: needaction_count}})); + var $counter = jQuery( + instance.web.qweb.render("Menu.needaction_counter", + { + widget: { + needaction_counter: needaction_data.count, + } + })) + .appendTo($item); + if(needaction_data.action_id) + { + $counter.click(function(ev) + { + var parent = self.getParent(); + ev.stopPropagation(); + ev.preventDefault(); + return parent.menu_dm.add( + self.rpc('/web/action/load', { + action_id: needaction_data.action_id, + })) + .then(function(action) + { + return parent.action_mutex.exec(function() + { + action.domain = needaction_data.action_domain; + action.context = new instance.web.CompoundContext( + action.context || {} + ); + action.context = instance.web.pyeval.eval( + 'context', action.context + ); + _.each(_.keys(action.context), function(key) + { + if(key.startsWith('search_default')) + { + delete action.context[key]; + } + }); + return parent.action_manager.do_action( + action, {disable_custom_filters: true} + ); + }); + }); + }); + } } }); + instance.web.bus.trigger('resize'); }, }) diff --git a/web_menu_navbar_needaction/views/ir_ui_menu.xml b/web_menu_navbar_needaction/views/ir_ui_menu.xml new file mode 100644 index 00000000..22b82faa --- /dev/null +++ b/web_menu_navbar_needaction/views/ir_ui_menu.xml @@ -0,0 +1,16 @@ + + + + + ir.ui.menu + + + + + + + + + + + From 7258e994a1eec8cff5982e7675129ba411f8669f Mon Sep 17 00:00:00 2001 From: David Beal Date: Mon, 26 Sep 2016 15:48:34 +0200 Subject: [PATCH 045/103] Update author in manifest allowing search (#428) searching multiple authors --- web_switch_company_warning/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_switch_company_warning/__openerp__.py b/web_switch_company_warning/__openerp__.py index 03f76374..21e893b7 100644 --- a/web_switch_company_warning/__openerp__.py +++ b/web_switch_company_warning/__openerp__.py @@ -9,7 +9,7 @@ "category": "web", "website": "http://akretion.com", "license": "AGPL-3", - "author": "Akretion / Odoo Community Association (OCA)", + "author": "Akretion, Odoo Community Association (OCA)", "depends": [ 'web', ], From ba031bfe570a34d491365efc1e3479762567125d Mon Sep 17 00:00:00 2001 From: Jan Sedivy Date: Thu, 6 Oct 2016 13:35:40 +0200 Subject: [PATCH 046/103] eb_m2x_options functionality aligned with the specification --- web_m2x_options/static/src/js/form.js | 80 ++++++++++++++++----------- 1 file changed, 49 insertions(+), 31 deletions(-) diff --git a/web_m2x_options/static/src/js/form.js b/web_m2x_options/static/src/js/form.js index e0898825..1d0d5502 100644 --- a/web_m2x_options/static/src/js/form.js +++ b/web_m2x_options/static/src/js/form.js @@ -184,15 +184,19 @@ openerp.web_m2x_options = function (instance) { var raw_result = _(data.result).map(function (x) { return x[1]; }); - var no_quick_create = ( - self.options && (self.options.no_create || - self.options.no_quick_create) - ) - var m2x_create_undef = _.isUndefined(self.view.ir_options['web_m2x_options.create']) - var m2x_create = self.view.ir_options['web_m2x_options.create'] == "True" + var can_quick_create = _.isUndefined(self.view.ir_options['web_m2x_options.create']) || + (self.view.ir_options['web_m2x_options.create'].toLowerCase() == "true"); + if (self.options) { + if (typeof self.options.create === 'boolean') { + // field value is stronger than global settings + can_quick_create = self.options.create; + } else if (self.options.no_create || self.options.no_quick_create) { + // undocumented features, try to keep compatibility + can_quick_create = false; + } + } - if (!no_quick_create && ((m2x_create_undef && can_create) || - m2x_create)) { + if (can_create && can_quick_create) { if (search_val.length > 0 && !_.include(raw_result, search_val)) { @@ -210,15 +214,19 @@ openerp.web_m2x_options = function (instance) { } // create... - var no_create_edit = ( - self.options && (self.options.no_create || - self.options.no_create_edit) - ) - var m2x_create_edit_undef = _.isUndefined(self.view.ir_options['web_m2x_options.create_edit']) - var m2x_create_edit = self.view.ir_options['web_m2x_options.create_edit'] == "True" + var can_create_edit = _.isUndefined(self.view.ir_options['web_m2x_options.create_edit']) || + ( self.view.ir_options['web_m2x_options.create_edit'].toLowerCase() == "true"); + if (self.options) { + if (typeof self.options.create_edit === 'boolean') { + // field value is stronger than global settings + can_create_edit = self.options.create_edit; + } else if (self.options.no_create || self.options.no_create_edit) { + // undocumented features, try to keep compatibility + can_create_edit = false; + } + } - if (!no_create_edit && ((m2x_create_edit_undef && can_create) || - m2x_create_edit)) { + if (can_create && can_create_edit) { values.push({ label: _t("Create and Edit..."), @@ -326,14 +334,19 @@ openerp.web_m2x_options = function (instance) { }); } // quick create - var no_quick_create = ( - self.options && (self.options.no_create || - self.options.no_quick_create) - ) - var m2x_create_undef = _.isUndefined(self.view.ir_options['web_m2x_options.create']) - var m2x_create = self.view.ir_options['web_m2x_options.create'] == "True" + var can_quick_create = _.isUndefined(self.view.ir_options['web_m2x_options.create']) || + (self.view.ir_options['web_m2x_options.create'].toLowerCase() == "true"); + if (self.options) { + if (typeof self.options.create === 'boolean') { + // field value is stronger than global settings + can_quick_create = self.options.create; + } else if (self.options.no_create || self.options.no_quick_create) { + // undocumented features, try to keep compatibility + can_quick_create = false; + } + } - if (!no_quick_create && (m2x_create_undef || m2x_create)) { + if (can_quick_create) { var raw_result = _(data.result).map(function(x) {return x[1];}); if (search_val.length > 0 && !_.include(raw_result, search_val)) { @@ -349,14 +362,19 @@ openerp.web_m2x_options = function (instance) { } // create... - var no_create_edit = ( - self.options && (self.options.no_create || - self.options.no_create_edit) - ) - var m2x_create_edit_undef = _.isUndefined(self.view.ir_options['web_m2x_options.create_edit']) - var m2x_create_edit = self.view.ir_options['web_m2x_options.create_edit'] == "True" - - if (!no_create_edit && (m2x_create_edit_undef || m2x_create_edit)) { + var can_create_edit = _.isUndefined(self.view.ir_options['web_m2x_options.create_edit']) || + ( self.view.ir_options['web_m2x_options.create_edit'].toLowerCase() == "true"); + if (self.options) { + if (typeof self.options.create_edit === 'boolean') { + // field value is stronger than global settings + can_create_edit = self.options.create_edit; + } else if (self.options.no_create || self.options.no_create_edit) { + // undocumented features, try to keep compatibility + can_create_edit = false; + } + } + + if (can_create_edit) { values.push({ label: _t("Create and Edit..."), From 334e955bf2b243e6ff8e5ce1e309cd675fa14b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Sat, 8 Oct 2016 11:23:02 +0200 Subject: [PATCH 047/103] [UPD] prefix versions with 8.0 --- README.md | 2 +- web_listview_show_advanced_search/__openerp__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c2270dcd..ce313897 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ addon | version | summary [web_ir_actions_act_window_page](web_ir_actions_act_window_page/) | 8.0.1.0.0 | Allows a developer to trigger a pager to show the previous or next next record in the form view [web_last_viewed_records](web_last_viewed_records/) | 8.0.1.0.0 | Last viewed records [web_listview_custom_element_number](web_listview_custom_element_number/) | 8.0.1.0.0 | Allow users to set manually a quantity of items to display in a tree view -[web_listview_show_advanced_search](web_listview_show_advanced_search/) | 1.0 | Web Show Advanced Search by default on list view +[web_listview_show_advanced_search](web_listview_show_advanced_search/) | 8.0.1.0.0 | Web Show Advanced Search by default on list view [web_m2x_options](web_m2x_options/) | 8.0.0.2.0 | web_m2x_options [web_menu_autohide](web_menu_autohide/) | 8.0.1.0.0 | Hide top and left menu bar [web_menu_navbar_needaction](web_menu_navbar_needaction/) | 8.0.1.0.0 | Show the sum of submenus' needaction counters in main menu diff --git a/web_listview_show_advanced_search/__openerp__.py b/web_listview_show_advanced_search/__openerp__.py index 3080f59d..73b95fc9 100644 --- a/web_listview_show_advanced_search/__openerp__.py +++ b/web_listview_show_advanced_search/__openerp__.py @@ -21,7 +21,7 @@ { 'name': 'Web Show Advanced Search by default on list view', - 'version': '1.0', + 'version': '8.0.1.0.0', 'author': "BCIM,Odoo Community Association (OCA)", 'license': 'AGPL-3', 'category': 'Web', From ce22e5ae89ba5f965f44613a92096c1be0ac03ae Mon Sep 17 00:00:00 2001 From: Andrea Stirpe Date: Thu, 13 Oct 2016 14:52:36 +0200 Subject: [PATCH 048/103] [ADD] Module menu_collapsible 8.0 (#324) [ADD] Module menu_collapsible 8.0 --- web_menu_collapsible/README.rst | 74 ++++++++++++++++++ web_menu_collapsible/__init__.py | 3 + web_menu_collapsible/__openerp__.py | 18 +++++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/menu_collapsible_1.png | Bin 0 -> 34265 bytes .../static/description/menu_collapsible_2.png | Bin 0 -> 18427 bytes .../static/src/css/menu_collapsible.css | 42 ++++++++++ .../static/src/js/menu_collapsible.js | 19 +++++ .../templates/menu_collapsible.xml | 11 +++ 9 files changed, 167 insertions(+) create mode 100644 web_menu_collapsible/README.rst create mode 100644 web_menu_collapsible/__init__.py create mode 100644 web_menu_collapsible/__openerp__.py create mode 100644 web_menu_collapsible/static/description/icon.png create mode 100644 web_menu_collapsible/static/description/menu_collapsible_1.png create mode 100644 web_menu_collapsible/static/description/menu_collapsible_2.png create mode 100644 web_menu_collapsible/static/src/css/menu_collapsible.css create mode 100644 web_menu_collapsible/static/src/js/menu_collapsible.js create mode 100644 web_menu_collapsible/templates/menu_collapsible.xml diff --git a/web_menu_collapsible/README.rst b/web_menu_collapsible/README.rst new file mode 100644 index 00000000..9074b9cf --- /dev/null +++ b/web_menu_collapsible/README.rst @@ -0,0 +1,74 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +================ +Collapsible menu +================ + +This module makes all menus collapsible for all users. + +Second level menus are collapsed by default. + +.. image:: /web_menu_collapsible/static/description/menu_collapsible_1.png + :alt: In case first level menu is collapsed, click it to expand. + +.. image:: /web_menu_collapsible/static/description/menu_collapsible_2.png + :alt: In case first level menu is expanded, click it to collapse. + + +Configuration +============= + +No configuration is needed. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 + + +Known issues / Roadmap +====================== + +* The visual hint is initially in state 'collapsed' when is actually 'expanded' (this is Odoo's menu standard mechanism). + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed `feedback +`_. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Dennis Sluijk + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_menu_collapsible/__init__.py b/web_menu_collapsible/__init__.py new file mode 100644 index 00000000..57d85f8f --- /dev/null +++ b/web_menu_collapsible/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2015 ONESTEiN BV () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_menu_collapsible/__openerp__.py b/web_menu_collapsible/__openerp__.py new file mode 100644 index 00000000..5a073434 --- /dev/null +++ b/web_menu_collapsible/__openerp__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# © 2015 ONESTEiN BV () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'Collapsible menu', + 'license': 'AGPL-3', + 'images': [], + 'summary': 'Foldable second level Odoo menu', + 'author': 'ONESTEiN BV,Odoo Community Association (OCA)', + 'website': 'http://www.onestein.eu', + 'category': 'Web', + 'version': '8.0.1.0.0', + 'depends': ['web'], + 'data': [ + 'templates/menu_collapsible.xml', + ], +} diff --git a/web_menu_collapsible/static/description/icon.png b/web_menu_collapsible/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/web_menu_collapsible/static/description/menu_collapsible_1.png b/web_menu_collapsible/static/description/menu_collapsible_1.png new file mode 100644 index 0000000000000000000000000000000000000000..341e31b908eb3df17f3c05f62da1652901a94ad9 GIT binary patch literal 34265 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 SzgXqZ00f?{elF{r5}E+fJY$yt literal 0 HcmV?d00001 diff --git a/web_menu_collapsible/static/description/menu_collapsible_2.png b/web_menu_collapsible/static/description/menu_collapsible_2.png new file mode 100644 index 0000000000000000000000000000000000000000..104e6996e19e779b25ed36ed66e049478348efc0 GIT binary patch literal 18427 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 a { + padding-left: 27px; +} + +.oe_secondary_menu_section.oe_menu_toggler::before { + width: 0; + height: 0; + display: inline-block; + content: "&darr"; + text-indent: -99999px; + vertical-align: top; + margin-left: -12px; + margin-top: 4px; + margin-right: 4px; + border-top: 4px solid transparent; + border-bottom: 4px solid transparent; + border-left: 4px solid #4c4c4c; + filter: alpha(opacity=50); + opacity: 0.5; +} + +.oe_secondary_menu_section.oe_menu_toggler.oe_menu_opened::before { + margin-top: 6px; + margin-left: -16px; + margin-right: 4px; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px solid #4c4c4c; +} diff --git a/web_menu_collapsible/static/src/js/menu_collapsible.js b/web_menu_collapsible/static/src/js/menu_collapsible.js new file mode 100644 index 00000000..53777b9b --- /dev/null +++ b/web_menu_collapsible/static/src/js/menu_collapsible.js @@ -0,0 +1,19 @@ +openerp.web_menu_collapsible = function(instance) { + instance.web.Menu.include({ + self: this, + start: function() { + $(".oe_secondary_submenu").hide(); + $(".oe_secondary_menu_section").unbind("click"); + $(".oe_secondary_menu_section").click(this.section_clicked); + $(".oe_secondary_menu_section").each(function() { + if($(this).next().hasClass('oe_secondary_submenu')) { + $(this).addClass('oe_menu_toggler'); + } + }); + return this._super.apply(this, arguments); + }, + section_clicked: function() { + $(this).toggleClass('oe_menu_opened').next().toggle(); + } + }); +}; diff --git a/web_menu_collapsible/templates/menu_collapsible.xml b/web_menu_collapsible/templates/menu_collapsible.xml new file mode 100644 index 00000000..046bf77b --- /dev/null +++ b/web_menu_collapsible/templates/menu_collapsible.xml @@ -0,0 +1,11 @@ + + + + + + From 85e63ba56d834be09c321b00755c7cf70df76cc4 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Fri, 14 Oct 2016 04:40:55 +0200 Subject: [PATCH 049/103] [ADD] setup.py --- setup/web_menu_collapsible/odoo_addons/__init__.py | 1 + setup/web_menu_collapsible/odoo_addons/web_menu_collapsible | 1 + setup/web_menu_collapsible/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_menu_collapsible/odoo_addons/__init__.py create mode 120000 setup/web_menu_collapsible/odoo_addons/web_menu_collapsible create mode 100644 setup/web_menu_collapsible/setup.py diff --git a/setup/web_menu_collapsible/odoo_addons/__init__.py b/setup/web_menu_collapsible/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_menu_collapsible/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_menu_collapsible/odoo_addons/web_menu_collapsible b/setup/web_menu_collapsible/odoo_addons/web_menu_collapsible new file mode 120000 index 00000000..23b95fe4 --- /dev/null +++ b/setup/web_menu_collapsible/odoo_addons/web_menu_collapsible @@ -0,0 +1 @@ +../../../web_menu_collapsible \ No newline at end of file diff --git a/setup/web_menu_collapsible/setup.py b/setup/web_menu_collapsible/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_menu_collapsible/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From e632713ccf14d5d061f99e8f44b025de2c86b464 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Fri, 14 Oct 2016 09:02:39 +0200 Subject: [PATCH 050/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ce313897..df28a6b2 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ addon | version | summary [web_listview_show_advanced_search](web_listview_show_advanced_search/) | 8.0.1.0.0 | Web Show Advanced Search by default on list view [web_m2x_options](web_m2x_options/) | 8.0.0.2.0 | web_m2x_options [web_menu_autohide](web_menu_autohide/) | 8.0.1.0.0 | Hide top and left menu bar +[web_menu_collapsible](web_menu_collapsible/) | 8.0.1.0.0 | Foldable second level Odoo menu [web_menu_navbar_needaction](web_menu_navbar_needaction/) | 8.0.1.0.0 | Show the sum of submenus' needaction counters in main menu [web_offline_warning](web_offline_warning/) | 8.0.1.0.0 | User-friendly Offline Warning [web_one2many_list_action](web_one2many_list_action/) | 8.0.1.0.0 | Enable tree_but_open action for One2ManyListView rows. From c7ada76866d6bc471dc30e497a6ebc2eed315f70 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Mon, 17 Oct 2016 02:41:48 +0200 Subject: [PATCH 051/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index df28a6b2..50aa23a5 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ addon | version | summary [web_group_expand](web_group_expand/) | 8.0.1.0.0 | Group Expand Buttons [web_hide_db_manager_link](web_hide_db_manager_link/) | 8.0.1.0.0 | Hide link to database manager in login screen [web_hideleftmenu](web_hideleftmenu/) | 8.0.1.0.0 | Hide Left Menu in Web Interface +[web_invalid_tab](web_invalid_tab/) | 8.0.1.0.0 | Highlight tab when fields inside are invalid. [web_ir_actions_act_window_message](web_ir_actions_act_window_message/) | 8.0.1.0.0 | Show a message box to users [web_ir_actions_act_window_none](web_ir_actions_act_window_none/) | 8.0.1.0.0 | Execute nothing [web_ir_actions_act_window_page](web_ir_actions_act_window_page/) | 8.0.1.0.0 | Allows a developer to trigger a pager to show the previous or next next record in the form view From 117bd539669d5e74b4361855dafd3d1b910d6d41 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 20 Oct 2016 04:42:14 +0200 Subject: [PATCH 052/103] [ADD] setup.py --- setup/web_invalid_tab/odoo_addons/__init__.py | 1 + setup/web_invalid_tab/odoo_addons/web_invalid_tab | 1 + setup/web_invalid_tab/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_invalid_tab/odoo_addons/__init__.py create mode 120000 setup/web_invalid_tab/odoo_addons/web_invalid_tab create mode 100644 setup/web_invalid_tab/setup.py diff --git a/setup/web_invalid_tab/odoo_addons/__init__.py b/setup/web_invalid_tab/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_invalid_tab/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_invalid_tab/odoo_addons/web_invalid_tab b/setup/web_invalid_tab/odoo_addons/web_invalid_tab new file mode 120000 index 00000000..9aeea98e --- /dev/null +++ b/setup/web_invalid_tab/odoo_addons/web_invalid_tab @@ -0,0 +1 @@ +../../../web_invalid_tab \ No newline at end of file diff --git a/setup/web_invalid_tab/setup.py b/setup/web_invalid_tab/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_invalid_tab/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 1e374d66442abcf0a09debc390e4cc5064bf7a35 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 2 Nov 2016 08:54:06 +0100 Subject: [PATCH 053/103] [ADD] web_widget_pattern (#458) --- web_widget_pattern/README.rst | 62 ++++++++++++++++++ web_widget_pattern/__init__.py | 3 + web_widget_pattern/__openerp__.py | 20 ++++++ web_widget_pattern/demo/res_partner.xml | 14 ++++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/src/css/web_widget_pattern.css | 0 .../static/src/js/web_widget_pattern.js | 24 +++++++ web_widget_pattern/views/templates.xml | 11 ++++ 8 files changed, 134 insertions(+) create mode 100644 web_widget_pattern/README.rst create mode 100644 web_widget_pattern/__init__.py create mode 100644 web_widget_pattern/__openerp__.py create mode 100644 web_widget_pattern/demo/res_partner.xml create mode 100644 web_widget_pattern/static/description/icon.png create mode 100644 web_widget_pattern/static/src/css/web_widget_pattern.css create mode 100644 web_widget_pattern/static/src/js/web_widget_pattern.js create mode 100644 web_widget_pattern/views/templates.xml diff --git a/web_widget_pattern/README.rst b/web_widget_pattern/README.rst new file mode 100644 index 00000000..4d9deb35 --- /dev/null +++ b/web_widget_pattern/README.rst @@ -0,0 +1,62 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============== +Input patterns +============== + +This module was written to allow you to define a `regex `_ on character fields a user's input is tested against. + +Usage +===== + +To use this module, you need to: + +#. depend on this module +#. define a key ``pattern`` in the field's options dictionary:: + + +#. if you need `pattern modifiers `_, use the key ``pattern_modifiers`` + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Holger Brunn + +Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list `_ or the `appropriate specialized mailinglist `_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_widget_pattern/__init__.py b/web_widget_pattern/__init__.py new file mode 100644 index 00000000..fa85807b --- /dev/null +++ b/web_widget_pattern/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_widget_pattern/__openerp__.py b/web_widget_pattern/__openerp__.py new file mode 100644 index 00000000..85bf3a4e --- /dev/null +++ b/web_widget_pattern/__openerp__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Input patterns", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Hidden/Dependency", + "summary": "Enforce a pattern on an input field", + "depends": [ + 'web', + ], + "data": [ + 'views/templates.xml', + ], + "demo": [ + "demo/res_partner.xml", + ], +} diff --git a/web_widget_pattern/demo/res_partner.xml b/web_widget_pattern/demo/res_partner.xml new file mode 100644 index 00000000..a3efacfa --- /dev/null +++ b/web_widget_pattern/demo/res_partner.xml @@ -0,0 +1,14 @@ + + + + + res.partner + + + + {'pattern': '[\S]+@[\S]+'} + + + + + diff --git a/web_widget_pattern/static/description/icon.png b/web_widget_pattern/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/web_widget_pattern/static/src/css/web_widget_pattern.css b/web_widget_pattern/static/src/css/web_widget_pattern.css new file mode 100644 index 00000000..e69de29b diff --git a/web_widget_pattern/static/src/js/web_widget_pattern.js b/web_widget_pattern/static/src/js/web_widget_pattern.js new file mode 100644 index 00000000..d9671288 --- /dev/null +++ b/web_widget_pattern/static/src/js/web_widget_pattern.js @@ -0,0 +1,24 @@ +//-*- coding: utf-8 -*- +//© 2016 Therp BV +//License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +openerp.web_widget_pattern = function(instance) +{ + instance.web.form.FieldChar.include({ + is_syntax_valid: function() + { + if(this.options.pattern) + { + var val = this.$('input').val(), + regex = new RegExp( + this.options.pattern, this.options.pattern_modifiers || '' + ); + if(!!val && !regex.test(this.$('input').val())) + { + return false; + } + } + return this._super.apply(this, arguments); + }, + }); +}; diff --git a/web_widget_pattern/views/templates.xml b/web_widget_pattern/views/templates.xml new file mode 100644 index 00000000..bca0dab9 --- /dev/null +++ b/web_widget_pattern/views/templates.xml @@ -0,0 +1,11 @@ + + + + + + From a7c49ef2abc91817513ea79cbf8f8407095aaec7 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 3 Nov 2016 02:33:42 +0100 Subject: [PATCH 054/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 50aa23a5..d0c6e742 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ addon | version | summary [web_widget_mail_send_odoo](web_widget_mail_send_odoo/) | 8.0.1.0.0 | Send mail using internal composition wizard. [web_widget_many2many_tags_multi_selection](web_widget_many2many_tags_multi_selection/) | 8.0.0.1.0 | Tags multiple selection [web_widget_one2many_tags](web_widget_one2many_tags/) | 8.0.1.0.0 | Provides a widget similar to many2many_tags for one2many fields +[web_widget_pattern](web_widget_pattern/) | 8.0.1.0.0 | Enforce a pattern on an input field [web_widget_radio_tree](web_widget_radio_tree/) | 8.0.1.0.0 | Add radio buttons for records in tree. [web_widget_text_markdown](web_widget_text_markdown/) | 8.0.1.0.0 | web_widget_text_markdown [web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.1.0 | Show list fields as a matrix From b68c0569ec22827cb792db7d61c1eb6ac2e39d2f Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 3 Nov 2016 04:40:44 +0100 Subject: [PATCH 055/103] [ADD] setup.py --- setup/web_widget_pattern/odoo_addons/__init__.py | 1 + setup/web_widget_pattern/odoo_addons/web_widget_pattern | 1 + setup/web_widget_pattern/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_widget_pattern/odoo_addons/__init__.py create mode 120000 setup/web_widget_pattern/odoo_addons/web_widget_pattern create mode 100644 setup/web_widget_pattern/setup.py diff --git a/setup/web_widget_pattern/odoo_addons/__init__.py b/setup/web_widget_pattern/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_widget_pattern/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_widget_pattern/odoo_addons/web_widget_pattern b/setup/web_widget_pattern/odoo_addons/web_widget_pattern new file mode 120000 index 00000000..dbc6a29b --- /dev/null +++ b/setup/web_widget_pattern/odoo_addons/web_widget_pattern @@ -0,0 +1 @@ +../../../web_widget_pattern \ No newline at end of file diff --git a/setup/web_widget_pattern/setup.py b/setup/web_widget_pattern/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_widget_pattern/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 3320ada4bbdc486d32e3c4102ee5989196313a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Fri, 11 Nov 2016 17:15:53 +0100 Subject: [PATCH 056/103] [8.0] add x_axis_clickable and y_axis_clickable properties on widget --- web_widget_x2many_2d_matrix/README.rst | 6 ++++++ .../static/src/js/web_widget_x2many_2d_matrix.js | 10 ++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/web_widget_x2many_2d_matrix/README.rst b/web_widget_x2many_2d_matrix/README.rst index 83c29328..a22f8e00 100644 --- a/web_widget_x2many_2d_matrix/README.rst +++ b/web_widget_x2many_2d_matrix/README.rst @@ -48,6 +48,12 @@ field_x_axis The field that indicates the x value of a point field_y_axis The field that indicates the y value of a point +x_axis_clickable + It indicates if the X axis allows to be clicked for navigating to the field + (if it's a many2one field). True by default +y_axis_clickable + It indicates if the Y axis allows to be clicked for navigating to the field + (if it's a many2one field). True by default field_label_x_axis Use another field to display in the table header field_label_y_axis diff --git a/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js b/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js index 5f6147f4..88ba1745 100644 --- a/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js +++ b/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js @@ -29,12 +29,16 @@ openerp.web_widget_x2many_2d_matrix = function(instance) fields: {}, // Store fields used to fill HTML attributes fields_att: {}, + x_axis_clickable: true, + y_axis_clickable: true, // read parameters init: function(field_manager, node) { this.field_x_axis = node.attrs.field_x_axis || this.field_x_axis; this.field_y_axis = node.attrs.field_y_axis || this.field_y_axis; + this.x_axis_clickable = node.attrs.x_axis_clickable || this.x_axis_clickable; + this.y_axis_clickable = node.attrs.y_axis_clickable || this.y_axis_clickable; this.field_label_x_axis = node.attrs.field_label_x_axis || this.field_x_axis; this.field_label_y_axis = node.attrs.field_label_y_axis || this.field_y_axis; this.field_value = node.attrs.field_value || this.field_value; @@ -84,6 +88,8 @@ openerp.web_widget_x2many_2d_matrix = function(instance) self.is_numeric = fields[self.field_value].type == 'float'; self.show_row_totals &= self.is_numeric; self.show_column_totals &= self.is_numeric; + self.x_axis_clickable &= self.is_numeric; + self.y_axis_clickable &= self.is_numeric; }) // if there are cached writes on the parent dataset, read below // only returns the written data, which is not enough to properly @@ -343,14 +349,14 @@ openerp.web_widget_x2many_2d_matrix = function(instance) setup_many2one_axes: function() { - if(this.fields[this.field_x_axis].type == 'many2one') + if(this.fields[this.field_x_axis].type == 'many2one' && this.x_axis_clickable) { this.$el.find('th[data-x]').addClass('oe_link') .click(_.partial( this.proxy(this.many2one_axis_click), this.field_x_axis, 'x')); } - if(this.fields[this.field_y_axis].type == 'many2one') + if(this.fields[this.field_y_axis].type == 'many2one' && this.y_axis_clickable) { this.$el.find('tr[data-y] th').addClass('oe_link') .click(_.partial( From b8fb0ef12a2759b00c58d83cf6956b19e1411b5e Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 15 Nov 2016 16:45:14 +0100 Subject: [PATCH 057/103] [ADD] web_x2m_filter (#474) --- web_x2m_filter/README.rst | 67 +++++++++++++++++ web_x2m_filter/__init__.py | 3 + web_x2m_filter/__openerp__.py | 23 ++++++ web_x2m_filter/demo/res_groups.xml | 14 ++++ web_x2m_filter/static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/screenshot.png | Bin 0 -> 14567 bytes .../static/src/css/web_x2m_filter.css | 5 ++ .../static/src/js/web_x2m_filter.js | 69 ++++++++++++++++++ .../static/src/xml/web_x2m_filter.xml | 31 ++++++++ web_x2m_filter/views/templates.xml | 11 +++ 10 files changed, 223 insertions(+) create mode 100644 web_x2m_filter/README.rst create mode 100644 web_x2m_filter/__init__.py create mode 100644 web_x2m_filter/__openerp__.py create mode 100644 web_x2m_filter/demo/res_groups.xml create mode 100644 web_x2m_filter/static/description/icon.png create mode 100644 web_x2m_filter/static/description/screenshot.png create mode 100644 web_x2m_filter/static/src/css/web_x2m_filter.css create mode 100644 web_x2m_filter/static/src/js/web_x2m_filter.js create mode 100644 web_x2m_filter/static/src/xml/web_x2m_filter.xml create mode 100644 web_x2m_filter/views/templates.xml diff --git a/web_x2m_filter/README.rst b/web_x2m_filter/README.rst new file mode 100644 index 00000000..20b9eaf7 --- /dev/null +++ b/web_x2m_filter/README.rst @@ -0,0 +1,67 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +========================= +Filters for x2many fields +========================= + +This module was written to allow developers to add filter buttons to an x2many field. + +.. image:: /web_x2m_filter/static/description/screenshot.png + :alt: Screenshot + +Usage +===== + +To use this module, you need to: + +#. add a key ``web_x2m_filter`` to the field's ``options`` dictionary +#. this key should contain a list if dictionaries which describe a button by the properties ``name`` and ``domain``:: + + {'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', %(base.group_erp_manager)s)]}]} +#. to have one filter being active on form load, add a key named ``default`` with value ``True`` +#. the string in ``name`` is subject to the standard translation mechanism +#. the domain is evaluated with the user's context and the current form values + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Holger Brunn + +Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list `_ or the `appropriate specialized mailinglist `_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_x2m_filter/__init__.py b/web_x2m_filter/__init__.py new file mode 100644 index 00000000..fa85807b --- /dev/null +++ b/web_x2m_filter/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_x2m_filter/__openerp__.py b/web_x2m_filter/__openerp__.py new file mode 100644 index 00000000..d4d88bcc --- /dev/null +++ b/web_x2m_filter/__openerp__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Filters for x2many fields", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Hidden/Dependency", + "summary": "Allows to define filters in x2many list fields", + "depends": [ + 'web', + ], + "demo": [ + "demo/res_groups.xml", + ], + "data": [ + 'views/templates.xml', + ], + "qweb": [ + 'static/src/xml/web_x2m_filter.xml', + ], +} diff --git a/web_x2m_filter/demo/res_groups.xml b/web_x2m_filter/demo/res_groups.xml new file mode 100644 index 00000000..5cd9a741 --- /dev/null +++ b/web_x2m_filter/demo/res_groups.xml @@ -0,0 +1,14 @@ + + + + + res.groups + + + + {'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', %(base.group_erp_manager)s)], 'default': True}]} + + + + + diff --git a/web_x2m_filter/static/description/icon.png b/web_x2m_filter/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/web_x2m_filter/static/description/screenshot.png b/web_x2m_filter/static/description/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..52c8889f86179c7c0c2d980be5e727a43eac1a24 GIT binary patch literal 14567 zcmd6Oc|6tayRP>w5hbN46%h@_WQq)LDw0q#WC)d6$dsAhP#RF?S-q0XGGrzi%vR=^ z%$ZrnmFZlo-*4};_dfe`_IUQ^_@kCJe0`tix$o<~uIs+nldDQ{J876{C@3g)%3r#m zLP4=blY-*6i`2j4nU_B@Qt{swTN!y(YHI4Pe&z2J6h|oJFPu|#jGF3kaNOHcUNM&y zS@-rl4gHaYV~Q8pUtE1dy`9sJ`iR=ezaFq3VW(!N);(Cs{cgeR&u=cmU8ljhP^XW8zxb9?>r{OnM;r0qy;ct=Nns9+XDFo!((E}p*O`$32Q zUwwQ*`5OgA&@&!t{GwxU4$lp<)8Z{Bm^A4rDE`Q=e2Ay2FEVbWpt#DHd4z)Efz8YR z*B^P6`T5J2eRfO~-%SUbsfHf>8#fmm%42eBzpmS23*BMy3$n6CMn)q}J%`2Zetdg< zerZgnBipnoQ1o{Su|Q>hIln{iT{Saq{!WqbZRl3`V1<9en>SmxZR;&|5fu^nVA}Ln zx!1ogQgqa!EKbf}%IPS@cOS(_5n;3DcduN2qo@xGwJuvGA5)R9CuQX?uHn^jU|c>7FiPZD4q~m{o6)`})tt9}RbwCOe#qH%zVe zZ7?1_-1GYU(A>?kl%S7WQni=hr_R8ykE7 z{(Uf)8Vwy?+Ku-EPZ*A?sHk|+GyBR?zit}q?&*2Fm`Y#rVoo z9`4a@o)^aA(P=nLoK_}RuG9U~u@j4wLT1e;Y6J<5@d~+jJ5K9= zd?4EEcvM{6`O~AF%1&|mA1t~)_#HmW_=x9(SNmEnB`u?BnvN5aYlPS>!s(wtAy#S6 z`25L}hKWVrgQAQwLZ*$MO@zLF{(M8-q&v_0(j_1If$n@;zaZn|{=y=b-7BQg*uFgL zLE~7rV_qu*&-n4&jrhyK%)(~WY2;m@^HNJrW25n|Y^PrRQ(r5NN7OLvQ5kV%SRZ@N%d}B+G<5%tw_~w)rEJAF zq+>0k1>9=Jn&yrx>8uhGw56lp57&-4=KD!pFg_J#bfwQ`ym@D&tvCIsd#SMbNc~Ax zi9I(ne2Z&5rEGpEvXMFO1k)AVPTQ+X>L}PtIl$n{r;y;U*_yk zRp6(`yJm3Uxt2X%^xHhyMrE-|UX6&TsJkr(G&D5Wyc$eu^AE?1-JiT1C#%+CrZ#v? z?T-JtmC3!fv_A6|8fMA2b$YphLwlH*?A1g1m!cof_|eU@k9|qiR_ZBS{?XIWe^|UE z&t+M9pyb&zalz{zqxI*>=NBmw{rvgeQ>HcvMs>+nUH4_F=e}kz%J`VZ+F7&|gcPyM z2OPUHdBm%|U|7{LvXeo2vVCEARK!BURIMYkBl@fd|MjmP-K$gFsyrp;qceUBTPrmi z{exg+=T0F63ygvG@ zHr-A>t?YL)-Zb1AX_L6;C^1``6FM3C=e%k5VFRzFYUSX7YrK*1Q!X>bO#AljJ8&TX zUVr%^nkjh&1?^&IdqjI`HL$cBIDYXNF17PwHldU=eWjbLGo^@=P6^kW1$JZeqlDue9AOi05)x`m z(=WYb52@+oCe#xM$_CG#_qop3A$z4(C$ogjThBDAd3bo#1aI5A^-N|^xuL<2be(*S z&r7S^ zH1*UsvT^SH-kI|9t%{mY3j@BrvsM!oRWvafHgB6g+sN?!Jvk~ZxtyD32#fTlu?BYZ}#HwSJ~17x4zl$;zLy&gTP*4Uid z7bE3XVBVI7NJf2-a$n2S`7tr!GF18U^XJb-brEjsi)~_iwO(2=PPV@v^xDpVSg!Cp zY_8VtFTG*XS5h1rs)66@ypIJYYUf(U#Ka(nmuLD2y(veNAN@W&?eckbc_x&jiuml4 zFSD>#mQmfGTc`>gX81x6Njj^RtdqQ%bTf2Xb)D|lMF>B8`c&L?N`(*O+-ti`IR>=;E)uKi= z{JG9lvS}IX@9(ne!^EX}BE-#_pWnf0V7$fa@Y(uaCNe*EzA z+B&~^TgFGyWyx;3Ta)@_M8x>u;2pI-qg&3-&YK(S!=@z5Yiyr^B&e2>&I=|U9-F|l z*0h^ly07<#`Wk6Ilt**V?%iy99_Q-a zeSKY4qg$J##<(_Jj8)sy-)judKPfCsmXHmLh*&;;xpQ!Iv?X7mc)23is_~7PYIC~C z#5>i^=o`gcAFjnE4fa}X_P_BHF^_O^&aZN79m|v`?vCm-JfU^rg4eJDd1pcL?vFQ{ zB08=oD7kHrMjz819$%Xtu>N4xw=tF57m@DZwz&qTRAADP8Sg52&1h!Q zVCL=}`+|cKj{Zm$f@{f7<}A)u#w3R%zmS|(tIN#^@SzX;+Y}4bs9E9ldOJ{ys-uLR0#}}4o z$=bO^YPWg{hKHzjKJsppavT2|sy9i^HI>kChBQ9To!;D@HM$0p(V8mRn|NI^Kf`15 zYfb1E*NqO5-I`m}i`q05$(Zs~Wq>-o+|8Sa;LPBkG;JTiT4H04Ejv#+HO&xQ~ ziFD9zsa?V4%^wsLQ6@hZ#t>^s*AwbHbIg+wdEa`j+-3k^MKsa&fUp6bEE>51nq2- zhK4w~R2mPI5^x_$?t`G{iHX+}V$N9q_3AA9TdkF~d4dO`V`#`=J|&8&RyQp9e2=D0 z`&O65Sgk&r*{b8Qpr93*9HV~wDoZG5`9mg3<(^A~NjPOnybKGwks&E?J-MZHP1KMeYoK1U0XYUeuH7rpz337S)N5iKwWxakeUy2on6AyUE+#Ga` zlY=9O@8-`s(Y_Sm3q3nHd~1rP$J(463h6PWs1uu2FMivy&2GH;Bo~+2RA-JzXtlI# zoHY~|V!O~`CWPapgoI8#BUkWvZMb0J{VA2?mRq-O*@&uKzb<;Wot~AIb?@H22M&x) zPg|ba4-(UYR0<0V+s<(8O0>8=aj5DUBd;@VraAFCR3Vu$Oe$<=L(r7s&CSitPJO3Dlk4Q((9(leTgDRyJGiY^Lr`iUawvOMj!GW)u;)C0Ft z9m*fes(lT`;8&&h8u;?8hI9M&?a-}Q-Rb4eX6JWo`?R^okfJP<}m{31l)hGWuZI^RsZKq|j;J2>3BXTv%8DPt`4U7Cv(1)%nMC z@d}|IG)(4CWaiJ?F8VqCB6cidHW%DYd&76JNRY*5Q)6TKr%#Y0;PD5A&z%`Ak0M0_YF_mnSYjR3QDKkI) zCQ(T9-MtL*d#QN27i{h6^XEEw_g?Gd>6bmE*~gWFvZ|G1Rujt4B$HQAU}Ru$DPUpH zU%FG9Ycnq|&%ns2x6r`~2za-tY)9*zTwEgM+9vG@BU10HYHB6`6<6ft6K@tSffy03xF33Y z5@MyT+?_VooN6v`-?g}eXy@0-JL0u6Pmr!_g1!rSd?{9oAb9#T*sHE%KPB4*un<2yt76rV(dwd zzU?ML5mp`o`*&~!Uyg~9a3X>sW0R(4W~A+YTqT`0{~JNy>^lBzZD?X5@{42cojSz@E8a6xeXxA{!Oihz{ zi_HA(es@D%hwTu&=gyrIvC6BhtqoeeibSs=B095v_&NdTupb<>}J{&^H0o51bQ z8|$m3KgW|n3#r*$-P}r7rwb=HTf!OM)Wy?mx3Zea?R8d2ZjmCXOixck>On!8nwlz2 z#aSTuXBQT_i(PVY{8wL>-zhW>yc~Zz{EAslXC|Sfq-6K6ALIHcO?am7uEj<5I%RF! z$qXz>aG2?(qB~>)F5c2Td2nEOc;Ej0ju2$<_*Pd}L%Gz(5lpzHpv@*XGf8R4Vr{Ep zwUiqIq=~JP?EMB|W=gX6b%Z)V z@)TPS%BrikLX?$|Mj}!2Dzm=&9d`NgjV-R>My7#$U=;_`HY%!g?OZ;D6SN1zai!Yc zSJ<~FTxv-u7W^=7p%TTUr^_lTjtdA}+i-tW7k@dF&kZs^B_$>BxU!UQ8traoW=Oiy z>fN6M1`iHTO}X`#d*fA{PuS)z?IOpyeB040#{y$x_3DrMDD#~-aVfnGUTv?5PzaY= zwOLx-&P2_uk@t5hk~Gr!yxt)b@wm3{wUfAHsql{+y+pEdtQ2@~q?oM{h@R~8{cKE2GkqR#yOD6bxAE`(Pbl1PnuHzT7FORPz2N(U%}$lZ1%RD+L?kL!4mrsuYuKpS|EqLDo{NM7^S z?)P^di_uPZ<|NDdGAn0|9#@L0bf?UMJ%dN@ZoIz@5&k11Z<@3p=^ofSYp|ctj>SjL{p&%kecw=^^QzK1(M<} z8k+I${H*`Ii3-8V0v}+7MtF$29YX^KN$?&$kF_pv?Yii*ZA5b-#RKEL9-ed$;?&c1 zElL`h_wH5w*7F<1ncqAdwmyi{b)EZi`0V{RZ{7rPsd1IEKBl8^6i5H)kQxY2l3Fq& znK##e7QPLV{O@csDcCNKt5ul0xVVh!X%NrP4Scc9`4b<18c64~DeeTmEz1 zs?cK^Ie~$J^NFmupyM9Eh|`Uy*8lMiSiTEc9bNq$448qz7JR0*_Db+&PWe63sqX4H zIr+e2@YF(9c{w>bg@s%6PYv~H$2FJ~6&C~Cqgq~78=Mx?jVy(1`B)lLWzbpZkglF= z@$J>QKmPdRoI}DXXO#b6p15L!(6!`EmtbLBNKmk;t*x!4MR-#kjV3Ikr@K3|qO54W zXZKgM=RQjB_x%bNZgH%sqNfL4rMOc&%J+SUwY0P>D=R~c13X7~V8>`7>0Ng|l%a+l z4UP*(%6R9_fL~V#yK+oEpu4+!!MT`2p0X#p{8GHiK3**${Am**Goekz>#(#-Jzv$f zw6r`4eNCE13vq=?Y%~1IF_P?Q5~nn;2Z%FP>Q1_HM+b`ZMj(&RLpojWrBQ}$Wq=*{ ziYX~P_``5mMMZOuoAMIK-Nug*hV)*F%9$P<@&z`-)u?!Ndi`pNs-RvcwLeV4rT|Hc zHR9tSi_wFJ2;v%PI>3E59i6COhyzmrrp|4;MJT`nBH>Rf1sCP3??Lnda7Na)wt*b-@hYglmLQ-bz2eD% zen-eRYaYN+)psm}W%)rc3djdgQAj%3xNGq$IcPUYO1c52tcvEyr2qsD%JjWa9kYA@ z3_dliPwdB=w{MkjcG!osv^1Nu&c*I{h*AJ0Ae0M)CBemmu?+#c08l`(2XOQhyEya~ zIRUSj&)j>}-GXgj?sb^~l8~LSDg(4F6LbOb?#1+f853e)fW6=_MR_EPor%T4uf7u? z#j2`7-JDL-Re{IbQnf>&8UMQQL_^PwoYnqrDbI^MYzptFaRp1PXyjVn^p!fe$j{F&_NaPF?&8IZva+p7 zY7?P)?wa{F!yu*J^b@VA$ynHp8|~nbL+)lm5#Zve67EYK#$>91`i=ETqopKhTz}!> z#TJ0F#KRM9MfMXR!#cs27eDQiE&@kEQIK?Bb5vDrhUv{xIOU{t7Zn|f4K!s$Zs}6M zUS?)4xhrg5>dAF&r8>90jjI7D<|DMPh{GB#(wy>_6%^)|mPDioh zCE^MIbx{F<2Ad`>zK#i_UY)J?`ir10kJ@d(r3XR%Y{h{P=O1{)@*GLx={8 zlG^Cvw@zvFw;>jRXwm3Wq^DaUpp(>7&8Aa}W1V`FL0$tzIB<;zd23@%^3oO!otL9}M$ zS?P>ht!|S=^m|=&@_f2fW2tQf3VQ5i865FZ8;qqeDarx*ypk7 z1`iy6!8DvOR1HIwX2*_NL=6~#zdr#Y!kZr4+2_d~tT(xkLJPi!l45p-%h^zy&y_G?)yrRTT-xi0T~OMnTcaL0j&=AKhmdw2sR? z4sb%UKw8-@fRy#RE%(6Ph%8;#7ppg>^BD=q$jAU}lmcmF;~K`5d(jI7pb{d4Yd(F7 zLr$9II76;t_wCWnXX3d*fB3MZ{znSZw78glc&S~0TPJZtI@0zmdRxF47#nE6Elji# z)((#!`XFhwOj~_9=)}vQpuMcD9`hrL4i3wxxul0KpjJ_ADZ%r^TpvoEnl7smbgcv9QMaJoZf(+K6T(0!a53>%Qu zK4RhCk&v4@IztC{*4?ouy1CoD)={(+Tzz^st=ULXK0t`sm*i4LOm*?EbJ9w^kCWI! zMQ7*W5UMaRI9L24%)yNz>t1yW$OqG5~dEGpfu$AN_igHYxx1%XI zyZJ@X5UiA;a#t@*RfBUbs$9Vc4QuO@66a3+o!w}qZZN$$bmn31fq(yem5mJJBxDDa zABajWMQ7W(fO_zQYP#s@VP#AgGN z6cQeG68OxcmM^Dua-7lm?rV~qs z!>f^d6kTUOW~SRg5r#-+OC;I0geNTY{!tcXTlz{Vfp*ufz5@GXH4;V`PzVIUM}ZQX zkliqNcFULuF|%DTGcyBu!yH(6P>_(vhO2x4^rkgBxnG_!)zqZvmCx6p-N-0@v)efmR zUdys7klShR-!tWx9ee(4lsJuGVapO-^C3EY7pfae!6V;3>DX_pv{EXR?Z)myc`O5YGiRHW zrGt-WW@dWP!>SV^G)^p%$s(Z#)-r~h-b<+3PPFpoKXl!48z|gtwuoJ#W09zgW~_`1 z3)|0j0n<;HaFE-AON`)}I}eHk`K!&(ZO@959_et1_AFd~ zKhzEDz>?C4=x_t1w^>NzcNUwj>(L~kx7rQ z79luCfOL$6-L^_;rJ9GJ*{OP^8{mOFv~a_6fW)8@2YhAOyvp=5q9(@1OkN z5i&j~D{Nk*!Iv*yd{0S}F-7m#iyq8AfMYuwidpL(!7UJ9EC^H&ZNTM-bQ z5wCD?ssD$Yoo`^zBGHi#iI$148%z~*cg00TXbuyR69 zIYW_^ui`>%J#ZxU3@S(O%J%RDybV_`=lI?igO?&H^8 z!*$7VBB4t?6rP?wgAu02rlw(r zfBeI~j#M_>oUj{LKM9HV2ETEj8(-YgJ$%yYtH2<-ycz9}?Wu~arSy}udR#)~b_ zR-N5)##=C!|3<2ou(Y(aEt+O<^J&gu&*But)RAhY65rcDDD6>W@wY|G`bZ&Vza#$r~h|%wm7;!Y#qgr%!`|9YQ-I)##I&>0?S;UhC zA6!2}(riM|6I7>O=e0O=GV?Uvd6=SXb8+ia(EfN;|Sn znAuk%lU?tR?6#6(GB~mLvGU@RsCI5M#mipN4jB+KFb7v>KkcgUJ*a_tjwYWrui?ql zr%$u9-^NQI^vUSzqHB9}@*j79$@xc0J%!S1hB_*Z$(liQ6PD#mPwC3I2-O5hdgP{i%q;LKnFF+vpDcs8sB8l&SBWDsrRH=d>DpNam;yJUojG&mD*51DQjh z|5s*$^IhIPUpv0{H;}J(3EvsALG!)O%ltFm{|}SIm_w%Qp~4e;caZ&xf1E&O{+pc> z()5)w*Q&1-&kdPCorvo+|1iFh%>vT-=n{k5VX8;K3b#2a7uo8756+0#$ zR2f7_y4**X2K3aHI3z!MS7P>xwH6~r&#oi!L@hcOh7_lI3PlOFXwZzUJhf3f@HAll z*0v+YrI;{;1##3{#s?`6jJirahf*U21%&e@x9F9n*EtB$xIVZS`kdDx-B2ox^v0j@ zm%P(RN3os|cbJy29l7F^R`>SqeSK6*XiPHO!_TNkYWCWY@R~1p_7q?HY09|mX(F(-bLY+|A$GHxJ3Wjc>De;{EiEk^XkEUH51MRlKgSZ(l2pYo z=z<*|MO1>=!|km;DjvWwW+xt4l?^>4A3!$nVQa&!my?qtM2XE;uzF-CNg!I#d~+pM z9mjD-NPBENW_5qpV8WyANG$eR3t7L(NV-q|d*wL<*>Ka_;i@L1TYz3TBxv=*2eTbj zg44?(&jo-%?AEmmZKmnmyg97boEl<=uBOf?QX5Wk5O@3CY9p#NbcF#p0(ZXdARo ze#NCQ_8@H9h@psh01a^g=`0lnhxzh`iYo0#W)44z_8`2wR(U6YaUG$gDskAb)&lXJ|Li{qz@#OslxtWqyI1^ry6y*H zU0M%ZAO*b7&0WTfGztI%1B3UMjH2Po7D}T!*JDm-W)7jLF6+;77>XO&4k2i$_j%0* z{ZmXdnK!?Cc{$z;rsdL-o0}W-6Zn2WU?3h(Ez*03*ExvA(#cTxWsqJ9FyZusFnEAM zXd{n4*mQ5PHZ%xKovoCVRo)=Sni=|k(hr~)c~Io;3yvzYM2vrW%$8AMMP}b#{h4n_ zMqD)rVQ1$84tY3(as6WESN}SGm}w2odj^bNGg!=?lp2d7KRnHDRhblZgr>}*~}v0cuH8<9?6NObxlb#FcIlNBF^2{&rb=urSQH*Pl0`OuJuR3^KmMPF$N?61?DX}lU~9T!DA{aD)P4&5HoO< z$qJjSfZlDCXnfM?7_nP=GU*K(u{IKECAGfLgb76iU8VOXiQw_opB0c;aO=~ynv3}E zNgZCmhytc{)ZQUOnj8;b z>Zljob?-IoaWJ`K9GTgX93$xh@t1>rCZ7@t1L^tsKUFaZ{Av{?{=vi71HDlE6klvQ z`wpYne-wQDZ+xZapMBrR)JE+rjFi})_~?V<*AQ$HJYRlY=qlfTy8H7#^Ytcjk7;mV zfcWakt;)Rg+Xt z?ovqPkhgKxz!S4qzB3E_A0PQI4)^^xor_|c*(Rt2sd*Q9pP#@q8@+Y%Z%k8xQ$AoY z2j(>~of|J!3Q9|tBB00?@xNI8KV6E(bPT^EEI!w9GHZ>w&>O=aR`|>5|CiMEUm?W* j^g{nl3;dt_E9=reO_wzCo-6rc=@jx8l`f>o=s)~lK+=vK literal 0 HcmV?d00001 diff --git a/web_x2m_filter/static/src/css/web_x2m_filter.css b/web_x2m_filter/static/src/css/web_x2m_filter.css new file mode 100644 index 00000000..0d5d3f89 --- /dev/null +++ b/web_x2m_filter/static/src/css/web_x2m_filter.css @@ -0,0 +1,5 @@ +tr.web_x2m_filter th +{ + text-align: right; + font-weight: normal; +} diff --git a/web_x2m_filter/static/src/js/web_x2m_filter.js b/web_x2m_filter/static/src/js/web_x2m_filter.js new file mode 100644 index 00000000..21d2fa09 --- /dev/null +++ b/web_x2m_filter/static/src/js/web_x2m_filter.js @@ -0,0 +1,69 @@ +//-*- coding: utf-8 -*- +//© 2016 Therp BV +//License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +openerp.web_x2m_filter = function(instance) +{ + instance.web.ListView.include({ + init: function() + { + this.events['click button.web_x2m_filter'] = 'web_x2m_filter_click'; + return this._super.apply(this, arguments); + }, + web_x2m_filter_click: function(e) + { + var $button = jQuery(e.currentTarget); + this.$('button.web_x2m_filter:disabled').prop('disabled', false); + $button.prop('disabled', true); + return (this.getParent().o2m || this.getParent()) + .web_x2m_filter_apply_domain($button.attr('data-domain')) + .then(this.proxy('reload_content')); + }, + start: function() + { + var self = this; + return this._super.apply(this, arguments).then(function() + { + self.$('button.web_x2m_filter[data-default]').click(); + }); + }, + }); + var apply_domain = function(o2m, domain) + { + var compound_domain = new instance.web.CompoundDomain( + JSON.parse(domain), + o2m.field.domain, + [ + [ + 'id', 'in', _.filter( + o2m.field_manager.datarecord[o2m.name], + function(x) { return !window.isNaN(x); } + ), + ] + ] + ); + return o2m.dataset._model.query(['id']).filter( + compound_domain + .set_eval_context(o2m.field_manager.build_eval_context()) + .eval() + ).all() + .then(function(records) + { + o2m.dataset.alter_ids(_.map(records, function(x) { + return x.id; + })); + }); + }; + instance.web.form.FieldOne2Many.include({ + web_x2m_filter_apply_domain: function(domain) + { + return apply_domain(this, domain); + }, + }); + instance.web.form.FieldMany2Many.include({ + web_x2m_filter_apply_domain: function(domain) + { + return apply_domain(this, domain); + }, + }); +}; diff --git a/web_x2m_filter/static/src/xml/web_x2m_filter.xml b/web_x2m_filter/static/src/xml/web_x2m_filter.xml new file mode 100644 index 00000000..15d440ad --- /dev/null +++ b/web_x2m_filter/static/src/xml/web_x2m_filter.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web_x2m_filter/views/templates.xml b/web_x2m_filter/views/templates.xml new file mode 100644 index 00000000..421dd643 --- /dev/null +++ b/web_x2m_filter/views/templates.xml @@ -0,0 +1,11 @@ + + + + + + From 70b7da2182667d6dd2c83a3c2b2b1b8566c55429 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 16 Nov 2016 02:33:34 +0100 Subject: [PATCH 058/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d0c6e742..ba41b5d7 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ addon | version | summary [web_widget_radio_tree](web_widget_radio_tree/) | 8.0.1.0.0 | Add radio buttons for records in tree. [web_widget_text_markdown](web_widget_text_markdown/) | 8.0.1.0.0 | web_widget_text_markdown [web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.1.0 | Show list fields as a matrix +[web_x2m_filter](web_x2m_filter/) | 8.0.1.0.0 | Allows to define filters in x2many list fields Unported addons --------------- From 4493f1351dc41118e424a0bcbd730227bb7234eb Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 16 Nov 2016 04:40:37 +0100 Subject: [PATCH 059/103] [ADD] setup.py --- setup/web_x2m_filter/odoo_addons/__init__.py | 1 + setup/web_x2m_filter/odoo_addons/web_x2m_filter | 1 + setup/web_x2m_filter/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_x2m_filter/odoo_addons/__init__.py create mode 120000 setup/web_x2m_filter/odoo_addons/web_x2m_filter create mode 100644 setup/web_x2m_filter/setup.py diff --git a/setup/web_x2m_filter/odoo_addons/__init__.py b/setup/web_x2m_filter/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_x2m_filter/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_x2m_filter/odoo_addons/web_x2m_filter b/setup/web_x2m_filter/odoo_addons/web_x2m_filter new file mode 120000 index 00000000..7af50cb7 --- /dev/null +++ b/setup/web_x2m_filter/odoo_addons/web_x2m_filter @@ -0,0 +1 @@ +../../../web_x2m_filter \ No newline at end of file diff --git a/setup/web_x2m_filter/setup.py b/setup/web_x2m_filter/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_x2m_filter/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From bdb3b582a43868c84e7759231160ff72895d58f2 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Thu, 17 Nov 2016 11:20:01 +0100 Subject: [PATCH 060/103] [FIX] spurious dirty flag --- web_x2m_filter/static/src/js/web_x2m_filter.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web_x2m_filter/static/src/js/web_x2m_filter.js b/web_x2m_filter/static/src/js/web_x2m_filter.js index 21d2fa09..dc5efcc6 100644 --- a/web_x2m_filter/static/src/js/web_x2m_filter.js +++ b/web_x2m_filter/static/src/js/web_x2m_filter.js @@ -49,9 +49,12 @@ openerp.web_x2m_filter = function(instance) ).all() .then(function(records) { + var original = o2m._inhibit_on_change_flag; + o2m._inhibit_on_change_flag = true; o2m.dataset.alter_ids(_.map(records, function(x) { return x.id; })); + o2m._inhibit_on_change_flag = original; }); }; instance.web.form.FieldOne2Many.include({ From 3ab676daacf46bdb56461a1137b2c0ab033e1622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Sat, 19 Nov 2016 14:07:01 -0300 Subject: [PATCH 061/103] [IMP][8.0][web_dashboard_tile] Refactor (see changes in description) (#476) --- web_dashboard_tile/README.rst | 29 ++- web_dashboard_tile/__openerp__.py | 2 +- web_dashboard_tile/demo/tile_tile.yml | 4 +- .../migrations/8.0.3.0/post-migration.py | 13 + web_dashboard_tile/models/tile_tile.py | 241 +++++++++++++----- web_dashboard_tile/security/rules.xml | 11 +- web_dashboard_tile/static/src/css/tile.css | 43 ++-- .../static/src/img/screenshot_dashboard.png | Bin 45633 -> 20441 bytes web_dashboard_tile/tests/__init__.py | 6 + web_dashboard_tile/tests/test_tile.py | 52 ++++ web_dashboard_tile/views/tile.xml | 89 +++++-- 11 files changed, 360 insertions(+), 130 deletions(-) create mode 100644 web_dashboard_tile/migrations/8.0.3.0/post-migration.py create mode 100644 web_dashboard_tile/tests/__init__.py create mode 100644 web_dashboard_tile/tests/test_tile.py diff --git a/web_dashboard_tile/README.rst b/web_dashboard_tile/README.rst index 821a4c70..daa3a2eb 100644 --- a/web_dashboard_tile/README.rst +++ b/web_dashboard_tile/README.rst @@ -1,17 +1,22 @@ Dashboard Tiles =============== -Adds a dashboard where you can configure tiles from any view -and add them as short cut. - -* Tile can be: - * Displayed only for a user. - * Global for all users (In that case, some tiles will be hidden if - the current user doesn't have access to the given model). -* The tile displays items count of a given model restricted to a given domain. -* Optionally, the tile can display the result of a function of a field - * Function is one of sum/avg/min/max/median. - * Field must be integer or float. +Adds a dashboard where you can configure tiles from any view and add them as short cut. + +By default, the tile displays items count of a given model restricted to a given domain. + +Optionally, the tile can display the result of a function on a field. + +- Function is one of `sum`, `avg`, `min`, `max` or `median`. +- Field must be integer or float. + +Tile can be: + +- Displayed only for a user. +- Global for all users. +- Restricted to some groups. + +*Note: The tile will be hidden if the current user doesn't have access to the given model.* Usage ===== @@ -36,6 +41,8 @@ Roadmap * Add icons. * Support client side action (like inbox). * Restore original Domain + Filter when an action is set. +* Posibility to hide the tile based on a field expression. +* Posibility to set the background color based on a field expression. Bug Tracker =========== diff --git a/web_dashboard_tile/__openerp__.py b/web_dashboard_tile/__openerp__.py index c438143a..8a1dd6c7 100644 --- a/web_dashboard_tile/__openerp__.py +++ b/web_dashboard_tile/__openerp__.py @@ -5,7 +5,7 @@ { "name": "Dashboard Tile", "summary": "Add Tiles to Dashboard", - "version": "8.0.1.1.0", + "version": "8.0.3.0.0", "depends": [ 'web', 'board', diff --git a/web_dashboard_tile/demo/tile_tile.yml b/web_dashboard_tile/demo/tile_tile.yml index 6b23b71b..dd9da016 100644 --- a/web_dashboard_tile/demo/tile_tile.yml +++ b/web_dashboard_tile/demo/tile_tile.yml @@ -36,5 +36,5 @@ name: Currencies (Max Rate) model_id: base.model_res_currency domain: [] - field_function: max - field_id: base.field_res_currency_rate + secondary_function: max + secondary_field_id: base.field_res_currency_rate diff --git a/web_dashboard_tile/migrations/8.0.3.0/post-migration.py b/web_dashboard_tile/migrations/8.0.3.0/post-migration.py new file mode 100644 index 00000000..7cfcc1c0 --- /dev/null +++ b/web_dashboard_tile/migrations/8.0.3.0/post-migration.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# © 2016 Iván Todorovich +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + + +def migrate(cr, version): + if version is None: + return + + # Rename old fields + cr.execute("""UPDATE tile_tile SET primary_function = 'count'""") + cr.execute("""UPDATE tile_tile SET secondary_function = field_function""") + cr.execute("""UPDATE tile_tile SET secondary_field_id = field_id""") diff --git a/web_dashboard_tile/models/tile_tile.py b/web_dashboard_tile/models/tile_tile.py index eaadae95..fcaad591 100644 --- a/web_dashboard_tile/models/tile_tile.py +++ b/web_dashboard_tile/models/tile_tile.py @@ -7,6 +7,7 @@ import datetime import time from dateutil.relativedelta import relativedelta +from collections import OrderedDict from openerp import api, fields, models from openerp.tools.safe_eval import safe_eval as eval @@ -14,18 +15,52 @@ from openerp.tools.translate import _ from openerp.exceptions import ValidationError, except_orm +def median(vals): + # https://docs.python.org/3/library/statistics.html#statistics.median + # TODO : refactor, using statistics.median when Odoo will be available + # in Python 3.4 + even = (0 if len(vals) % 2 else 1) + 1 + half = (len(vals) - 1) / 2 + return sum(sorted(vals)[half:half + even]) / float(even) + + +FIELD_FUNCTIONS = OrderedDict([ + ('count', { + 'name': 'Count', + 'func': False, # its hardcoded in _compute_data + 'help': _('Number of records')}), + ('min', { + 'name': 'Minimum', + 'func': min, + 'help': _("Minimum value of '%s'")}), + ('max', { + 'name': 'Maximum', + 'func': max, + 'help': _("Maximum value of '%s'")}), + ('sum', { + 'name': 'Sum', + 'func': sum, + 'help': _("Total value of '%s'")}), + ('avg', { + 'name': 'Average', + 'func': lambda vals: sum(vals)/len(vals), + 'help': _("Minimum value of '%s'")}), + ('median', { + 'name': 'Median', + 'func': median, + 'help': _("Median value of '%s'")}), +]) + + +FIELD_FUNCTION_SELECTION = [ + (k, FIELD_FUNCTIONS[k].get('name')) for k in FIELD_FUNCTIONS] + + class TileTile(models.Model): _name = 'tile.tile' + _description = 'Dashboard Tile' _order = 'sequence, name' - def median(self, aList): - # https://docs.python.org/3/library/statistics.html#statistics.median - # TODO : refactor, using statistics.median when Odoo will be available - # in Python 3.4 - even = (0 if len(aList) % 2 else 1) + 1 - half = (len(aList) - 1) / 2 - return sum(sorted(aList)[half:half + even]) / float(even) - def _get_eval_context(self): def _context_today(): return fields.Date.from_string(fields.Date.context_today(self)) @@ -46,70 +81,127 @@ class TileTile(models.Model): background_color = fields.Char(default='#0E6C7E', oldname='color') font_color = fields.Char(default='#FFFFFF') + group_ids = fields.Many2many( + 'res.groups', + string='Groups', + help='If this field is set, only users of this group can view this ' + 'tile. Please note that it will only work for global tiles ' + '(that is, when User field is left empty)') + model_id = fields.Many2one('ir.model', 'Model', required=True) domain = fields.Text(default='[]') action_id = fields.Many2one('ir.actions.act_window', 'Action') - count = fields.Integer(compute='_compute_data') - computed_value = fields.Float(compute='_compute_data') - - field_function = fields.Selection([ - ('min', 'Minimum'), - ('max', 'Maximum'), - ('sum', 'Sum'), - ('avg', 'Average'), - ('median', 'Median'), - ], string='Function') - field_id = fields.Many2one( - 'ir.model.fields', - string='Field', - domain="[('model_id', '=', model_id)," - " ('ttype', 'in', ['float', 'int'])]") - helper = fields.Char(compute='_compute_function_helper') - active = fields.Boolean( compute='_compute_active', search='_search_active', readonly=True) + # Primary Value + primary_function = fields.Selection( + FIELD_FUNCTION_SELECTION, + string='Function', + default='count') + primary_field_id = fields.Many2one( + 'ir.model.fields', + string='Field', + domain="[('model_id', '=', model_id)," + " ('ttype', 'in', ['float', 'integer'])]") + primary_format = fields.Char( + string='Format', + help='Python Format String valid with str.format()\n' + 'ie: \'{:,} Kgs\' will output \'1,000 Kgs\' if value is 1000.') + primary_value = fields.Char( + string='Value', + compute='_compute_data') + primary_helper = fields.Char( + string='Helper', + compute='_compute_helper') + + # Secondary Value + secondary_function = fields.Selection( + FIELD_FUNCTION_SELECTION, + string='Secondary Function') + secondary_field_id = fields.Many2one( + 'ir.model.fields', + string='Secondary Field', + domain="[('model_id', '=', model_id)," + " ('ttype', 'in', ['float', 'integer'])]") + secondary_format = fields.Char( + string='Secondary Format', + help='Python Format String valid with str.format()\n' + 'ie: \'{:,} Kgs\' will output \'1,000 Kgs\' if value is 1000.') + secondary_value = fields.Char( + string='Secondary Value', + compute='_compute_data') + secondary_helper = fields.Char( + string='Secondary Helper', + compute='_compute_helper') + + error = fields.Char( + string='Error Details', + compute='_compute_data') + @api.one def _compute_data(self): - self.count = 0 - self.computed_value = 0 - if self.active: - # Compute count item - model = self.env[self.model_id.model] - eval_context = self._get_eval_context() - self.count = model.search_count(eval(self.domain, eval_context)) - # Compute datas for field_id depending of field_function - if self.field_function and self.field_id and self.count != 0: - records = model.search(eval(self.domain, eval_context)) - vals = [x[self.field_id.name] for x in records] - if self.field_function == 'min': - self.computed_value = min(vals) - elif self.field_function == 'max': - self.computed_value = max(vals) - elif self.field_function == 'sum': - self.computed_value = sum(vals) - elif self.field_function == 'avg': - self.computed_value = sum(vals) / len(vals) - elif self.field_function == 'median': - self.computed_value = self.median(vals) + if not self.active: + return + model = self.env[self.model_id.model] + eval_context = self._get_eval_context() + domain = self.domain or '[]' + try: + count = model.search_count(eval(domain, eval_context)) + except Exception as e: + self.primary_value = self.secondary_value = 'ERR!' + self.error = str(e) + return + if any([ + self.primary_function and + self.primary_function != 'count', + self.secondary_function and + self.secondary_function != 'count' + ]): + records = model.search(eval(domain, eval_context)) + for f in ['primary_', 'secondary_']: + f_function = f+'function' + f_field_id = f+'field_id' + f_format = f+'format' + f_value = f+'value' + value = 0 + if self[f_function] == 'count': + value = count + elif self[f_function]: + func = FIELD_FUNCTIONS[self[f_function]]['func'] + if func and self[f_field_id] and count: + vals = [x[self[f_field_id].name] for x in records] + value = func(vals) + if self[f_function]: + try: + self[f_value] = (self[f_format] or '{:,}').format(value) + except ValueError as e: + self[f_value] = 'F_ERR!' + self.error = str(e) + return + else: + self[f_value] = False @api.one - @api.onchange('field_function', 'field_id') - def _compute_function_helper(self): - self.helper = '' - if self.field_function and self.field_id: - desc = self.field_id.field_description - helpers = { - 'min': "Minimum value of '%s'", - 'max': "Maximum value of '%s'", - 'sum': "Total value of '%s'", - 'avg': "Average value of '%s'", - 'median': "Median value of '%s'", - } - self.helper = _(helpers.get(self.field_function, '')) % desc + @api.onchange('primary_function', 'primary_field_id', + 'secondary_function', 'secondary_field_id') + def _compute_helper(self): + for f in ['primary_', 'secondary_']: + f_function = f+'function' + f_field_id = f+'field_id' + f_helper = f+'helper' + self[f_helper] = '' + field_func = FIELD_FUNCTIONS.get(self[f_function], {}) + help = field_func.get('help', False) + if help: + if self[f_function] != 'count' and self[f_field_id]: + desc = self[f_field_id].field_description + self[f_helper] = help % desc + else: + self[f_helper] = help @api.one def _compute_active(self): @@ -135,19 +227,28 @@ class TileTile(models.Model): # Constraints and onchanges @api.one - @api.constrains('model_id', 'field_id') + @api.constrains('model_id', 'primary_field_id', 'secondary_field_id') def _check_model_id_field_id(self): - if self.field_id and self.field_id.model_id.id != self.model_id.id: - raise ValidationError( - _("Please select a field from the selected model.")) + if any([ + self.primary_field_id and + self.primary_field_id.model_id.id != self.model_id.id, + self.secondary_field_id and + self.secondary_field_id.model_id.id != self.model_id.id + ]): + raise ValidationError( + _("Please select a field from the selected model.")) - @api.one - @api.constrains('field_id', 'field_function') - def _check_field_id_field_function(self): - validations = self.field_id, self.field_function - if any(validations) and not all(validations): - raise ValidationError( - _("Please set both: 'Field' and 'Function'.")) + @api.onchange('model_id') + def _onchange_model_id(self): + self.primary_field_id = False + self.secondary_field_id = False + + @api.onchange('primary_function', 'secondary_function') + def _onchange_function(self): + if self.primary_function in [False, 'count']: + self.primary_field_id = False + if self.secondary_function in [False, 'count']: + self.secondary_field_id = False # Action methods @api.multi diff --git a/web_dashboard_tile/security/rules.xml b/web_dashboard_tile/security/rules.xml index 8d653b70..05637bfd 100644 --- a/web_dashboard_tile/security/rules.xml +++ b/web_dashboard_tile/security/rules.xml @@ -6,7 +6,16 @@ tile.owner - [('user_id','in',[False,user.id])] + + [ + '|', + ('user_id','=',user.id), + ('user_id','=',False), + '|', + ('group_ids','=',False), + ('group_ids','in',[g.id for g in user.groups_id]), + ] + diff --git a/web_dashboard_tile/static/src/css/tile.css b/web_dashboard_tile/static/src/css/tile.css index 5649c188..0620a9c6 100644 --- a/web_dashboard_tile/static/src/css/tile.css +++ b/web_dashboard_tile/static/src/css/tile.css @@ -5,44 +5,51 @@ border-radius: 0; } +/* Disable default kanban style */ +.openerp .oe_kanban_view .oe_dashboard_tile .oe_kanban_content div:first-child { + margin-right: inherit!important; +} + .openerp .oe_kanban_view .oe_dashboard_tile .tile_label, -.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_without_computed_value, -.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_with_computed_value, -.openerp .oe_kanban_view .oe_dashboard_tile .tile_computed_value { - width: 140px; +.openerp .oe_kanban_view .oe_dashboard_tile .tile_primary_value, +.openerp .oe_kanban_view .oe_dashboard_tile .tile_secondary_value { text-align: center; + font-weight: bold; } -.openerp .oe_kanban_view .oe_dashboard_tile .tile_label{ +.openerp .oe_kanban_view .oe_dashboard_tile .tile_label { padding: 5px; font-size: 15px; } -.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_without_computed_value{ - font-size: 52px; - font-weight: bold; +.openerp .oe_kanban_view .oe_dashboard_tile .tile_primary_value{ + font-size: 54px; position: absolute; left: 5px; + right: 5px; bottom: 5px; } -.openerp .oe_kanban_view .oe_dashboard_tile .tile_count_with_computed_value{ - font-size: 38px; - font-weight: bold; +.openerp .oe_kanban_view .oe_dashboard_tile .tile_secondary_value{ + display: none; + font-size: 18px; + font-style: italic; position: absolute; left: 5px; + right: 5px; + bottom: 5px; +} + +.openerp .oe_kanban_view .oe_dashboard_tile .with_secondary .tile_primary_value{ + font-size: 38px; bottom: 30px; } -.openerp .oe_kanban_view .oe_dashboard_tile .tile_computed_value{ - font-size: 18px; - font-weight: bold; - position: absolute; - right: 10px; - bottom: 5px; - font-style: italic; +.openerp .oe_kanban_view .oe_dashboard_tile .with_secondary .tile_secondary_value{ + display: block; } +/* SearchView Drawer */ .openerp .oe_searchview_drawer .oe_searchview_dashboard .oe_dashboard_tile_form { display: none; } diff --git a/web_dashboard_tile/static/src/img/screenshot_dashboard.png b/web_dashboard_tile/static/src/img/screenshot_dashboard.png index 9cbdeecd3d601ffbea9c197ed5c71d2480371613..65cfc12753e9f451d432ff0cb54c85d3ff459a1f 100644 GIT binary patch literal 20441 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 GGywqSdE~|b literal 45633 zcmb??Q*>rQ({60r$;5fXiEZ1qZQHhOXJR{<*tTukXTFR7`_DSp=UHp--QBwyRTtgW z-A_fx%ZkCn;J^R@0l`a%3o8Nvf#Us37eYb&dr#0$#Q*z%ISEQAL;Zs{lyUgKJhZ*I zh7%AF!r*@%;1p^E+<%4G&LZm0N_M8sZU&AfKxVdfHYT)AMvf*Xwoc}D&NraFyg)!i zKoY_N%I?{hIcDzYOUwQ{8A=O6P{FCQf_4ys6le+L!f5i=lz}fW;j8@JP=U1J;9$ai zjuil+6%g^1ZLgaGFc2_7Psj7*o004!QxtiN`>79Z5BAA5udC*lKaJ12Or21bm6fOe z7dAl#xvKqR|BLDFC<6Qc`#)oJ2>syj@HRA$^LJjI@mQi^?}CloiK=4u)tPIV6ZM== z?sSgeiwCD$;Qr+`A~0lMq6mdu1taGVU&NKtLx;t)x03hCpP~mfi+k@e{L7DI__JE^q`pm76#!kBX1*;Z;q-u(J-U% z>u@rKjsv$o%bifU4|}*d+TVH37!`3;7f3xxkoso|ghI~jp)E2DFNFRkPgHQ@@TpE| zOCPR9#e|1ta$!ujb97D7k;IiAVg&f_$gqgTzqSJJH&1*IW5P6%(9uOMkhvUI+3s)3 zDGLh;OlYOmL=<2p&`KP3|Sk|+5FTi^k=%Gr2q7S*sE8n z_?km+$cf;_;7Yk&1)mh}=yGGyaxQC=7{|1AN zxrKN47oE~GSo~}>reZU9bJObn0Tan({$4?jr;CE~B8?(j;ZB1iZZnp(9yeGdr`X_y z-HXa~jUHvIkS6&sGj6=>f;pO)Z}q`4{T(IAf~TAe3jO;7l&;O<=t~0($vc3i4@?ls z9{e6r2v4*JCtYOI7aizFGCg=m9#HC zxY|>M@d%(kxvtX_lqwdV|CI&z8lErTcVE{gyUTU?ixJU6Ee5^P$dz25s|)A55$EnK z4_P->6wr?e!(RtvON4)meq-Hj$9BGy676|Tn|kujjoPLdvD4u1przW#bqzVpgB2>E zVkhYlxV!uMhhE*MANpuxu1v_pTRJVGTp=LJ5nb?)D42jqx5UvGIvfOY5fBj(PBc`Y zJU`)_Pw1M^$M3y-Q?hULDusTB++d-L^tWTqWxR|D#9G$Aw8RU2hVWcSXpq9Y>6H&x zl9FtL)v5`N#N&2-27j(FRIg_y%NeQ`c)vvYbuEVNKdi`T&p%BuCTV1pT46o3)CR1j z@)eR)0DwWTx;KAafF~rRAVed@FoS>pN|9X8yA-xJi|a3k5f=Qfi4cYUjL8htJ84|P znR~HZ!#97VPpS%pKve`FQHJ-xcqg+9AKV1GKl=QQY#Paj|3(nNltMy%@^C(`Vx8UT zuOSy^&@p}UGVD-yQbhIXxDLE`<^J3cHMwsBSgGP~Q%;d@M3(3AbAte$LtTe47qTkI z=Y3v~zJ5ltyP5UY)jzUSZpb@XoOY3RH^lF~evhrrVvuM(ORQZe*D_A;&luI!3<|BY1OW66G-+y0kO- zJFaT|)BP(>wGG!ccZDNu=vSUZIREWkZ9QRP-)18D z#Qs^2B~Q)@;Zgsb4Fk~lC$xG)%?VJy*l43;((TX4Js3+!Ghy^nAp8&3wq{e<>%v_& zS5K^j4*;m*&$l^Drwv=Jh_J#?ZZLH0XtHCE+_x95p;$n!_B}7JRRoHsVIs%S9kpCUY)Ka zcn-E%)AplqqHPa7zYTfC*Q1c%nsvxn1CY2ciATIKBwqN9xpUszGxRcsM#EDN9w2}W zOqM(~t6TM9_&^L z&Y&PmTlyi{dETU!i#NrypohGBKH4J)H2He~_fHV$471lk$8eFdgT>bZO}PgNtrtxB zF4#CL&wGlYd_;wu!m2XK9(6fE;|Z+iO$n!%X2-@Y$E1hU#9Jgb!D8dy-G4{>Aaj&s zniOi2#*1w*j9Vk9a+0v>M4asJ@@Pslcc_a^O7GR1n}gLhCZoYH@6lP*rY~j4L!Dh` zE&m{{MG)uwYiK3;?cFOOxB4o0#by3TgoJB4Gvm_^6W(gAd~`5zd?7-Vuc9__q=QnB%0`t@lYv-3w3SnMYliDD@E;a z{SdG^6z&6uVG-k{>j1A2=`wPjVxx#rpk-uwqp@(`DRIVl+r_yc0!SBb)iHIxBx~wM;uh?fjLD^#f z0xO)E)j+JVZhYPGc*Kz3hqU+m;=t>jE(o1pm5$vq>`$Jkp$`L!(8O^1&MV5!gVwEI zHE8Ma9@cd);e*=;13;69R&C{gtqb?q^ob|?uSqTX@Eg9Vzp;k zSP-v?vd(_Sk#mVFkWe;ScfOjKjiBZ@a6ww}-8=h_)A4@ywf=MeZiH`vvlQHd*!!2Q zlZjt;cO$pj-Jr_Ut&H!Q|BJ$pgyq03w^AW!bhKtt+P;YV=Q7~|j?Y$aR4cBjWaO1( zHR*VP4G>vQ4*K@(cW}B>0o`w?jhz>mL{&&djE7G zH(xD-rl3%L`h00_dLujG6IEhLaM=07Es}xVGNr7Sr3EK zl8tBWni8ISbAMFk;EnY{lYoINATP1Q6{axbOhV2XSzd11WnFf|_{xaMMS9vsOEG4Y0On|+a20XW9uDvx$Cg)e#(WvpX1w-KdjSCp@mB=~q zE#C2)ahR`>;YwVPo#pxG1l9B1J+*+sd0Swp81)u!=ch<>9*U|mX59ZpgSfnVY-Ji& zygC9cHo-rtN3cWM{x&kzcK%g%JeJY@gCzvvCsc)PVXVg`c(Pg%{PLMnt7cnZ_JbY# zk|~lFhfq&)29w118W74;ruY`|)^%$I$jIfL%5hAHaELPBcKg@6-kkTKXDPnpi7aMP zW9|JCMO64TPs;h1ukmW+;{J!0fUpBQ&sQ~KKrzW7Y2X(Q3qiQa`-a^8TsW3xrVLSE zGYKR%t2dnsL9V3xr85rPd(50wV?DZs*IyTxZcKSPTf=e3sS}q>)&w;p5C$05+p4|; z)Dfm8Bcn_<=EU^EEwClugpwk?5|tFzSJ)S1jBhN&-kw0CTu6=kp*#zcf9{=oBt3?Y z)D8qb6iQ*aycO2LvMEs~3YK0cc=w7q@6F&S0@yGO35ySWPRO}>NR2najcCtnlGyaZ zq~l)yp4F9j)OO>Vwt%6vs?dH4665Vj99!46}8*NR_OC^J5w?q+(%T{E4-- zlYn@Pyyn~5S|eYWh8<WMp3zq6ucL6)Nsuo>_QYe}C942@nS1gPlUS zGLuo|CIOdNJvd~&AtbQul)io5Fc)<(#+SA}`GDP07JK~7sH@I2eK(Nh40bd zU_3j#e(h!eZ>rTQs;`*mfsP=CpZE|mq0)5{8@n$8P0qK_YEjH@tl0egqh_e}$3knO zD5Fu5?S2zTBPL3EOVsU#6rI%r*nKpHSE%z)BvULA8lbYh0O0)F8kN%a;-y zc`Vuu)yL8&oLGgN2H~;9jk>6U8+@_5W_{KEHzjYk`(dk_`Ze3h{Jo@#h_<3QA8^Mw z7f8e~z>b z6x@F?wO82hK7?~W@S)0ukMzamc&2XhV)7LqhPt#(nT!biLU!iC{^D%OwJN5qw)s-! z{aEphHDWRrUZWo)c&0*+04Z@;1{c>^e?pRZV(hH*gx_uTt!FQFt+Pf-%B-WJZuxt{ z7n-jXP|*5_Y}&Hjm*}}W-3q&Q5EYv$X}*)!yZyNOV)39kP3d_wO8)9U!^Qe|oftaj z>`JifKV$h(216E`2amfFxff0j>`wq`Km|kY*N$}K!v>?=l?FA#a2lRAS`@&BD=|k? z33wzi)A)I?vu0mSMbBd`RsCnFi7rgHl-Y3k@l2;S=ij+<2i_5xPe3|hkK`unKd;Z+ z$+kODZXIevGxpm_GeCtRS-PP7jC$Vg8KjWGtO!6wCpuM$qh5N&NV@$X*LbnEYvOsd z{(4X;pucE&LQHo45OvKpM#D+$E~Q~UScUSd=e#>3N*WD3lMKdmji$(b{3d5i!Y=YN z*5=lSD>bdl8Cpn7(f0!3UBX2=a7t`$`RZDIfjYPln=cUHz*&yXS9!>Eegxjs5Lc69 zFn%O&Y5!Gh$)fpYTz7KHVJag%qFv2bM2+q}|Hqj8_I#ojqt?m>c#n|pNV3n@5^@9> zZjO6}3<{Y7zz6^l6lc!+{wB#U+!u7oIjXXayFG`PIuU7&BX#-URh4m1TC$>V@VV$M zPva6fWw7J+jBaSIL^hQnyE}x~zIlM2+83L162zmbjWr&Zpj`Oi^X6uU;oGzCp^_#B zftdM`yO+pgr#s?bLofy7w&P3g?&2WL1uXgWd&C6s$>cxC@yoL>NeY}dFMKk3gQ;-R z>;*|?y}2ziVCbS!?))L?meezTx+jZ1Z;LCIiNe}>gh?WB4^{X8a`HG&l{MJAeUWc*>lg=8M4R zYGLaBiBdnOKQ0;#d=cvI=rPvWcqQH>Q>wAu9}op~jE#ivTM-PWLLU{#Vz~x+0+f#k z@PJ#gwgkbTx|Qow4y>jiHa>oQX!MqnUHS0yWcHtM1&wAA8<$=rhpjz%VYYm32YvuC zW?Oe(%EdefG}Yv1XjDL$c$B9Eu371~D@AoVqDAwpH+XB&WQjr;qIbp4#hGC~8%~7g z(hwfj>Hw6Iz_X0jx@c3=s6pA+yy${qrLsRWVSMp7>TWNNyJH1jO#PO7*i8WDD6dph>@}X5=ey!5bGK2837L+W_~vzu`&IYT-hO4+=j_c4{c*Z z*=T)K&D))1LQ%ho*1q8^Dj>mO^< z^-AxkWt(*4i9UC7o%ML5>)_Lqn811`t@hm!d}*#~rw1WI{`EVGk(!T$0zdkSV(vUj zuHt78Z@otzyv?84h_;^IZzuY}^R`sQG>_^E9R$@z$e_bChI`Oup4^ApwP*jw%(Gt<^ku*IyW=fsx? zS-Y_2;lfJ63I0!N?aMl{u-yqRe_F-HYL6+p*7Ar2FTE2XSFL)*atmzrgq5pWrGZ%oD}5N5 z8%z?0{o$B{;Wnza!YeKOC#Uc9=a27r7^>;-n-Ty&@k5!-!TvOTx-Z=A&E%nsmU_1*>;<2tM&Jyn zU?-zPzk9BgRt^vz>9s~bA``E{;w;74YBBm3?*@NE@qULRa9-%#;A7s<4YluKn23`{ zBWs@s0y#U(Bqb791~qjLjljy4afI8zVpLW@_@%x1S2c@2Qa?f@th_)A6iROHn#P(MWO!6vk)e zZ+HE~0AaH^efNrg>CL3wseCP=N@l&UzHhl53)VI|?al?g<2Ux#YIny7r7F$)@8Mdb z#=R>#QNo!~3v#a|%)v8ofKIxTC-q0H_0gzWHRTyX6nf`xtAi1^Gvyp2yzH%}z_S~_ zNmw4jGF5$8g4Y>{L{jvPH(2#7(FKQ7>t{mk!AhB(J6%wjR{RnCa`1CnhilG`(n`0u zna&D3cDNqm9{!ds+0qR-a15PxeiskktTtD5V({G_&c{EV1dCNz6OaqNA*1guC}JJ<19H+d-XE}2@m(8?JQEki zHEtIqM7i5@f*>8+_8-L+zT_Q_BhV+ayJKr4YLFze7GBFpfC}xPMEkD9`;S1#^x_T_ zoB4pEi1z%f`Bs2%p2eVB>sH_kOgiMdGcqP{o#YX;|Ee!!aiQ#djN325mw;NLAc2ix zGmZi*Bz5h7RoTk~_!|rdkG?FqlhNu}6Ne$#9nYuV1 z2_K1;g2;?Drd#tn08>?&4xHMrDR=B`$QwQT_BSFf&FmYsr;t&-x7b)of9%Kjewk1deT+Gn?N8EvYU4-|j7qfE6Z6aRTPip#Zv4!*uH4%_y9nOb(XJc*ftx75y*=i&1 zw$TWHJcq`*QtLYxGbXy6QFfp@90QZbTfatSnbV1-1k z&RUqXFFgHLRpDLC6gBhrhyE_a58BAmXrCM|s8(}ed2BHvMQni<9gIcNOws&RN3AkUR#6V_ z+sFt&v8+Gn;_PC+7r;?joF8jHtDGz70k=odo?EC_wUgQ6XR9@k!quKi=FM zxZG}w{h87kobg&%{hYgqHt)>j*wQuIj-Hy#X-pQt=QW<0PSSRD*Hot3wCG^hDXbZ3 zKlF~DU+x?@*&6g0>enRmw=8y)mo%8G(dXpZ)!{6XxjEZm$&x`J0ri90!(L*VMZe51 z1ySR--}6x~+zomT1>+Y%OBCn^v(ztGi+{VR0jul`wu}JNpbyF{FBxjh_f{N*O~eb= zF51oIH8qxC+Ga#-HT9N5M`hFp@Ap3?(O35!OIn5?4akH5BfXNJf8LSn+KtrdzfRMHYivlLC1a-r)n^}Hn^9lwguNy z&!{P?N*XV{+)sWND*&-{mjY22tZYL3=usX_M?&MiAehGx%1d+Ls?z^7h5p`-1|g-g zR{?I7yjJoAMo)@QqeK-~;a3d?0kwj@=h>Kh7Nq_jDoLSf6p#FKG~v}s8V|gRUgyqK z1v17M4wL+(jRKCYC(-C)73Z*cp#Y73wUwg))GCLq-n^NWLyA4G%uoptxnU#6FS`8# zis?q?)NE)L=(#x1DhemiY}j@aVOD-?4#y>DQa~Uf2%SFJ^R2g6Oe0X=UGY9kMDw6~ zv`bYT^MGj}JakT{yW%Xx&PtNp20h6Kq@q%LkBDQro#;j(-rgi@#V_y)Uy+J2hx<=v?=U11^+G-OxIgtVJVCa(6Z_&s~1RQAT2l z;)tJ-Wx1ImASM>?qXTfKUm(vJwM=KhWij`^w8hkxv~wlNn+VVO@X`OI0F+{c@RFw+ zPUDkg=RgWiz5y9#r+n^YS=l96uM&K@ck3xc0o1U?H1aa-wB`Dwtq&q1$&LLf(2@ly zjFpKqV^q0k7DH=!5kx|)ZH(M+_g9MKW0a6V7KNud?6i z%0rDv+QLomhU#v8NvrVJ((#u>osxAtDaj;|uiyEo1==?6ZU8x9VJhNESK<~o+#b(s zoo&8@-C3##<{y?vZx_fDsA7#Ya|qW9;pe!AbZ?07I(0QPspTc(k_Lq~NNc&FGEpbX zhG?F7-eVi-lm4(TBp%j$Z4HSVPZABQxZNT62ao>FV}5yHHh^tk4%;;KB1c5wp#%x0 zr9t!TNurN#U2Sk6u1$Vknkv#(ZY#q!ECA#h1ULqWGWWY`Q;G2IXyJ&b)5d})=Tr^i zfH-aj)i{n@!V5}1aHg~6%OHn>%}`2Y*Ez zK3AYqm5D<}WBt)9IPJZg|G9W2f=fI45XBk&6CmF_s5aG_mh~E~FpP9O(8o%=YdUml zHOXfoBEav0^?GGQaWT)&7>c6A5j+b491L{HH<0MGew9YImfkD_9K9IRplF{5b#r@t zGcDqDJ5o?EPMA}6q6r)=%)A_0l~DnRSx-0LQ7uVzj(xI{t$VWORM7(812wke9_gsk z{2o-Hx};(4WB$vM&Q29{N1~MO!VWLO133;|Y(>GI4o4*4BFO+f;m8gN_7Y)mZN`GV zxFxRX>EI|rjPrqBdy#<#XSfXCvbGiTC$LD`tg@9EbZwQ_9rq!_8m#Y-Q*8DS(cVm4 z|Bq0`xNrIe>!Pj?L3YqVR~ckmSKU?ckF=RdEa z|CA_cWMr!Yp5p`g)x-m8$lUqy)s6W26s^;Uszz*8CT;B05o}y3bYU3~yll67=kcJP zo4=Oh>_O|)@^AZ9=I{ohB+wNQT#4~Rb0aE`RuY~sOnaw9fB|5cD($#$TsOM2Y5r;N4OaI(U@%o+c9OIAoT{|1L zZjAM~#|Nna3y-V9@6L}OkplI1_wM%Q^^84i0pb-er8KBhaMJQGEGPms4-ZECh+sk$ z6X2{Z!SMd1cO|}IDp&Wqm_2M<(*BuHj*s3O6b3`ltV%TX5@V}BEL?_|UrL%>rvSz{ zUxuYy-Km7}@Y&ZB0UxUFwrMW_HrlfyC&mc|iO(=CobySs*l8nf#-q^awP4el;iy<| zOI+T$UY+bflQ|ij;)=Sl0|zzEHrel@jm~RJ)SzHg$hOdz6YcQEyCMtWU%LfDVZ~o~ z->{uwax->=XhtNbEy8L~4=>jXtbyjhQXYBAx+L^huLl+4vf#D5+kHv*QGf8L`~u@yJ1a_U=8&S%famv%1NV{OpTd7ld6I|G_oz?_>vWr2lR<l-0>nQse9!FR9Y-QzX0p?sx^!pgyTTPdt7=@y#7MHXQLF{+rS~7?U&3 z^@B6<$a5y%ChxG@;ThkZ*35iF{Ke6!k6jiJZ&udeKAqL|tS(Yhf=1D5tizV=tdDd< zkmshfW3O+2JKOgD=hP$qXl%v(K>!Pz$Z%Sbn;wPM86Q{VqVE9)Epm`1Au^;RyW2&^9@?#hP5NLawb zgkq0@2ZXYW;rZGGoQ0WzBYMVbl41n?om6Y>D6Wj`!(J}lFkkk78nP)sy+NFv%z~>u zc*XSf%T!SDkAKvo2<~a_ZkU~5N0}4E6QUA;wDK9cY#`cb=oBZI51t?_fSPjh$N`8>9Duot03a6y_JxPM_`#i>0#0 zRK3&0Sfou5mEf_Uw_^Pf3>4U4G%>R!^~m$pz?-wqpk%YXW&?)@rvfg!nrG;(>(Q+g zH9YCw`xD2rwz>b_UscD%?s0UuA>&C(vQr%9hZsY*>352PN&sWY*|Py2H6g+D{ozs9 zh7|`P7?|PsxG=6R*uv3P0`m)`Q_ul5mQy&?$ot*ad5k^bAGX{NfLY7ApZo&^R}f9aaH+*u8c$i?@dDcIK7JY2PhIKyWc6P)0F*p6JUU%&RWv z6}0%P5l}7EKNWKkcIas|SD=5ZFLfGePV5MQ3t13+amMNug*`~kJL+23Wg7?ts53G) zvxtB#IE{<1g9o+0^VPO2sEh8Hd|?g+VV2``vVm!^_(qSXPB!>08P3QvnS{BW**;`(4bTa;L8(FKdwZ7k5C?cXtkvV0?hYW$m{2JW^GAiKPhH(UeeTHo*7rFU@Q~mpfC!Z&c^IHo;?a*6R z$HkDwj7C5WU7#ENBw*WDnMf%lxQ=)6+v3-p50_$xB&DD$grz*0Wb+qh45n?N^h>0+ z(r#t}PQb#-?6F=B6kSrR)e1rKu4b~AE6kK>k8o^+mZReNj)20ic5A}(Z}u3?YAYfF z9ogwrFq#;`vf)2^P|+~El@+{4reFL;u`czF$Y+&=N02>&WIKf>k^ti@D<#u)M@_^C zvSLLj!F`9#G9?BTYw;34xq`F6diF1A@i^)HF`=hAtOonsj$pYH_Dq-A?dLT$TY&v` ziZhSS4Q!v!%WGe6NFn8D0V1Qv8)DZ+Es4UCAaWyPLLjx`&G*Th^Oz^ODuK^Tv?dNFc#EJ-{QRad@$H(gUd+ENOCK*!xY2Vg*{l7+p)I|4g3QIyR+zOQoz#%wvX zI#$b2nG4*HGt%7cW#3VM4Psr~Jv&-|itJL15RK?3bc zb40yxwRWQMt>UJsi7)JYA)>uvFNuAb&5;%1_c7u@FRJC_=>3IVgSHx}`xi^G%3bFo z>pI|{ORQ`Rm*T~6v+GR`cP`$TS%AgJ=n$q{I2ZJ@f3b!8TBC<8Ena>s38&GX81i!_ zTm*xCsoR=I{j2%(a~bQ;0^sSGC1F)2^G6Q!C_B|F0~ZO z&Fu)osaPU^B$0Lc`!0tf_{j*KT@LToa-`$4okz)V_IUw|w;NJq%m&1cu zMii(?sT>y*V=`8leaLvC8-itE=T ziIm8O05xo|BtcFCf6Pm96xb*8S~1A4-1j%HbL)r2E5_aD#ookH)b$J2t5=pRawVC< zS&tc_WQc-5axS-8(6TZfx}Z#iz`U}W5}r5wTvsL_HU6pRWa|7Yh}4W5U9=J_gw_Y{ z(^Xy;jRs?hyPc8YhLf!QUV7-8JtqTVWd?pK1uGG3TC8@`0Tb{B9<8I$NF-Z-B!LYX zNkOf$1WKXE!lT+Nj~_SbKx)QhjDlDNDL+M!ESM!YBpS=N>4{x>ejXcGH(AMbxo%Tl z4vB_m9gZM!De%~~=B>uR@auY|AQU`jme~Drv&MQ#%=myvq}{U%Yk+oY^F3M9yO_Ik z;%uqI8&rIe<-2wwtVS-7iEz2OzdZ0{?p>Bth%!3exMn99l>Ab8b5=1%Q`bZ!Ip1df znYUmd9Qa?jp$khTyPJbx@|h6~E3f+c`mUev4?m3-%E)wSa%pl@(IVGM*8D5!BgZ}0 zPA9io#tiB7DN{HI&_YU240)+GZ8}nkzvj$_&6Ytpom;xQnM6?RcnD}B{f71W%s3A1 z+Uz;9|D<_&*8?gM!k%r(dhuE}Vu+y9rAt9pOf-hAS&dk;5=^km7BaHb(1t)fGo;Dk zAZ*Z+3e7KA{+$9;R$`Q6n#=iv3-BwT;UPfUws!7H92ADnnGagCVwyL8Uj3S2ETlYM zR?+G#JT84|samt1u5P87Xn!fB)QQT~b-lpi@qBdg*-m`X`gsBoMos_hM}rb2v>8VN zj3U@nhjPK9QRo9D(WeJBEwqXt-+)+ZV-u}4eJ(R*YJaH2J2s&!mcmX9e}^i)2BR`s**wbJSQ^aor<6i_DDe9uv(#?-4*&OXfb0f~}R> z+*wh9i}KCjptY9yfLF^#N+ksV#Tr*nb^k{%^c5TUb3-vZs<{(d?fbo*csgSJ`%moI zT%9U&*pBWC(xwg=EMx|fLoOdJt;gzWA0!4M&)6~*`$JvSTLFIleqc%{btH!TeZl?| z`aCxH@Z9<&@{yQlf}QYi#C2h6n->~nCJ@sZ*B%5pPMMxS*lIUM_s3_5RLP!>irfyb z)~zR5R5V~Ry*F?Q(UazkR$9si9%h}cvT!f8BAE6ofZ@2B9k$~}8>NojuwpRoN&RYT zRC8yRH+Lxv`#pSobw1AM2F^+-Yxpvp(guJH7mTo}APTM$zpjWDNDeaAUD(XRaZ!2~ zY(1Y-OlkzX323lpOwDAsoFdQ7pou9DFV3OdBIK}>2lUQa?rj^~x{T$^(WMdC;t(7n zI%(X z`_+d`l7&WJ5}~D*74$g}FzoQOeo`wB{9J*@U#+fcU69TvX$LM+6_KgaAFiVJU?LWg z}Ew^;pY09*e zbzZz&z+uJU^p%k#DJPl)i7;o9y50By_M?55ZZ{e^+*wb^<3dVeD8cJpb%o?jeb6R> z1~;NBnG=}%uwO5k3uiP8{?Da%$DrT0Kl_JXF5|sbsRMhX z@K{}biKG@3;g}r=hY(P2pkbc@YI_1bY*3>+7~9@&8v`F4ZhNg_vfr%F=QIJ!Dg$s{nZ z(b-`B>FN`>qw!aJaHg9z-EOh>T>smM9u7DeQ#Gl+LW3S`>bgN@UaL%A;obJ6Mk&W8 zyYQUJ&-a8lwhV}1tTgklI_xC&n2!p%r_Oymgn(NQ7Q2yEb5#!BwAvNkKv5l&DUw-! zDV-}m9xIUNWYNpG_BQcwalrt{LCm}ni!8}h`Sss)3kc^%f0nyr4qDkH@acU&-+t>& zzVNsQvC!Hl-Y;!bDcyB!({3L6gEm1pSom4iQ~%+1hZwbV5KCI)3HtnG=K;O>6v5bj z@8^=A$tx|tI*m-sJA&rDKcVFwlm9M40JldkSa^z$r0WE-l|xbm@f+0>_Sz~cKeP$( z;+b$N;`yStU2oVz^*G{Y#6lSICUP0Jv>$%^0`cv=UU zd9kR(=)e%$`<%Ww^`zg!fAxgy^<&Xd06i$Ikx=Y^5!&we*z;y1?xpmx753e`fjwy_ zV4F8(ODw&0d$G1xz^nXoHBF{xrqJN#udU5#cdM|Qd5BGOQgrL1iY^ax<*u$S>u_&k zrW>C~y`y^jQ+Y3j593X574*p$REehJYS7-$eJBAG@_@Od`$Dtbx9izRT9Y=-wMv&= z7LWKoz~%6S`1Va%X8tB}_8|5qqDL(;a^XZ`<63m}?&i||^*P}7cjdofN^|X5bN^q1 zo)Y|p#xOKECH5k6WzSa{6yA6-b8`I={aBMKu)Z^A@j&TC{==(Ac3TYV;)%6`BtFYB zxsGyXuuq|v3=P;$VExPEhhO?ev{#Wf(6_qmv7>^2D#TjatI-p{q}TbcCezvARm}$< zs?s!-w;9~P$yq8^R+y3b3f@C6gu&YtLuhYXQRz|-eBSdvnzEK5?^)LrM)`i{0gLop z^Y3c8Hz_`At7*WW|B$D-3?-6ls(OLhzMVSt!+n7!&Nj4mxI!$sCNi;$us)3u*G0tU zNK0|!;JuS1dUJ@hzN~18IG^ubrT?*ew=%rXUGp4j6Pt}_Uc{P@o1d`3S>w>~Ki+n~ z|FMq?!z14ixvXD?AE*T4#j`)y6%^v`r_MIEwp%fWa;N7Bm+uFwoGN~9l>sj~Qe~~a zCj%}P#@`}dLm7ioK4mBbTybqqZ!@TEJjI0SBR=(dO!i^H#89IgR5Y2*fi<8#C7PGY ze+jc>I`^m}HnP9c{F2y$fy{h0#N97J$a8wXuIwq~8>Vj`(p%5AUj+bIxO;?)A*MEB zx6j$A#*}{b-)mm(bZy8zf^4E!yP_!PGC(#>jmLhwcX4d&t|H7XN*z!hp z;Alzr`8?qC3J?zvws?52TV9AHGZWmr%$VFGgQmoc8I6%ywDw==a2Ldi7fgy%s^;_X z{b7k-J$bX57DnHq0w(l+jf^I@<`fGDKWKi)3&Z5v`I$OV&8yHN#Vbx(_a@#*{erta zx-lp|FG4@PzBzvQtx6}JdSUkF7tLaX%KLRQ^7b^-7E4h$PCnWm+;ziN{Cf+DPd(sF zj-ZbYNFdO)h1);QU5gfp@Wa=e?-QBK8>rxS$?s2z9eN;vLc)?twL#4i7~kUyF32MN z!cCF^=sT`}&p8m9)|=UPE}>%t^2dvz+q2&KuT>F76I4rAl(Odbq9JOk&aIJ5V*5^dG%82(BI$!D@{pD!*5KfmayyA0z|2xTquk+^LA_u!ke`yr8< z?-WRHh(%O6dY&GL68$eb_v$@DMjNp1Up@K4vcK+(xRbSjhH^{Ed2B0LZ{9L#unrf?Yj{9 zdK3bPh#V9E18E;5KWBTHY~sK3;dkxQ=5X3NhKDAjW{u@Zn`vP}W|Wj=**UK2Kp?Cs zHU}|ZmkEP=KSG5>DUU|tdw9h=lQLZU2z^?#=hByy1BVfbPiXXQB)70P+z)553AQ@3 zVryH5;3%WQ3|_y+^IG_$@^gR@^-*l~_^kQK-47^=^-!R2ZkY=;xJ*803g4Sc*Jm~? zx?Z(tj%xhK%L@Zh(1fbD(dA!!V(-MKd8}LlGy7ZOL>X@2b{CQjoLU?{t+~zQu8sG! zY@k8tzCST;zH=krDeSt4pgguEyL@OVp#T=RWsEn4{09PZN(+fUop=a8c03*<(Z_Wj zbHEKZ0cCBKmBe7J#t_>hH{g9ZV|CDk4vq`TD9b*RaX}ZB zK3A1HSUoC&-%8Jb!<@;O{G3IfPHRE`s?HXshe-aUGQ)Bkh>f!^X}%i&3XB5`>7&!a z-`2X^0nGy!`ry;F+hd{Gy&Jt4L6t;csz%~*isE5xj8}_1pQ%D)`bV=X8J=*rHshm5 z8{$cFMy)r;FAg?T;G~n@QT?z=@juSEQ0+f3t<8`M?e`a$-X5~~Ls?(tX5GHASz-m8 zkjy6+16k}Y-ke{=wz9i`WZSXZfTILfzp+7lx3IX*7&kTk9%6+kyL<08$J;d`o^P=v>lm8p3<0?IhO{~{_N#2ngb3R2DI)w?7 zb4s%-i;}^vUijw2`j-Ts*-u%2os}9T6vd?M3f=w7fx^Yg;tl6T9=mrku&A5@D={L^ zY}Foj;@(;e5`rbEtLRi_(N;g;(YZyh0mu}kg~Q&kM56hx485ZbB;3VSu`KPsI9pd7 z?tF%K3ToD+$&fdcgntW>mAJRhG$bAbZ--u1s)}8Cg7KQ@mDq#=IA&B2V^U?N-8b!L z7zxm~TH2l8<(8W_+R)GI-O6=}Hb8<1NwR!CD*ti2cqCE>t)BQ<_tpxyo~P4WZH7;s<(uPcfG zzSUhBgkSlR{SHflEGRJ$W{;gIaOqANW&ZCuo4?1Yd1d8+0+GfN=M_}e3lY2^x`FvKn9CVo$i2jj?E!`K-e19VdHlCiHg!$aK~JHb(Cdk@ zz{W6;`|DXyWbiYG&DxdCvK-yn60lAI`kuWH*d$!4!}do9^8@XMgOJ{6cFS2TdbFf# z@_Uc9n{%b`HtU;X(eMi%-yPR*9$uIPA_9ljCt;YjWqu>9&Zl0uGe3^`i>=dE6&J7f z6&qNq&HrjRo9^n+GkHjnhZbi4vJsem&hxMt)bD6z;d5J>lKbsofwIlW2^^U_`L}lE zpwV@|g&+mFBNoY2G`Xus6*M|RYVw{ab~b8j+y z$n60x*tFlzm8?w`P9#c6(M-BR__Hp!@L>ogbQY6uuBaU2CFp>Q46#@D6x_OnlaLRO zhGwGGl<2~vxx3-4w{kg#U6Y|EAv|=}$4MW!*q`9GR}Jayj<7IMUy&1uj5hMv$MgT; z0-(Wq>H_q-K45L^UV|Y9Om9yMqfuToZ%Zg1_S*DL?H?!xhx`P>%vA5!5C}8>W2TVF z?oRjfw+iOY<yB;P#*S@k$F_EC>o>M%$F^7~A>ZiFY=wn|&ik=nvxLh2*nk)ejwo z6M0e_&2a|Oor~6fY~=i0Gi&1y`j&a37sq@fJHx?3(1Vmx`RziNsE#WP95Efau=&5@ zS>pG7cfVPu6Pt;Qx8!+OU67Wlj*icCzrboHIb$j+%Urt2e0;q4^t34n!fFD*@h@)> zofUpj4mxt6^5aU(Xk9`(Jml@eCunB0rnT(X6eK@7_UG3eH$S_f%aPIw^b|KFb9rHZ zCPHu~0t1|TVX+FUGAF|jKEs>zegsHPk0#h18w(x7^k3O^rTDsI<7l}MBQJty!x0$I zm}vOiQM4_34a;LCiYDA%6K#Jv-e`?X1%;jV#_0eGuww3%z`<~U8gxLC5aJR)<|#*k zwkOKT;xYtYCmU1r8l=0R0_*Jq$}7OF~;r zu$O%mb#^nP?U{`QO1?wvcj%qk3DB0yS*h%*iq8x}USHzYzDLQW{z&QFF`b`+141WB zD!hV;XM{FP?E5&+xXZanH${02zNj;gExT_Efuta#Yq4K@BCF3{P^#2$SOI7t+x5phC$P%CZw!ehTz9Ui> z@auDBE_7D~xG$%Np|5}(MAb~AtAqh89y1>5ZY;}CN~X`Dk~9w-L7^rs#rhe5?G~eg zm2;6cTq_3y+1%&MP80){*pSCXtw)UutJzBu1cn>8J4;^zv>s+wjfLUzNO%2ZS>)!?A@+XfA6T-`~(YD!y8&jl;oLsd+PlwNHS-noY?{1e)x#bVc=ugiHjCv ztFfx%)0NR?#aTGfqghOOS+k&7Zewoqim)Jc$X(J48Z*f7(4aXL8_*mE?-E z4a%urSmv|ou6eeMtO2-GCj)&746&rzTMVxWO_16(O9O;5agZm#6Q!hlE_vcUD}jXscJvG^}k z&*%7XbT*!9C!DDH9Ti76>H=(li21O%YEfux!SwDW;EP8@yu%?@yW(v$EqfF5M7Qy| zW76Io9nRR%W)%6ayeMbnH)JCevmlZd(!L(Bj*if>WDBbgzSv2z-_P|PioIKX4DjnY zCQY1kc-$STP-_#@n*TP2b-Z^EB?h4e>8@o}aI2Hry*qAqS%A${(`|iWQ?@WVLCzWx zWf{YPiO)er-cru+HO8q(K)K5`crQafSOFMns&0|7!Nre+e7xVVx3|j;3#++Bd~~5^ z{x&49;hi#m!(u#;Hej>wg8FPbqj)8_KAa#$T75(C6Y@vY`MxQ@)bz<^cip10ztJd9 z8O9~GMlgx&n22FO!3E$r@0V-XS8MhDAl15~J4%5=X?1r&OVNZA+3-bw<$~gbSzG_@ zw+0KIE(1V{Efm64inKS_d-Gc9RR)>a@DpBx^joqxEIra`GY2i%4MXtis&etK4B25L zt(VX)^j!4fUb`BfmD=}C9K;HbqV<^+;)i>xm{s6Hm5mJ;cide*0Mh~PnXAt)OL8eh%+j~3fv z`I+RncwOtWsC+8-n96-1g(4Rg67&LdXOTa3CU4xEf=fQ?$_)9?B3`N>o7Smy!Pehv zq*^<|-&DH~G|BjL3SFTZ&0L73QXlZ}V>&NmJ2atekDPr~>+?1*Zgje=fjK^D<4&?b z@oPSlfp*t_D6Ag>n)vMK^he^!p({OlF!R1>OSJ|yYYdZtwzMK+9??fPhH@yIBHLYy zg{fhx@lrJP2MWSbUJcv@p^zX>Y_0S5zTVD`5;tHh`}C_q9?QKnIL~dCd9gyxv_S|7 zfrPbK9ELfQy#ME$pjpp-ye2-dxwXpSKS$Za@1+1quz6quMLljAFIjc^#0~gv+Z{O!+vjr{9?C(N&xLfEpT_H zPJJU16pT)E&HjX|F@(3Pk#LnlD^MBpa}-R8*pjgz0S|kt1Bf9X&V0$b5E9qom45V7 zfqcChBpPk#4-vzteseOxW#q9a4+N$66Z8D^usPO{pBDCS8R?^w5LOG)5a({G&#IS;;QpWbB02^&SJl@i}3HZl$F$D|xT?ZJ$OWOOj zR>tBf>4UTl_F8Xk{*sS{D>zatA(-WKrp{++HqUP72wvblP;RE;ZwopS^c%l_D0i_^Og~fYl@Lk zQ4PCQI$+Zff^`Z|*uTFZFb1(ff+wIX@CR%ORS@h%-N_{VgnJ+N|BcoFzgR_P~kAH8dEqt>%C z2n}zH^qtwjF#Y4W215w#dav1*ctKdp@hQ*>#{CgAwaVY7i8gFj@}NyM$7i1WG2ZSk z*Gc>1l&|g=TBcvzv1YaeBQclZg>M_e{zS&_81q1f<9iQP#ruvHDwjL~-Fvhz^q9NW zEA|W)>#8bs>tRvQ!1bJIlnQ7~j3;k)%Fr=zZ0A;b+?weK%YKf~p!#yjJ>4NlsMgT# zau_3gEgS`6?g&_NuGTV4*G>3d^OPj0nYNa0r-EJ+{P%hlIC$IH2!cNSD-U4|*{Jk~ ztdx(V^A_i}QQY)cNFC7@ly0~4VP@`SN^I>e*3-G#HT%WI2KR?(TXN{&Zm!)PHC5IF zG^{M{^E#r77NesZ9>?m)pX<%AFW>p<4mo z#M7~D#`U--C=zS>$2Es=MZBh564mG;df%s`{H)&1Qy(!>Z9QeIiZkbBU{~#XrFeCM z9F0#XhAzD;#V5-*sSd5tS=eMje(evCj#@%; z5+F{`-cW^xOG%Inm|fJcWCuDE>@T!vK1MUO(8(8p{A81^`#X+5Jifi3kr4cHsSS^& z_&WdM3D&muc7|bOeQFa`coD6VCd)gLl_{aoUFrIyhp+-8JBVfPxBkJe5BWo-9-;20#)_j60f85hL^?{~<3RHhkXKyKllLp$s> zeELH8%qU3Y1h4vTv2A|@-X7I7P}D>%za?bE5C3O3j$(=;w(F|5XC0Kthld*EaYEpzq zZ{@N^Z;-{&ZPu)BO!#Ek~pme^a5 z!88X~9$+avzY#Ason_8{$#KE)cJLn+Z}jX_sam*gHAS`V0qgAW4~@J7sS25YmFd%% z^E2qlf^PLH*~h9TvFM9w=fhto*YiLh={E#5EuQ# zaNo-4LT}YJAFW$~C>ue0>Z&EKmsFN39T6|M?RP_4HB3iw8TjumoepC1agi=b6Q^Ef zo&@gqy#iB6dm@jA{!pnh;$t5`!d+kzoJ5r-c3O22^sg1K)`r|&wlP0ClZzohCnP)K z?xT%bURk z33e#Pu|p-&=%yyNroEd^{~Jl`X)x%+NS2rV^SbzB^~}Sm#n_PoAFi9NpF zYup3~Qja<*(wL3e!7b}!WED-4Lp!eY$d^p-IL4JbN4>-c>+o zoHCW;xKvf6CS5K z^pBgoYq(M2N9HH}Z6>n#qRw`IWAGVky8AcyL}uL+(-xbtcd>0kV?o}W>7vq%404cp zm&BKx`(nOHiZ{AjVb>s3C0g@Vjq<2{xC_9P@EgtBN`3PoCBU;LXQ^;k+76V^LIA!zvrj_+;I5WU`Mug04)$>N$C`L7{{qJv|X_qG3 zn^gB|T!aKrxARx}2Z{X57zm!T?}?VBwrCyYA^1W~ubfV(DH!N$MM*uoDkOmH`^#8x z<1lv_{RqiN&J${i+cnSW_-WC}&gAu4M$@e~P+HT%ii`meOPPZ+5mlMZ%j3XZ;dW&( zjS3GW^l!WhSQ!}z4KJx8-DYKMvp*Dz#-cLotK`)Sp+bBrovlo<0D{eGnP?a|x6Wf2 zf;l+A5KDuhBiYIl2(p;bN19~T?;LX2km+Jj*W>F@0gX@sli`30$zwpY+vA$+3ST4e zA>h)ZPN`_kBnW6&U!eXY2;!u$`s=UB+Oa!4qGufy$W6SPzl$L6d8CuKv)vVERHf;?zvYL}Tqq;`;cs2UN@H&=P@(u!q zZuW?vp=*}s>@z=u>*0h#^o>HXK4fg$HHHGOk9YbG^&m2vsM)RGp87f8#CMX(Y4-{dy;aMn zvK(?{ca~9po0kInIh+U3A4w8O&CD$^6B)-&npvIyiF%q4Z~w#Uw%O2t$+ z=KOYQgzP_|aN_%#tA5SH!!}7j-gk*Mm5cH*b7q3Fmdf2r|B^%Fp$HpI7xIg()K_DA zF{dJyXjr}Sl_rAgExEf~ShHRtK6~@|eO{OGG7?k!mPBXj3b%KZ?y26eAKI~9no}mp@=?`-yCqG|% zb$!8AAGi5Zy=r-mCtzQHgQdI5SnZRFqc1QP9wf2KWdtmgH)3D26)dMq(&OE{y4)1J z0Y`<=PiykG*&c%n_V_PX1uC(k93W$IDlxFbwb!dvqo}%WB+OPTw3vdlkWozJ3M+ z1%a^y&FqWm+mgbpOVauZzhsTnOqMzq+K{yKl=&{2Cd>8SdchPlS99NQT%>lP6ZB_$ zuT7(F-tOcSNW_2do)DoZ@=A=6B3Kw_I_h6-p|ajs9Y|E&WbF7DNXzlfOEyq@d@V4y zc9d{PG~NWb!#9EYH(PV00M<8H{{DanJr#Y(=-p3S47zm8E|roYoonQ!Vn|ZU>!SqY z4R`Yw#o?93A8>eXAVsd;clN`Z12-+Z_dxGR#vBt_;8KQMyqL+=Yb{TVQjZz1Mp)QQ zz2&RxeDbyFX@DndKQ9@e~aHhar_qEjwPtxyTY8&e{q#3taecY)W_ILCD|Xuq2P}2$+8w6!Z~r zV_>1mWJ9qIQ8MJfi3Fn!c1ut_%-?kZ?RG5tZ_g$=;ZF>9)5u1CTcN9dh*-J?M<#cwe*rOv=xlKuwkFI-` z`kCoFF9v}7C3ui0et5rL!D3=u z)gDOu;q;ZiE~>b7mUnP}w9c_)y!kjMstLebFF|I%fzi9R+P-+6o*~`K&>6PDG>ATY zrL<vvd_d!g7Sxrbu@WG+GtoAp!f77va)|G&@ znK@a5O}n{4;$|6A|?2?ppk#J6NmfB z62_5^{TsWmwc`ps&|AtJ6n;-}Cm0(Nru$>a%Az1&+8rI{`0TCG4or;Y35%A@{mytn z0!^1lXz-$!QU4N>)Q*V%cnNM`Bt2{LqK3j0ruTp23(a=Dhvt5 zSJbf@5WNL_g%WY={t~MrR?6rbyueleYE$NF5IkV(HPJ}Ftec-6Z7jtoQn z$=I6;i{qqXXgw4>U6Q-!hh+8@fdri9g*;;32)@XP8l$pQ=Kse6a171XinAHcuejX{ zhMr-Ccce9NMcz#C+@HOSU~l#7U6I9v(LylYH~GL>qlqv3f6}el2PMv?KXh1;3Bbqp zA#;jpVrk_6Yi$R%cZbAnp!Wk_mb~&kmg4Uzp|7$E+LMzqUQxspS~_REsrJ%*88YDJ z$~1`Gdu6(Ps6mYi2>o3})6!$lg8y|K+6~j45UQDm(5J2=b)Q>btoHp3?VLz+>EXLT zQrwLt|D4QLR_MvpZ)CA-0u<}bk|V4CNW6Ro?+(!6Mn~RERaf(!p517@NkhbSlV09^z}heXM-ZW zQecJAt&fl_l!N%Ih(YtllO;f=x+dCYB)ZBk3sy7Z&F%XMJh`=ECT>Ro%GNoVIpt5m zc9$KCgN750wxiUhLwqgn@SS1j8pPF4065X9+z4h{q(UxNQ*UY$EISf zO|PM}JTk)tKe$dr_|b43?LO6cK=wj{kBfOpCYsvHz8Q*q;Duv}dm-t0I7R#U-~K)} zi|M51f`Te~#ZttU?T97)o4EY|G-OR;8(DWK*1G`&x;BAwvRMI2QT= z$g73ijy?>SW~kbi5F`FT*d}!lFHS1-InQT7K3Zc4u z&~y~Om#c%(Q_gTbUSIV1qD6 z!IeHdXi|gz^}#s?ee*{2{BG~ju>d|~@dNl0bcOvU%#nRIve^jvn_~7l@oIPe^vTm2 zyw*0uJ_(d(P`E@p>DNmSV?~q(aq-ZS#07j##0wG+KZ;?hU=S8yI{z_s@V4M^eq?k` zi(Y6xq%l4&F54h-}GqhR6l3$A?40a2|N32rZ>e>}wZMH}7|Hx-t9-^G2Ow;dj9)u7y6JE#%DU9wHT?GkZGvJer)Fa6 z6+x?P^=pLQssqN*@E!bjBSBVvRx(&HYzFKb_tA?*oiWIaAy{S!6($4-A`E{-Gb=Sz zn6$taCRDlZJs9aZ#myYg!m9VmK%?^sR%=Ao3>?mb-wF^fRAT?iXF|rrXiZNRuT|RA zY#@q7gkSHNiUNh=OIv>Dsb2+^{%OX`ZUw4FN6g+Bg6m*#n&6ATYp9yLrC@bWfj)u% z8W)3=QDpB$Y0hPA2hj_Dff3p!89zj_Y1WQzBY zM7L7xD73+6irBr|f&yaP4a_>}{PC~r=Q%eP9vZy6E1zMwZx6kz zEBC#di=zO>R4mu&d^4kioAEfc})46vJtC9=E*d%rpTtuUW=SH7Duw}pQN2j~o{*Cfe>InLjF**8u zXYl;--#xfB=qtk?2xOYQl%2^{!q8js-Q?N!D~5rz4Lz|s#pf%{i=Lg3Vhi`K6i>=q z6k@p9O;J7mpeovsbW(=y00zV_NGi26#IBtEmXLIzFb;zU@i#=qz>-oQJA0i@vAM)5 z8ULgZ`I+I*#^?ZQlWz#--BzN_)SZ3g145V9RruVa9NVNrLax{2(CNa+3G&@i1cU*+ z;L;NV&`ArevM&p*YL=)2$!|UIg<2I=dZ+cJ9>u;y2HAyai!%)=@ErQoZr5s3;rSlF zJy7}Nw&p>oRFo%qq>wg#QMXqK`9HgFJH`gP@T;_sJ3C)lJX1Yah31wk02C&itnLv44?aO({?z^!MXc6`Q+zYzU#hq3!gm)Z3k~?r#+&n%C*xjIBLPB zL!9p_Y^MUdzZZJGDk7HMKQcz`LKDcO;{S7%^^f|A{MVgSd?5@eD8hd~mWro|g5&(Z zZKTQ>nRny& z>B2GBK>BueEs_aaa)H~Z*Ebwede{nOk~1R)ql%$Q^sG|Yc6 zAR4mKxdQ=?s?C%9RCR{3)56qcsd@OR)@~5>@keb&qqn9(y}@WgFQ0rf)q> zyRRD?S@;<$weFj$$)c{*B0)$IWi5QJfbA^#4Z3GE6N~Ep@|RE}NApL>w4phH6~~8} zrjLhh9@f@F@b1qC@pbVr_Ur37#L{sR6<5Hi$*l4;b6_+xfA3!p%|S#}&4k0!lTE1< z#)?r=z*&~NcnZFCqNxF$54Q0O)&-Zin3;ULC^hFA$DyIEcix3T0c)T!?1;li7GeEq zW=u-qo%uy7Uyjgq@=rGk&U#DgTX{Pp*=)cl$){}p*s|MCNHV5AFnS&i;p+opi^r$; z?jd4&vq%a8uc-7-C2Q*^KEu`h=gHphD_`Q&h4wBIW(wVZDsUtydV_2}sK@x+c%L{- zro^t;PLjt{M3jbjh=7;l*A@?n;=6T%^0?AL%XYE^O%8vqM?!aQ(|beA4|Yn~UHYEZ&p zG-O&mCur56qDN23y@?SV1M5`K{WZJvHzDjYN?ngY#(bcq8qH&C7KCm(3f=tZ+6Qh& zG69upM-;lT1KvgCGNa@&?`dY)x}lGc8^31JcAa9)^X2Aj12q##(ja^flgS>iv>eWq z{u6-!-o-d+%2-T}bM^yX_p75D_OmwZBlq*akeH@Yl6t8RD^g{(Y%1>_-Ih#-*sUp8 z7q~bp?n0+SuE`SlNz#HvT=rkM&X6t7cEW6bhp$w7m@QmS*%_W!o>OZJcz#%re)Jsm zE5JgZ5$c;PAlG+eJPEW)wXeeE;S!{RyYBaPa%J4TB_-z$vpr%!I4mn}TfNn*jFS0w zph5Ea!`?O`(~T;1*@8K1u7KAD0ua2gDKM|SF~s2S0FtjWPMB548(uDjCh)jUn*QtR zOzb4xUjJ0Ctu|+IQe=fS@JLWqrMQAT4>GNLZ_miia0Zq z2k|wbOeaYxX|p5#y3es*IxErdY9GCR>R(if&&+8(+e6AOm#bo9_M-9QM{5m!gb0ZM zw)penUw`iKm+Fk0J;sfn?_XkL7p|Vb$pik8na)U?I-hfcjR`(y{(Rsejj{E8^0I>o z`s#zj7vu@ts={p}CQ9`lm{Us&K-nD=FD(vlrO;Z$ot= zfm!^khk-Wf(TV)>3ypH8&W%|kCQ}L1Y57ohC>$xa_gee|4WGudnQ}h_8^2OuOBN)O z_+#zuy5>*Gu6e_Y$2Y>A3DANoNu`R;^%AT++HhC1sCT8=d^5`y&o&dh_N6HkGEW8z z#wn-f+fe@4Z2c}Xqf_S{*l1B33PJUU^@jzG))FDy{~J=I%+*W{9(y62gXz%}Q5Wx{ z!SHAq9V0YYIz}|_hj%Yg=+73o3@^>$tkn#j5_is7=wv1`;KN$Ac;0teO@z)_Bof2u ztK=f7RIy*G&fSRArn!0mig}7h9U-^;cb=B0!p&MN=t^vX^~Z_1;=(FBK$~yjqIv3B za{OmM`DeKMJgP#*dOctaZYCMj1{VuPM_afo0Lq};pW z3(_;mEn?t%aq{nl_Xc7k>B^pKg<5O@yo%yes30vh&i0im5yEPGr#jRTy~^TUk)=2x zmRMna)JnooK}av1Mdw-cH0cJBov+fzLcr>JrxpsxNmUwf3}A9Is1Q<G%$(RZ3I{ zk=74|P6b5vCdszS@9il4vOF>zS2{N$f05t;}Ar6m`C9D-;g^CB}!ub4VR-&4<(QZtc&;JAjg zqI-k9!?3@VxELV{pQM=WA*6%7mWg$4aU2)xnNYQFpa?a-Fi9nYe9IAt?;jje($s$?UyzL6 zmWjlk-U^-mV1dX;n$U!5E1)&}gC?G3g&&~O`->(<>TxCUp-?`B+g}R2qyQHS_n#Gb zvWlt9N#}pIF~YFlM6gt;1VkSK5Lhs6C3`1^!Q{%D zzcnsskr5>vuaD_Zal0`8^b%)5=J>%0)m2G>S`tL;4aH|iJ-)DC2>6bU9fnG?Mn9Hv ze9?FQrLpB2B+e=b*cD!RRH^|ra37oD6uYa_t$edU(Wm26%Acwj36nBDB{0nOFlqf6 zG%xUodBq&fYis8Yo4al86_3v$o!p6onK(gT%$KTA_W+B#A@N5VALSRraN;uSFFSCHt~-6z<<{Q8C`e*Np%ILY$< z;rJ43>5Hm-)UQ6|i0l*&ZoJytl@EF(D{FMe%r;WnQQn@UeID=u7PXwjSvHYQnI)h& z?AjdR5P#Z&_-Aw5kzb{ZR^FQ_8##q%mN%PuA+C@Gb!f#Bjqxt+& z1m_yefjE5rQ;_=ANDAyk;&xRQZq;XlN7F#XGvp|;PkNYS7FC{d=To6)Q-p67nzf@W z25kGxhWU+K@NtdiG~9OE<0jR1okm(+1$NH;f2=d(br;u!v1T@>RbOPM*Gg#Mk8o}~ zQ6_fw+Oc_^4eYwxo<*=Sb(u`Nqmrq8@GXF0EA7lXA6i|(act0-h5O<8k|%iH21ecG zjvgThykqI$kWWj8$KAIFTm9hG`fk&Kj2ZRk!`p4bJgmEUY0R*^5Tk1+)JF)oLb;9N zpd`&_*MD9g>;cV(qv@2oSkh1_kGSJ(A`tT>#tV+?om+tKn?OMG7Ih%PX}_X1>&0?* z#k-EwHG5My{kccZHJE-EcgFKmfWxqDK3NtiTWayj)~GB8f|0?q=_1v+wliNx8s~wJ zo_w6m_G`Qq=XBD)qI=S&lS&of0AvD<_ea7gz%}QZ{|L4m1wXRfw-|y}DCc+Hq;$$p z39;bw?&ol2Vo`quJCs-DY~!Jk3hHJy|2oL)lUS(qTi;f^Zx!1jnP4F>b$-s|7_H4EO$)w%4vssd z7rPRE1D@sIe3!GAziYbg5n{_hBH48(fB8gh5d#K4g|0^re+ za5WSaRM3zwNQ}g&X-ZkC=Y^oyx@=sZlV87DIf%z>M?*+x?)hi<$F{w$Cas?iCNsIr zOgEXEq#c7wp&xwQ@k;i=R77v}Fn+h^R1DLRl~iW7{Vjo%H~C?6;9?VB@09$TkcYev zS_eDGjZ~qqnQ`i3#lqjoL#^U0&%W>-26}K>5>Glpxyu0hHEY-gF|qV^p#KeFwz*BC z;(l$7cMel@Bo%|TzzPi!_~ZSLh={nsW;=1*p8(j~ady3@YMz4@X`f4zNd%P%F=7JV zbImy-u1Z$W)o=G|-}34q)tJ2_VU(W9B*JaNVOM*mc_-9e20g*((n%+8P_;Ik1*0qGrI z;Lq3x6>tSwHS5U#(bkA%k8vEd+G(WrflO37YJoBK*T_bcVHVjODgY{Xsa7$QP+O5b zN8fix{4#`t)LP1RbSaA)^oKDoHMJQu zC7h)~3+G^=OhzFFafguw7WD3IoiEpEAAH%{-QSZ zaj|0|B1Q$2^!XZUfZmVH7ndFC(xcsA z5DHNOn}!JykZ2{F#hNI{dfvFzUJOOG{Zj4I&=rg`(m#PImtIQNPQ&?Rbg?=)+LU(6 zGLWU!F-SN4nJ5^~mD@70P6t=OC^ob(6da$RL#wlgSQ52r{3sKwyH~$Nr=Fox*Yxww zxCEbSVuYF1sv@GV#+H*G2`W1oGScdpRf^t(%;_P+b81tnU5%t5^eHEJ7}1d7h{q4j zERExVues*t9IG63SLbbqI}Giu;gq$&&NWn5_TsEmtE?_ryuD~gd|3jXr!JjNYzK;0 z@d4d&uYTT&E_{3;bfRd`nN*$>Rz{1-9tI$Z6OqJ>4YoN{Pu@CJW9VoPMGAWpniZh| z%yGY-1ZJREf;!cscWm3Ij>dOT#xqQ?QNz-K|yN9!nD%pt9bT&Og6r7 zTNU)wK5=NTQ2BZm^y}{U((EXiN|;x3pfBLKUK0mp=yAR&G(u+drkaddMM74|lNGAX z)`taoxX@A_j5(8;&xLroG&{!_44 z6RYcdlMlUw*G310ItGi|1^SWm4)d#b@_~_Mq<vR@-+f9@plKJ_WFUrZ0FyZhPD zb{_;AVmeMpVCR98XZ5{KZ9$#dOOgx)QFO^66nODqa{wsZW_BjlKZRht`Pr*C`dcA) z4%cg7L?+7Sl4ayTf_NijQJ{aN>v|#({|bGDEa1@_qi6W;FSlt!J0LLljJ?Nl8h+K` zMLUBn{(rmxd{I*}TnQC&w?u^l$V`s#5?mkdT4YXc@<}|&Dyj5yfJvXhkqep$1uhpA zC+-nj2<*K$(J;bM8&^_FH{VE;9u<4cMtF011Zr>GLT2@4p?^0#v-v^^-Zf+(zZV9V zoT1#F0ii!*Eq2HPn7=Ui%j(e}v&6TCsr5jW6S8W^gn#494@_@vy<%RyR0->sU7J18 z5{fPF=(!)Dgq#s1{eSI`X!J^xe~B`_nxlo5}K zvQHF&lmNz*GoRqP4OJK3#OCw(x&vgA5DH_Y$&l^Mf&HO%x#539qa4E5!>;B>mFlVm zel1?)mHP9ug-Y&q-tKcf+uLlXp?aLfa~ohW_Y;TX83M`u>U?LOhK9Zr7uT7wa{tod zkQ*SZ@ADT$A@H{+b6Pt`WONwK(Ct0v74MaV)SAqOl{R3c%eht}u2b%b&`W>F~ zD}<{Vv6K=CN1O1Y%ERP;jX^v>T$j63lkK7l6jQ})LP?sx!PaFvqdv=B6mmsTsDC0s z%e=8>W&+b5OHCff0%I3am`d7UOtNVr3}px)Q9#p$6u*5=9p6INI(HQo1)Qh|1>Bh} zOtb&1J242T#K3*(*Z#haMvdo8u`d5#@P=Ri$lQ?p8$FhUxbcX=gf1wXi^eMSpN;Qi zEf#D3@#d{2Pqm#VMZR8nFwhsY1dIwzGs%?8DD>)y7+NLdHGWw0ch#KB=%BYB+cJeU zC-~-GCa5>8RK?N9@yyAT2fO6AhIq~wb-qkt^7_i?Fk>jn!x3C@ z!QP5fAyf`EAg(K`a(~S7N&~obl)rBj>$X{K?gKcA@#&MS&+P@<40M#}!9cQBpHi5t zws^NYO9h`{1!|3!zs>P+MRQ3DaF;}?_n?G;_>npk_9NO3zKV4K>X6NJ zGsnlOuNPx*afJ5&r?PL1&Lrx(jBPvV7#-VuVs>oXwmNplM#r{o+jwGI9c%J_GxM#P zKeN`-5(WS&H$24) zThR|C))P)rbmNB^lg~O_eKiiP*^mZtmYl}r#SL1It&CO^hu)(Jb^@^rS|*CbbfGY_{56fkiWV0#-uq9AxHHd-5zDY2Bkm$T@af4MLdCOFlZ>Kc&`&1 z#>N`8w>}Pwue4JVYO|;zi6Tf-R)?XjxAt8E0qp#4I1D<>Dr4c6)F+2535m^Aq8HT* ze*7H#*sZX}96}qO++7P8tMF^B&)5{yG#xc>JMv@z!I zJnnzFp+y{|{UAj8pXYqM{^P)HCK)FBpJ@N(O~6_>@Z*0QlCik+yMO+B zg#YJo1D>7uC^YC=HgIi^y~9T%e<{$${^EYVw*IkZ+-5rBY81QEH{R;>{ILRsfa5@* zMf$?Xy4w#eQq6yJ8oWP?HWo4Mynhs`)8Ras_a8ID&&4(%r%V%{icRi^!7+AxhZF5ldPK z?S1j7>F|4HDOR$0y8eQ^ zpMO=gKy8iW*vq&j814j|yum41H4i(Ug5!w3<#m)ZQhiqhM&=3*BO9G$P1ZhTZgb{p zsxJdDG1*7@Cv_))DyP-8H>jx#G*VS+gh-KbrS$zR$=BO{$((}v z$6w-(PwbmzmuO2ViNVL=Z`ufIJ-lIo4Gos8?@-+*#37<-D15!yD}KGu zFJWFB>CnY`LshPFBCldYJ5TCn4s)s9wF=F6Zs7Vzk^MBXD0u!1T0;j4D-8}ZKLD}R zculrbmjmq%j=s=v`Cf-1egBS`t_!x)?mqM@Ct&uZssXw8UUw%$WsA-k-&a7uA6@C% z`7tXao7t1%%6q4jh&OAvbI8ZGEB(5}yLhugZokAg%+HotfB;xsHv z(2wgXL*O7dVMi#mO|xsOxpCZcR1)v%Xe6egM^QDlJzk=qu)EgcZ}?Cx()pm}usr2{ z^RJ7)^qUx+!mIaQL4X9ZIDkKT>WS2yfp$>6;@UeyI7gp<0zK9YL< z8|Tz3u|xVQN8(%Z(Tqf4u5GQ`ZP=R?==}CL-`zxMYGNQyPws~Y)X--(25xzgwwy3+ z$lYFjF}fQtO93{S7?GGvv~_}TJJX*;Gqu(<>w0D&sdYrY<0u4ujE-CLSY#sHWq=Xl zrIt|S9;9s=5jaBL#lAA?G()JD^;k`y+oAH$`_#6y)ah}BoV`%jkV#K>oGBf%L04)( z*fv)D2l@=q1OM8V*JH-tfNZ2+M4&LECiUQYB`(x^BgKDT!xz&p9E zz728a4Rw0+MI7PH6|cF03JEASf!jcXl@0fWk1wo0x<^(_?wm5) zp0UE#hC}n#mZuy_cb^7lZ^;|=cDh#kga7dasOWM1^Ob3>*@h{8_f&NE@#eT&8{oV* z|CR{x%ZHo`4?m2h`qBt92C|Aybg6sJz7ADR6U&-T!3$r#01fVuf(*t?&C&Sh`GU1r zlHa%Gs(l9)NYnyFKwB+0n2E6829j#>uGMh;tU=G&Bu|#&rI6W*Egi8~iFHSTZ^XfcJ)=HVCx__Hb4BrVU4s{_N{IP@8?` zPaE=LI3#UvkN_a(; z##6PZHe1NUZ#8JHmlGD%qX%$Z67R>{hOjMW1?|*u7}aS*?w&iBe#D7kO|+b=91#VM zGRPtjqB*Kfa-9O>P8|6iTf>DCH3t~>JW+aGiQZ-<1I0Bjr@eA)HN={PD0~;q)JLG* zMBZ_SVuRV!Co4pU?-}PFcB3#y7eR#AT~q7ll(TDHaWAN&u6HV!`@D`YEoR`Qdj1t@ zmFeuc-hPt?_gDErzNuu%L}hj;fIMny_KdsLL9=I7#^ryZfZb60*6SF==kTLRZRlBM zt)NJ&JnDl=?Wq;Wol6gzM5vNI`eQC0%gsShocEWpRD>@|I6TA-@SzDNfC?p8mn&b(Vwt3i#+${bid zZ4(0P%6x`t@&S=w?m67YMwGM}o?t9=^zz}MMhZogJ81H*-wEjRqmRXUWA6rn{+axk zVf*WE#bdzYpvV{Jry-=If~Z9<9;7#j?0ipV~ z1C$apt6ggE=z7d)Xixe~uA**WR9fXWqMLkW#EA>fg@P6@xGpoT#^2;?8ZMdrA|hOA zmhMGMmBerJ9^>aN=-eXV6Q5P8iCcp7hX9RDPBtvS`xXjvF0(x49s&}e2e6t$btrt9 zh#WmSPLH~cAN;Z-mhM49a#8Lxl(>~!5L;l2X8OVCd~MYI0iVbIB;d>IYlSbwa*Sj# zQP8kJ6KN%TPmWFdMph1ff3tz6^TeaTNDGzEeV;C+v%rm%Yyy>=-k;^p`qx2_J44!F zp)vg6J6GrKuU;#a_qTq1Hrz#8zN~iW5|+^tJ2k)|=|#;Jnu%r3OF7V{eRlsCcSW}E z4GUYa>j_hzcH4)=Ld!5BFxfTNzD1odU2!uvI45Z@+y6Nx$;>_*$yDERw>tTe=D~ga z_q??tQ;0o?4cCcK|ABVcT&SwuE{{6@j*0FpQe-aWknh$S<;Gz-%^GKUTC50E{V94s zNCB=_T{7jW*g}HbiNOI{MDQARJbt}%FZud@94~-8wEKg6K>jIDG4%(T{Nd+|APRXn zW2pgmr|H)b9ApJ{!x*8c&y+wX--p+9rD=dC-Upr`H;i2S9G4a(Yo@)vju@(x&i#oZ z1J7mz1N9PNAS})Sy(WgHry;c#Px4z&qs>~tX(Fy`vFU^zPEvogI_nRAV%#BGKt(Zt zq(sQ3=_^Sh*}riBHRWuwwG|ls-c3bT1`l`vEAYaQ;&wZmt}h>1Vt#$LYwr6VW<_De#ld>>v>qWhKB`VL}K~8x$MB z?e;5bLo|yj5|h;jb(94!3?hHc|a?>_qn~Dwb9H zh}4W>sV`k*Itl)y@w>W}OUlxnxnOu}tan%mg|bWXyAye7{3 zW{e$~*}9#`m1p8eY12#*AL$GZ-iI>j#G!^_p|RRIHl$LZHPT4(6fY;3#>q z-iOf;!!5-VU9XvM+8!#$m?SNM37O&ud&L}f1YW4(M~~$b=ukhfWZ5;CpA;&HV=QNy zE)i7xv8bT{ZI1_qbQxTX@nfE!zM^&h48Py`9h_#S*?_Sm+R#AZ5r zDI*6Jw0^~9Ai|1G(P&-?5AJMG~o zEXVbB$>GvC4LwvHIF}GpSDLGv|H1_uCZnktIs!C2(bMgs7WQ$^VhsMmwqPUe_PCxPn?H=c0opl`BL++gyg zL*s6=PT z%%xlq99gP^dPAf`YTgX^pj_N)O9F4s5qGy0QB=7C8GPnMd7qN@QdPhet6M2&oSQ7N z2yQkddAe9_Mr$A3|4P znjRr#{qA_D+uc#OeZ z$Ho4|g*=h|si47*2`e%B(yD?9g9;>=jf5$#G0L`e&Ty6OryD1q zhev0kCo4R@U4LdwPlcY-t=_vlw??fo{k@BP>5LhYEu&U10`f}KP4f^X%feB)Gc5sR z^J~M;<_qz83d&a3Zw$rW=GPEAYIcn#u2Q~!0M+?ZTIW0#2{R5~K-b52R9(NU-M-H4WAeX;lO5Q-$M^0g6G5Es}GcN?1_2|ydGCkSRxMxt`rQ*;= zwh!xYpC)IWYNX4S@nT8BZBX9E^mBufb|Hf(FzChVN;u^pvR4SvrU)UlflEwROG;XPX_$|ulirk}tcl$v-AWS|0-e&70B%ngbATdOY`AZyB~Bc%-eY`8=_O^ut^FFH6fU!(AEZ zws_zA43RDMg@bnN+#y=&GGqxA&cAsH&>4L4fE7uRAJ(p~+J*sF;Pkoga@v>O6_lHJ z6{Uuv49%xNY%>a^>KPu*Fo2~LFl(~!DKpA?eTtS;k;qF@V7f4|izpP&L~E0;d? zZWOrQg2$(F zduO5)TEJYHE{eG+xG!qqy)PB((M9XLVtj=#xLrpRhh4{3HMmacxpSMDia@4oh_X21 zUfdyet-&tfXR9D?KqoOLt7lPO=bifUkpmYs5UaOdUvIq;b_c^xXsCyO)T$#*&0M^% z`5oo}IEZ#2#vTyQ2G4NOisZBzI!}o!7oKO zv`MAhLD+jP>%N(PSA>WG&&C{HUY>-G`y+KW4G)xOCRwhVhU#RXTo{3GHTqS36cHX; zMJOmK@ebGT@qBOFB-IMmipQXWimb-jd;65>gUk;b&7=a0yiDucnSpClRgS6$(L%x!t9dp00kiMY&{ux|8z z@l7*Nhm|}-g8+c@3q_3W$K2=&-}6(ku_hm*Ill`X@?$hrmH5xEj(mQ#IP3g$yWk49 zrNdJ@MOuVJjFA4#4qN`HA~{xUdBdXcm!}JZCfhHqY&B@N%Wz2swX9WKNJH1#@LH%B z@z2~&-U~Rbf4=b{p7L7yUj#DP(S_dmv87hV9_qB}Gw*2+9sYYU_mu)_+OMFw_A7mx z-wm2?Dvk^k(r)_pedMhCaZ(_WbpwRhvi&I6@OKD=rzE9O*N}4vi_YTQy##s}FVFTYnSL z(+X%z@}|B|#-^S#-4kF^48lMB9X@ovuh7LcBmZ;ko`{0J^Te!wM=E3kUVWu9>0VI3 z3if9?rz8|oN=5BA?8AC{1UMWDhV`uwQBl+aovkxhmWeIw`dYZ2R$)>lw`0PmGBY%Y zq>&7AAQp>zZZoJ9_?&X49w z2OM<;!$0%YhO@V1xkzustJVU3XK-Kb#?hgB(D*_^-&&!L{VZg+%!gM8o9F7%`_kNc zPu59${jWu93Vk15O%q9(4C(NS>co(H8Q}4@#qo=F(GvO2Bpp{EnFZfWB zGEgYso8*83w!o%@A^aJrvw^f&teQQmW0tIgB`COAAA@Lr7;(O_`-rUsv1qfI#PwMS zg4pwyBsjbj=?78`eWcN!2G<_nCQ7+Pm0+gtiWgrQ|GG;x`04W$p{vd=)$xbxgkY!N z$TuYY?D$~|+mS|UHnkEwmh={T%R)7??r_A!J>6N^0S)_K9)%SVqIAKczKj$!+I>C~ zfy_a9rOzzzm)Csp%T0XG947J5JGN7^@=)c1=)ojunYI#Mi5B|XK}J|=x_WY)D!>H= zrP1|t`-#B?(!RzVb&PrSPt$Wv+900Rv5y}$R&9@V1o`E@zrQvJUeXyc=T<+K@DcD? zLLk$HrgEbF-f*wZ_0c&&A@Kex8{)nBYxfarLRrO#yIgC<;ZT5F;klfuB6kD9TEm^V zQD8^{YN^a1DdB$S|I$_qb9+#I{A!LCtp7(l(cpDaf62^M>!)8vZ>>9G$SaB0(fti_!0xw#Fw1PUV_`kW2_*Dp0*z;=w$8@M&t@%kSJQ!m8D(0rCi0+!SE}9!x+usGWzJfv-8NbEh}! z@ahs$(m&3NuF~{82zFk3zEJFE;&IQjPe(Bd8rS%4^j-S6(hl(U+X87aj9t;^Il6Lx z4Zp!L2oBcc81@v!efX11ymt1&@{;>=sE#0ME6Gk6Gz6%*-~n)2MWcyT%4*q6V+N*SzeKlQ@1LH5eOxQz1eGnzlPHkqk%z?tU%}PFzv*-7N^UW zzOZ7NlF}u&s4MNW~h@T8TBM}`LC-4@vrDA?O5&L{XgeyNPs4D9ThO% zAe+UiZEY89k6Umspq;pn58g^9JI#mkbG?VbEb`AA(F^WlmM2u`2Wz_$gSKH`Wx03i z#-62#OIwu``H8){rU2H_qe&bu0OYfg)(?GbFq$dP3m(K8t3N7ENPXkUK+Ymc^%k|& zM_*8M!P;o0J%BBa$`c4QqPD4R^A`3`&Q|+!uGJJ}6}0n?+N|K8dY+Ui>p=uIIf)~S z{2;f$e~P4Ku`ZL62U%}O{0lC>9od#GRYJjoT5BW}|IOE=1+4qwSbkX5f2=?rq&IJ* z`oPUq@fC_0W|!2x$t|vAqAiF6UhZ(4-wjXYE_S{|J&+%DX?LW)(h&%ILt2~%enATX zb~HZ-j-p+u#ftk>6NhKJHH^()m>+`7_+U-)6_%Wt2Uwg@?bY+{`hWDI;EUtn= za&~xgIVy0>=VFGY3 z;NvMaruRItp22gvUF4j! zb*9!HUjN<}yIFE#?D?h+vOy4W*v}^93oOG1Sk*sSDt-SkaHLc$t z>wIDVS)GN=ix&BiFRzP|a%))C6h>8WQJ8^-%qa^ZPApmlp{UKS_66tSG{==Nf*dcdLkd+LPf*B$aICJjS8i zT`r6yrE6DQhgxknA#_f~1dCwnpoGddYIRa1+)A%Q{@vkees&e~K~L1a$&+xKEvqu6 z;B+jYqw36iZPFWSf8@B&2_0p3*OTeloEjOF1Tz7jWIr*h(M#SmbDH&VWYhg1{OYdn z@ZnA|BR=PSz;tD?Cou;eKL)ALdCwX99NjcNs^3>ofVE!cjH2-hx1z71SGaZQtg+B$ zQYDJJh%w#e4HA($O%^8N=dsuA#KHI&Es^GUEY(_I?X(#)mHs$Lc~fJ!p8dpBr9zvr zg>HV=?^#D3$(w)2chF$=DB;7!30|r&G4eAr)opDG!Q%w!2(y3Mop`@~esg(`%X!{9 z`gBi3I7;#=H=*wCTBfYL8T-QQT;b7xpE&}l$%jD4hY%#*u!t+7N9cm`YXYpFTxfA*6O(!^S*h%;Y#Q9Uj9Xi_W%W+V@xvXeqbCv@8 zN`_HO!0Z@fI$93q+@Wudnmh-o--Iy4D4&p(rv33Gyf;I^h5IvbF%Af%$E93S*${R~ zN@kS*`FY_WW-K#Sm zuD|r~TX1T!ZDJx=VSC8i+eB7lD(56lhc`J_V(VLNB zmg^KRa(qt%3)G}kWHY6ow1!qnv|TjJqutNXPm$nlf52}T(lZU zs2~fsvKcyv1Vw-R*S(Fv6kk$s;<7K^KBBP@q~du#mB!5$)3mKFJRR3=@$y)S^Zo&M z<;NYKeC#p^HX)H;R83BI8iVC+%9V#QSKHSYv*#|_(dI@p4j`(Nk1Q-%FxjSlHc~Gp z9|dO7%bfLN1Xjmi3lH`?6Uf)x?&Ev=?pMZEPQxsX5{MeFa~QGc&-m31*bl1FOBf^h7Skf%Ew`Oa`BSY9O?x;SfVGw=ff<1xODsl z)!&*0#XyEZ9EGey9R$t8Q54#gsklGCU4}FdKr>#Vi46GuSy*Z7FmXxf63)R(fRMhC z_+t_L?$UetvFDb`JB_OZ8$H>hBNhyW_mT&$_E8{CQT|)dN=ebXQ@V!zPhlvrC{|kS zQh*EiZ|R@oYsm9=KxpnItjD#D13T6#-Rg07-8zq)jZse|>c*B$cInjD!i48fhIOu= z&_+Q>px`XBnC|y|gE68B{ON zq2@}enE#=eWdluM`c7 zyv>EJ9m>}(n_!qL@=So{aalMG(OLn-Op1aN*5p$*rX^?w>hmlO)XTXfWR0agoX3?+YM0F z&c`16qejjkoOi2TJqxrQG$ZagbSnK>#GI1nBFmD@Krj=zcr!)vK)&`wyoey=M616o zaSTI`#DzXBB!VOW*R4i8P*JzB{fT6HwVUD827GUA z%RXY#RRE@xXJi2qXVr6}ANq93+X^@r#WY?joGcoT?j)T|^$sS18zIFE)J5VXS@N6t zO$#?cSeID=>C)qGaG`eo(v@-?MSK#LIs!;Ow$wiP4DsL&Zs48|O(iJDk zBz}^t<@;yhBpXBP7S)5b%T?%pTm2QG=gW3lx7RR>25Klb4O7%cGBT(g@OY$yRab-U zmYGNDkIDG)>{j4%Q|B(Lz0Y3SqOk!ttTnrXs*yE2=zmy`uHD0Gpl=usbkNst7jKxy zWADB413dep4P@v=S|kRUpx)y^){FBFgi($@;}ujCMH7ji;{wDHS%rMx_drJ8ujG3C zGx(eAI^hWerG#NEQIzab#`K@ajLonXzWxrA!*~4bT4fMK#t1tkf!TDjnPlNUD>l32GsOtnt2cA{ z=17{!!KGAUMilZX2MKXlxQ#nUD3h_BJD&+CWH0{O+siS47eGGR2NapvdEJL#)||e*Lu)K{?<#1tIniw zK}ZzDmLFgM{(L;ZFc9P_e9hTADYW3sB29~lpRr|GOan}Vml})-cc~o_E*5-5t}~bO zHcQEE)dMGooKN4R|A4mW&4`wyl~Q~QlQtZl%?Yp2*-I22CKH(9cn!D_luL(2s$BKR zi5d44)XOA$2D84J5{8LRXv#~dx;2&GLEv5^mkfmSF=YJ1LZ68M&|v#U{JSSOJ^u85 zekxKSOwL9q50VzyR!KpwjL@D709R8Hy~`~IcJHJTXTpRX43eL3t}O|E?O0^R-NZ@! z9X_3@J9rn<(LhBMXuTLTB^r$2wkcgHRNsZFMWxPYQu}T6X=zA1#=K|0!afEo z>S~@4*XIfQ#fL$lH22+ATpUF+UaZ&AouoW&0^Y*Y%}bfWoKlkf3l;YB4kVOO*~ZZp6+KwkqQ43PZ5g$-@~(R491cH^1Vp` +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +# flake8: noqa + +from . import test_tile diff --git a/web_dashboard_tile/tests/test_tile.py b/web_dashboard_tile/tests/test_tile.py new file mode 100644 index 00000000..90604ab9 --- /dev/null +++ b/web_dashboard_tile/tests/test_tile.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# © 2016 Antonio Espinosa - +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp.tests.common import TransactionCase + + +class TestTile(TransactionCase): + def test_tile(self): + tile_obj = self.env['tile.tile'] + model_id = self.env['ir.model'].search([ + ('model', '=', 'tile.tile')]) + field_id = self.env['ir.model.fields'].search([ + ('model_id', '=', model_id.id), + ('name', '=', 'sequence')]) + self.tile1 = tile_obj.create({ + 'name': 'Count / Sum', + 'sequence': 1, + 'model_id': model_id.id, + 'domain': "[('model_id', '=', %d)]" % model_id.id, + 'secondary_function': 'sum', + 'secondary_field_id': field_id.id}) + self.tile2 = tile_obj.create({ + 'name': 'Min / Max', + 'sequence': 2, + 'model_id': model_id.id, + 'domain': "[('model_id', '=', %d)]" % model_id.id, + 'primary_function': 'min', + 'primary_field_id': field_id.id, + 'secondary_function': 'max', + 'secondary_field_id': field_id.id}) + self.tile3 = tile_obj.create({ + 'name': 'Avg / Median', + 'sequence': 3, + 'model_id': model_id.id, + 'domain': "[('model_id', '=', %d)]" % model_id.id, + 'primary_function': 'avg', + 'primary_field_id': field_id.id, + 'secondary_function': 'median', + 'secondary_field_id': field_id.id}) + # count + self.assertEqual(self.tile1.primary_value, '3') + # sum + self.assertEqual(self.tile1.secondary_value, '6') + # min + self.assertEqual(self.tile2.primary_value, '1') + # max + self.assertEqual(self.tile2.secondary_value, '3') + # average + self.assertEqual(self.tile3.primary_value, '2') + # median + self.assertEqual(self.tile3.secondary_value, '2.0') diff --git a/web_dashboard_tile/views/tile.xml b/web_dashboard_tile/views/tile.xml index 5eef1756..6f994a17 100644 --- a/web_dashboard_tile/views/tile.xml +++ b/web_dashboard_tile/views/tile.xml @@ -9,8 +9,10 @@ - - + + + + @@ -34,11 +36,50 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -53,37 +94,31 @@ - - - - + + + + +

-
- -
-
- -
- -
- +
+
+
-
From a3247c93e546582dd32175d825886d3888cadecc Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sun, 20 Nov 2016 02:33:28 +0100 Subject: [PATCH 062/103] [UPD] addons table in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ba41b5d7..16314324 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ addon | version | summary [web_clean_navbar](web_clean_navbar/) | 8.0.1.0.0 | Better visibility for the backend's main menu [web_context_in_colors](web_context_in_colors/) | 8.0.1.1.0 | Use the context in a tree view's colors and fonts attribute [web_dashboard_open_action](web_dashboard_open_action/) | 8.0.1.0.0 | Adds a button to open a dashboard in full mode -[web_dashboard_tile](web_dashboard_tile/) | 8.0.1.1.0 | Add Tiles to Dashboard +[web_dashboard_tile](web_dashboard_tile/) | 8.0.3.0.0 | Add Tiles to Dashboard [web_dialog_size](web_dialog_size/) | 8.0.0.1.0 | A module that lets the user expand a dialog box to the full screen width. [web_dom_model_classes](web_dom_model_classes/) | 8.0.1.0.0 | Allows small UI changes with simple CSS [web_easy_switch_company](web_easy_switch_company/) | 8.0.1.0.0 | Multicompany - Easy Switch Company From 62539e36f9da22f38b9848118ed50791f6cf4340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Wed, 23 Nov 2016 15:19:00 +0100 Subject: [PATCH 063/103] [8.0] render axis values in received order --- web_widget_x2many_2d_matrix/README.rst | 1 + .../static/src/js/web_widget_x2many_2d_matrix.js | 12 ++++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/web_widget_x2many_2d_matrix/README.rst b/web_widget_x2many_2d_matrix/README.rst index a22f8e00..377291d9 100644 --- a/web_widget_x2many_2d_matrix/README.rst +++ b/web_widget_x2many_2d_matrix/README.rst @@ -28,6 +28,7 @@ result could look like this: The beauty of this is that you have an arbitrary amount of columns with this widget, trying to get this in standard x2many lists involves some quite ugly hacks. +Note: The order of axis values depends on their order in the matrix you provide. Usage ===== diff --git a/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js b/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js index 88ba1745..e438c47e 100644 --- a/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js +++ b/web_widget_x2many_2d_matrix/static/src/js/web_widget_x2many_2d_matrix.js @@ -14,6 +14,8 @@ openerp.web_widget_x2many_2d_matrix = function(instance) // those will be filled with rows from the dataset by_x_axis: {}, by_y_axis: {}, + by_x_axis_sorted: [], + by_y_axis_sorted: [], by_id: {}, // configuration values field_x_axis: 'x', @@ -76,6 +78,8 @@ openerp.web_widget_x2many_2d_matrix = function(instance) var self = this, result = this._super.apply(this, arguments); + self.by_x_axis_sorted = [] + self.by_y_axis_sorted = [] self.by_x_axis = {}; self.by_y_axis = {}; self.by_id = {}; @@ -206,6 +210,10 @@ openerp.web_widget_x2many_2d_matrix = function(instance) } return true; }); + if(this.by_x_axis_sorted.indexOf(x) == -1) + this.by_x_axis_sorted.push(x) + if(this.by_y_axis_sorted.indexOf(y) == -1) + this.by_y_axis_sorted.push(y) this.by_x_axis[x] = this.by_x_axis[x] || {}; this.by_y_axis[y] = this.by_y_axis[y] || {}; this.by_x_axis[x][y] = row; @@ -216,13 +224,13 @@ openerp.web_widget_x2many_2d_matrix = function(instance) // get x axis values in the correct order get_x_axis_values: function() { - return _.keys(this.by_x_axis); + return this.by_x_axis_sorted }, // get y axis values in the correct order get_y_axis_values: function() { - return _.keys(this.by_y_axis); + return this.by_y_axis_sorted }, // get the label for a value on the x axis From adae577c58ab779e27cac83e035598224ad9abfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Todorovich?= Date: Wed, 23 Nov 2016 13:12:43 -0300 Subject: [PATCH 064/103] [8.0][FIX] web_dashboard_tile security rule Rule was not being updated because of ``, hence the groups field of the tile was not working. --- web_dashboard_tile/__openerp__.py | 2 +- .../migrations/8.0.4.0/post-migration.py | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 web_dashboard_tile/migrations/8.0.4.0/post-migration.py diff --git a/web_dashboard_tile/__openerp__.py b/web_dashboard_tile/__openerp__.py index 8a1dd6c7..a8a9b558 100644 --- a/web_dashboard_tile/__openerp__.py +++ b/web_dashboard_tile/__openerp__.py @@ -5,7 +5,7 @@ { "name": "Dashboard Tile", "summary": "Add Tiles to Dashboard", - "version": "8.0.3.0.0", + "version": "8.0.4.0.0", "depends": [ 'web', 'board', diff --git a/web_dashboard_tile/migrations/8.0.4.0/post-migration.py b/web_dashboard_tile/migrations/8.0.4.0/post-migration.py new file mode 100644 index 00000000..570f814e --- /dev/null +++ b/web_dashboard_tile/migrations/8.0.4.0/post-migration.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# © 2016 Iván Todorovich +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + + +def migrate(cr, version): + if version is None: + return + + # Update ir.rule + cr.execute(""" + SELECT res_id FROM ir_model_data + WHERE name = 'model_tile_rule' + AND module = 'web_dashboard_tile'""") + rule_id = cr.fetchone()[0] + new_domain = """[ + "|", + ("user_id","=",user.id), + ("user_id","=",False), + "|", + ("group_ids","=",False), + ("group_ids","in",[g.id for g in user.groups_id]), + ]""" + cr.execute(""" + UPDATE ir_rule SET domain_force = '%(domain)s' + WHERE id = '%(id)s' """ % {'domain': new_domain, 'id': rule_id}) From 806793635f9a4263fcfcdd28afa6fc8f85f1f254 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sat, 26 Nov 2016 02:34:01 +0100 Subject: [PATCH 065/103] [UPD] addons table in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16314324..17f4ccbb 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ addon | version | summary [web_clean_navbar](web_clean_navbar/) | 8.0.1.0.0 | Better visibility for the backend's main menu [web_context_in_colors](web_context_in_colors/) | 8.0.1.1.0 | Use the context in a tree view's colors and fonts attribute [web_dashboard_open_action](web_dashboard_open_action/) | 8.0.1.0.0 | Adds a button to open a dashboard in full mode -[web_dashboard_tile](web_dashboard_tile/) | 8.0.3.0.0 | Add Tiles to Dashboard +[web_dashboard_tile](web_dashboard_tile/) | 8.0.4.0.0 | Add Tiles to Dashboard [web_dialog_size](web_dialog_size/) | 8.0.0.1.0 | A module that lets the user expand a dialog box to the full screen width. [web_dom_model_classes](web_dom_model_classes/) | 8.0.1.0.0 | Allows small UI changes with simple CSS [web_easy_switch_company](web_easy_switch_company/) | 8.0.1.0.0 | Multicompany - Easy Switch Company From d11c001d1e3c76e38cb9e895aaedb5cb2b911df5 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 29 Nov 2016 14:34:08 -0500 Subject: [PATCH 066/103] OCA Transbot updated translations from Transifex --- help_online/i18n/am.po | 6 +- help_online/i18n/ar.po | 8 +- help_online/i18n/bg.po | 236 +++++++++++++ help_online/i18n/bs.po | 236 +++++++++++++ help_online/i18n/ca.po | 6 +- help_online/i18n/ca_ES.po | 236 +++++++++++++ help_online/i18n/cs.po | 20 +- help_online/i18n/da.po | 236 +++++++++++++ help_online/i18n/el_GR.po | 8 +- help_online/i18n/en_GB.po | 236 +++++++++++++ help_online/i18n/es.po | 29 +- help_online/i18n/es_AR.po | 236 +++++++++++++ help_online/i18n/es_CO.po | 236 +++++++++++++ help_online/i18n/es_CR.po | 8 +- help_online/i18n/es_EC.po | 20 +- help_online/i18n/es_ES.po | 6 +- help_online/i18n/es_MX.po | 20 +- help_online/i18n/es_PE.po | 236 +++++++++++++ help_online/i18n/es_PY.po | 236 +++++++++++++ help_online/i18n/es_VE.po | 18 +- help_online/i18n/et.po | 20 +- help_online/i18n/eu.po | 236 +++++++++++++ help_online/i18n/fa.po | 236 +++++++++++++ help_online/i18n/fr_CH.po | 236 +++++++++++++ help_online/i18n/gl.po | 8 +- help_online/i18n/gl_ES.po | 236 +++++++++++++ help_online/i18n/he.po | 236 +++++++++++++ help_online/i18n/hr.po | 16 +- help_online/i18n/hr_HR.po | 236 +++++++++++++ help_online/i18n/hu.po | 236 +++++++++++++ help_online/i18n/ja.po | 236 +++++++++++++ help_online/i18n/ko.po | 236 +++++++++++++ help_online/i18n/lt.po | 20 +- help_online/i18n/lv.po | 236 +++++++++++++ help_online/i18n/mk.po | 236 +++++++++++++ help_online/i18n/mn.po | 236 +++++++++++++ help_online/i18n/nb.po | 236 +++++++++++++ help_online/i18n/nl.po | 16 +- help_online/i18n/nl_BE.po | 20 +- help_online/i18n/pl.po | 20 +- help_online/i18n/pt.po | 10 +- help_online/i18n/pt_BR.po | 10 +- help_online/i18n/pt_PT.po | 10 +- help_online/i18n/ro.po | 6 +- help_online/i18n/ru.po | 6 +- help_online/i18n/sk.po | 236 +++++++++++++ help_online/i18n/sr.po | 236 +++++++++++++ help_online/i18n/sr@latin.po | 236 +++++++++++++ help_online/i18n/sv.po | 236 +++++++++++++ help_online/i18n/th.po | 20 +- help_online/i18n/uk.po | 236 +++++++++++++ help_online/i18n/vi.po | 20 +- help_online/i18n/zh_CN.po | 236 +++++++++++++ help_online/i18n/zh_TW.po | 236 +++++++++++++ help_popup/i18n/es.po | 23 +- web_advanced_search_wildcard/i18n/es.po | 26 ++ web_advanced_search_x2x/i18n/hr_HR.po | 46 +++ web_ckeditor4/i18n/ar.po | 27 +- web_ckeditor4/i18n/bg.po | 38 ++ web_ckeditor4/i18n/bs.po | 38 ++ web_ckeditor4/i18n/cs.po | 38 ++ web_ckeditor4/i18n/da.po | 38 ++ web_ckeditor4/i18n/en_GB.po | 38 ++ web_ckeditor4/i18n/es.po | 11 +- web_ckeditor4/i18n/es_AR.po | 38 ++ web_ckeditor4/i18n/es_CO.po | 38 ++ web_ckeditor4/i18n/es_CR.po | 38 ++ web_ckeditor4/i18n/es_EC.po | 38 ++ web_ckeditor4/i18n/es_MX.po | 38 ++ web_ckeditor4/i18n/es_PE.po | 38 ++ web_ckeditor4/i18n/es_PY.po | 38 ++ web_ckeditor4/i18n/es_VE.po | 38 ++ web_ckeditor4/i18n/et.po | 38 ++ web_ckeditor4/i18n/eu.po | 38 ++ web_ckeditor4/i18n/fa.po | 38 ++ web_ckeditor4/i18n/fr_CH.po | 38 ++ web_ckeditor4/i18n/gl.po | 4 +- web_ckeditor4/i18n/gl_ES.po | 38 ++ web_ckeditor4/i18n/he.po | 38 ++ web_ckeditor4/i18n/hr.po | 6 +- web_ckeditor4/i18n/hr_HR.po | 38 ++ web_ckeditor4/i18n/ja.po | 38 ++ web_ckeditor4/i18n/ko.po | 38 ++ web_ckeditor4/i18n/lt.po | 38 ++ web_ckeditor4/i18n/lv.po | 38 ++ web_ckeditor4/i18n/mk.po | 38 ++ web_ckeditor4/i18n/mn.po | 38 ++ web_ckeditor4/i18n/nb.po | 38 ++ web_ckeditor4/i18n/nl.po | 4 +- web_ckeditor4/i18n/nl_BE.po | 38 ++ web_ckeditor4/i18n/pt.po | 6 +- web_ckeditor4/i18n/pt_BR.po | 26 +- web_ckeditor4/i18n/pt_PT.po | 6 +- web_ckeditor4/i18n/sk.po | 38 ++ web_ckeditor4/i18n/sr@latin.po | 38 ++ web_ckeditor4/i18n/sv.po | 38 ++ web_ckeditor4/i18n/th.po | 38 ++ web_ckeditor4/i18n/uk.po | 38 ++ web_ckeditor4/i18n/vi.po | 38 ++ web_ckeditor4/i18n/zh_CN.po | 38 ++ web_ckeditor4/i18n/zh_TW.po | 38 ++ web_dashboard_tile/i18n/ar.po | 143 ++++++-- web_dashboard_tile/i18n/bg.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/bs.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/cs.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/da.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/de.po | 139 ++++++-- web_dashboard_tile/i18n/en_GB.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es.po | 155 ++++++-- web_dashboard_tile/i18n/es_AR.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_CL.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_CO.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_CR.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_DO.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_EC.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_MX.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_PE.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_PY.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/es_VE.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/et.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/eu.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/fa.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/fi.po | 137 ++++++-- web_dashboard_tile/i18n/fr.po | 137 ++++++-- web_dashboard_tile/i18n/fr_CA.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/fr_CH.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/gl.po | 137 ++++++-- web_dashboard_tile/i18n/gl_ES.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/he.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/hr.po | 153 +++++--- web_dashboard_tile/i18n/hr_HR.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/hu.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/id.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/it.po | 137 ++++++-- web_dashboard_tile/i18n/ja.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/ko.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/lt.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/lv.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/mk.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/mn.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/nb.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/nl.po | 142 ++++++-- web_dashboard_tile/i18n/nl_BE.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/pl.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/pt.po | 143 ++++++-- web_dashboard_tile/i18n/pt_BR.po | 145 ++++++-- web_dashboard_tile/i18n/pt_PT.po | 143 ++++++-- web_dashboard_tile/i18n/ro.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/ru.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/sk.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/sl.po | 140 ++++++-- web_dashboard_tile/i18n/sr.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/sr@latin.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/sv.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/th.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/tr.po | 138 ++++++-- web_dashboard_tile/i18n/uk.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/vi.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/zh_CN.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/zh_TW.po | 330 ++++++++++++++++++ web_favicon/i18n/es.po | 23 +- web_favicon/i18n/pt_BR.po | 4 +- web_graph_improved/i18n/bg.po | 38 ++ web_graph_improved/i18n/bs.po | 38 ++ web_graph_improved/i18n/cs.po | 38 ++ web_graph_improved/i18n/da.po | 38 ++ web_graph_improved/i18n/en_GB.po | 38 ++ web_graph_improved/i18n/es_AR.po | 38 ++ web_graph_improved/i18n/es_CO.po | 38 ++ web_graph_improved/i18n/es_CR.po | 38 ++ web_graph_improved/i18n/es_EC.po | 38 ++ web_graph_improved/i18n/es_MX.po | 38 ++ web_graph_improved/i18n/es_PE.po | 38 ++ web_graph_improved/i18n/es_VE.po | 38 ++ web_graph_improved/i18n/eu.po | 38 ++ web_graph_improved/i18n/he.po | 38 ++ web_graph_improved/i18n/ja.po | 38 ++ web_graph_improved/i18n/lt.po | 38 ++ web_graph_improved/i18n/lv.po | 38 ++ web_graph_improved/i18n/mk.po | 38 ++ web_graph_improved/i18n/mn.po | 38 ++ web_graph_improved/i18n/nb.po | 38 ++ web_graph_improved/i18n/nl_BE.po | 38 ++ web_graph_improved/i18n/pl.po | 38 ++ web_graph_improved/i18n/sk.po | 38 ++ web_graph_improved/i18n/sr@latin.po | 38 ++ web_graph_improved/i18n/sv.po | 38 ++ web_graph_improved/i18n/th.po | 38 ++ web_graph_improved/i18n/uk.po | 38 ++ web_graph_improved/i18n/vi.po | 38 ++ web_graph_improved/i18n/zh_CN.po | 38 ++ web_graph_improved/i18n/zh_TW.po | 38 ++ web_hideleftmenu/i18n/es.po | 26 ++ web_m2x_options/i18n/ar.po | 14 +- web_m2x_options/i18n/de.po | 14 +- web_m2x_options/i18n/es.po | 18 +- web_m2x_options/i18n/fi.po | 23 +- web_m2x_options/i18n/fr.po | 12 +- web_m2x_options/i18n/hr.po | 52 +++ web_m2x_options/i18n/hr_HR.po | 52 +++ web_m2x_options/i18n/it.po | 13 +- web_m2x_options/i18n/pt_BR.po | 13 +- web_m2x_options/i18n/sl.po | 15 +- web_m2x_options/i18n/tr.po | 16 +- web_menu_navbar_needaction/i18n/es.po | 61 ++++ web_menu_navbar_needaction/i18n/fi.po | 56 +++ web_menu_navbar_needaction/i18n/sl.po | 60 ++++ web_offline_warning/i18n/es.po | 15 +- web_option_auto_color/i18n/es.po | 28 ++ web_search_autocomplete_prefetch/i18n/es.po | 24 ++ web_search_autocomplete_prefetch/i18n/fi.po | 24 ++ web_search_datetime_completion/i18n/es.po | 26 ++ web_shortcuts/i18n/ar.po | 31 +- web_shortcuts/i18n/bg.po | 80 +++++ web_shortcuts/i18n/bs.po | 36 +- web_shortcuts/i18n/cs.po | 37 +- web_shortcuts/i18n/da.po | 34 +- web_shortcuts/i18n/en_GB.po | 36 +- web_shortcuts/i18n/es_AR.po | 80 +++++ web_shortcuts/i18n/es_CO.po | 80 +++++ web_shortcuts/i18n/es_CR.po | 80 +++++ web_shortcuts/i18n/es_EC.po | 80 +++++ web_shortcuts/i18n/es_MX.po | 80 +++++ web_shortcuts/i18n/es_PE.po | 80 +++++ web_shortcuts/i18n/es_PY.po | 80 +++++ web_shortcuts/i18n/es_VE.po | 80 +++++ web_shortcuts/i18n/et.po | 80 +++++ web_shortcuts/i18n/eu.po | 80 +++++ web_shortcuts/i18n/fa.po | 80 +++++ web_shortcuts/i18n/fr_CH.po | 80 +++++ web_shortcuts/i18n/gl.po | 9 +- web_shortcuts/i18n/gl_ES.po | 80 +++++ web_shortcuts/i18n/he.po | 80 +++++ web_shortcuts/i18n/hr.po | 20 +- web_shortcuts/i18n/hr_HR.po | 80 +++++ web_shortcuts/i18n/hu.po | 37 +- web_shortcuts/i18n/ja.po | 80 +++++ web_shortcuts/i18n/ko.po | 80 +++++ web_shortcuts/i18n/lt.po | 56 ++- web_shortcuts/i18n/lv.po | 80 +++++ web_shortcuts/i18n/mk.po | 42 ++- web_shortcuts/i18n/mn.po | 59 +++- web_shortcuts/i18n/nb.po | 80 +++++ web_shortcuts/i18n/nl.po | 16 +- web_shortcuts/i18n/nl_BE.po | 80 +++++ web_shortcuts/i18n/pl.po | 40 ++- web_shortcuts/i18n/pt.po | 11 +- web_shortcuts/i18n/pt_BR.po | 26 +- web_shortcuts/i18n/pt_PT.po | 6 +- web_shortcuts/i18n/sk.po | 80 +++++ web_shortcuts/i18n/sr@latin.po | 80 +++++ web_shortcuts/i18n/sv.po | 37 +- web_shortcuts/i18n/th.po | 64 +++- web_shortcuts/i18n/uk.po | 80 +++++ web_shortcuts/i18n/vi.po | 36 +- web_shortcuts/i18n/zh_CN.po | 64 +++- web_shortcuts/i18n/zh_TW.po | 38 +- web_switch_company_warning/i18n/es.po | 23 +- web_translate_dialog/i18n/bg.po | 53 +++ web_translate_dialog/i18n/bs.po | 53 +++ web_translate_dialog/i18n/ca_ES.po | 53 +++ web_translate_dialog/i18n/el_GR.po | 53 +++ web_translate_dialog/i18n/en_GB.po | 53 +++ web_translate_dialog/i18n/fr_CH.po | 53 +++ web_translate_dialog/i18n/hu.po | 53 +++ web_translate_dialog/i18n/ja.po | 53 +++ web_translate_dialog/i18n/mk.po | 53 +++ web_translate_dialog/i18n/mn.po | 53 +++ web_translate_dialog/i18n/nb.po | 53 +++ web_translate_dialog/i18n/ru.po | 4 +- web_translate_dialog/i18n/sr@latin.po | 53 +++ web_translate_dialog/i18n/sv.po | 53 +++ web_translate_dialog/i18n/zh_TW.po | 53 +++ web_tree_dynamic_colored_field/i18n/es.po | 26 ++ web_widget_digitized_signature/i18n/ar.po | 39 +++ web_widget_digitized_signature/i18n/bg.po | 39 +++ web_widget_digitized_signature/i18n/bs.po | 39 +++ web_widget_digitized_signature/i18n/cs.po | 39 +++ web_widget_digitized_signature/i18n/da.po | 39 +++ web_widget_digitized_signature/i18n/en_GB.po | 39 +++ web_widget_digitized_signature/i18n/es.po | 40 +++ web_widget_digitized_signature/i18n/es_AR.po | 39 +++ web_widget_digitized_signature/i18n/es_CO.po | 39 +++ web_widget_digitized_signature/i18n/es_CR.po | 39 +++ web_widget_digitized_signature/i18n/es_EC.po | 39 +++ web_widget_digitized_signature/i18n/es_MX.po | 39 +++ web_widget_digitized_signature/i18n/es_PE.po | 39 +++ web_widget_digitized_signature/i18n/es_VE.po | 39 +++ web_widget_digitized_signature/i18n/eu.po | 39 +++ web_widget_digitized_signature/i18n/fa.po | 39 +++ web_widget_digitized_signature/i18n/he.po | 39 +++ web_widget_digitized_signature/i18n/hr.po | 39 +++ web_widget_digitized_signature/i18n/ja.po | 39 +++ web_widget_digitized_signature/i18n/lt.po | 39 +++ web_widget_digitized_signature/i18n/lv.po | 39 +++ web_widget_digitized_signature/i18n/mk.po | 39 +++ web_widget_digitized_signature/i18n/mn.po | 39 +++ web_widget_digitized_signature/i18n/nb.po | 39 +++ web_widget_digitized_signature/i18n/nl_BE.po | 39 +++ web_widget_digitized_signature/i18n/pl.po | 39 +++ web_widget_digitized_signature/i18n/sk.po | 39 +++ .../i18n/sr@latin.po | 39 +++ web_widget_digitized_signature/i18n/sv.po | 39 +++ web_widget_digitized_signature/i18n/th.po | 39 +++ web_widget_digitized_signature/i18n/uk.po | 39 +++ web_widget_digitized_signature/i18n/vi.po | 39 +++ web_widget_digitized_signature/i18n/zh_CN.po | 39 +++ web_widget_digitized_signature/i18n/zh_TW.po | 39 +++ .../i18n/es.po | 45 ++- web_widget_image_download/i18n/ar.po | 26 ++ web_widget_image_download/i18n/bg.po | 26 ++ web_widget_image_download/i18n/bs.po | 26 ++ web_widget_image_download/i18n/cs.po | 26 ++ web_widget_image_download/i18n/da.po | 26 ++ web_widget_image_download/i18n/en_GB.po | 26 ++ web_widget_image_download/i18n/es.po | 26 ++ web_widget_image_download/i18n/es_AR.po | 26 ++ web_widget_image_download/i18n/es_CL.po | 26 ++ web_widget_image_download/i18n/es_CO.po | 26 ++ web_widget_image_download/i18n/es_CR.po | 26 ++ web_widget_image_download/i18n/es_DO.po | 26 ++ web_widget_image_download/i18n/es_EC.po | 26 ++ web_widget_image_download/i18n/es_MX.po | 26 ++ web_widget_image_download/i18n/es_PE.po | 26 ++ web_widget_image_download/i18n/et.po | 26 ++ web_widget_image_download/i18n/fa.po | 26 ++ web_widget_image_download/i18n/fi.po | 26 ++ web_widget_image_download/i18n/he.po | 26 ++ web_widget_image_download/i18n/hr.po | 26 ++ web_widget_image_download/i18n/hu.po | 26 ++ web_widget_image_download/i18n/id.po | 26 ++ web_widget_image_download/i18n/ja.po | 26 ++ web_widget_image_download/i18n/ko.po | 26 ++ web_widget_image_download/i18n/lt.po | 26 ++ web_widget_image_download/i18n/lv.po | 26 ++ web_widget_image_download/i18n/mk.po | 26 ++ web_widget_image_download/i18n/mn.po | 26 ++ web_widget_image_download/i18n/nb.po | 26 ++ web_widget_image_download/i18n/nl_BE.po | 26 ++ web_widget_image_download/i18n/pl.po | 26 ++ web_widget_image_download/i18n/sk.po | 26 ++ web_widget_image_download/i18n/sr@latin.po | 26 ++ web_widget_image_download/i18n/sv.po | 26 ++ web_widget_image_download/i18n/th.po | 26 ++ web_widget_image_download/i18n/uk.po | 26 ++ web_widget_image_download/i18n/vi.po | 26 ++ web_widget_image_download/i18n/zh_CN.po | 26 ++ web_widget_image_download/i18n/zh_TW.po | 26 ++ web_widget_mail_send_odoo/i18n/ca.po | 40 +++ web_widget_mail_send_odoo/i18n/es.po | 40 +++ web_widget_one2many_tags/i18n/es.po | 27 ++ web_widget_pattern/i18n/sl.po | 24 ++ web_widget_x2many_2d_matrix/i18n/bg.po | 26 ++ web_widget_x2many_2d_matrix/i18n/bs.po | 26 ++ web_widget_x2many_2d_matrix/i18n/cs.po | 26 ++ web_widget_x2many_2d_matrix/i18n/da.po | 26 ++ web_widget_x2many_2d_matrix/i18n/en_GB.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_AR.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_CO.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_CR.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_EC.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_MX.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_PE.po | 26 ++ web_widget_x2many_2d_matrix/i18n/es_VE.po | 26 ++ web_widget_x2many_2d_matrix/i18n/eu.po | 26 ++ web_widget_x2many_2d_matrix/i18n/fa.po | 26 ++ web_widget_x2many_2d_matrix/i18n/he.po | 26 ++ web_widget_x2many_2d_matrix/i18n/ja.po | 26 ++ web_widget_x2many_2d_matrix/i18n/lt.po | 26 ++ web_widget_x2many_2d_matrix/i18n/lv.po | 26 ++ web_widget_x2many_2d_matrix/i18n/mk.po | 26 ++ web_widget_x2many_2d_matrix/i18n/mn.po | 26 ++ web_widget_x2many_2d_matrix/i18n/nb.po | 26 ++ web_widget_x2many_2d_matrix/i18n/nl_BE.po | 26 ++ web_widget_x2many_2d_matrix/i18n/pl.po | 26 ++ web_widget_x2many_2d_matrix/i18n/sk.po | 26 ++ web_widget_x2many_2d_matrix/i18n/sr@latin.po | 26 ++ web_widget_x2many_2d_matrix/i18n/sv.po | 26 ++ web_widget_x2many_2d_matrix/i18n/th.po | 26 ++ web_widget_x2many_2d_matrix/i18n/uk.po | 26 ++ web_widget_x2many_2d_matrix/i18n/vi.po | 26 ++ web_widget_x2many_2d_matrix/i18n/zh_CN.po | 26 ++ web_widget_x2many_2d_matrix/i18n/zh_TW.po | 26 ++ web_x2m_filter/i18n/sl.po | 28 ++ 384 files changed, 33296 insertions(+), 821 deletions(-) create mode 100644 help_online/i18n/bg.po create mode 100644 help_online/i18n/bs.po create mode 100644 help_online/i18n/ca_ES.po create mode 100644 help_online/i18n/da.po create mode 100644 help_online/i18n/en_GB.po create mode 100644 help_online/i18n/es_AR.po create mode 100644 help_online/i18n/es_CO.po create mode 100644 help_online/i18n/es_PE.po create mode 100644 help_online/i18n/es_PY.po create mode 100644 help_online/i18n/eu.po create mode 100644 help_online/i18n/fa.po create mode 100644 help_online/i18n/fr_CH.po create mode 100644 help_online/i18n/gl_ES.po create mode 100644 help_online/i18n/he.po create mode 100644 help_online/i18n/hr_HR.po create mode 100644 help_online/i18n/hu.po create mode 100644 help_online/i18n/ja.po create mode 100644 help_online/i18n/ko.po create mode 100644 help_online/i18n/lv.po create mode 100644 help_online/i18n/mk.po create mode 100644 help_online/i18n/mn.po create mode 100644 help_online/i18n/nb.po create mode 100644 help_online/i18n/sk.po create mode 100644 help_online/i18n/sr.po create mode 100644 help_online/i18n/sr@latin.po create mode 100644 help_online/i18n/sv.po create mode 100644 help_online/i18n/uk.po create mode 100644 help_online/i18n/zh_CN.po create mode 100644 help_online/i18n/zh_TW.po create mode 100644 web_advanced_search_wildcard/i18n/es.po create mode 100644 web_advanced_search_x2x/i18n/hr_HR.po create mode 100644 web_ckeditor4/i18n/bg.po create mode 100644 web_ckeditor4/i18n/bs.po create mode 100644 web_ckeditor4/i18n/cs.po create mode 100644 web_ckeditor4/i18n/da.po create mode 100644 web_ckeditor4/i18n/en_GB.po create mode 100644 web_ckeditor4/i18n/es_AR.po create mode 100644 web_ckeditor4/i18n/es_CO.po create mode 100644 web_ckeditor4/i18n/es_CR.po create mode 100644 web_ckeditor4/i18n/es_EC.po create mode 100644 web_ckeditor4/i18n/es_MX.po create mode 100644 web_ckeditor4/i18n/es_PE.po create mode 100644 web_ckeditor4/i18n/es_PY.po create mode 100644 web_ckeditor4/i18n/es_VE.po create mode 100644 web_ckeditor4/i18n/et.po create mode 100644 web_ckeditor4/i18n/eu.po create mode 100644 web_ckeditor4/i18n/fa.po create mode 100644 web_ckeditor4/i18n/fr_CH.po create mode 100644 web_ckeditor4/i18n/gl_ES.po create mode 100644 web_ckeditor4/i18n/he.po create mode 100644 web_ckeditor4/i18n/hr_HR.po create mode 100644 web_ckeditor4/i18n/ja.po create mode 100644 web_ckeditor4/i18n/ko.po create mode 100644 web_ckeditor4/i18n/lt.po create mode 100644 web_ckeditor4/i18n/lv.po create mode 100644 web_ckeditor4/i18n/mk.po create mode 100644 web_ckeditor4/i18n/mn.po create mode 100644 web_ckeditor4/i18n/nb.po create mode 100644 web_ckeditor4/i18n/nl_BE.po create mode 100644 web_ckeditor4/i18n/sk.po create mode 100644 web_ckeditor4/i18n/sr@latin.po create mode 100644 web_ckeditor4/i18n/sv.po create mode 100644 web_ckeditor4/i18n/th.po create mode 100644 web_ckeditor4/i18n/uk.po create mode 100644 web_ckeditor4/i18n/vi.po create mode 100644 web_ckeditor4/i18n/zh_CN.po create mode 100644 web_ckeditor4/i18n/zh_TW.po create mode 100644 web_dashboard_tile/i18n/bg.po create mode 100644 web_dashboard_tile/i18n/bs.po create mode 100644 web_dashboard_tile/i18n/cs.po create mode 100644 web_dashboard_tile/i18n/da.po create mode 100644 web_dashboard_tile/i18n/en_GB.po create mode 100644 web_dashboard_tile/i18n/es_AR.po create mode 100644 web_dashboard_tile/i18n/es_CL.po create mode 100644 web_dashboard_tile/i18n/es_CO.po create mode 100644 web_dashboard_tile/i18n/es_CR.po create mode 100644 web_dashboard_tile/i18n/es_DO.po create mode 100644 web_dashboard_tile/i18n/es_EC.po create mode 100644 web_dashboard_tile/i18n/es_MX.po create mode 100644 web_dashboard_tile/i18n/es_PE.po create mode 100644 web_dashboard_tile/i18n/es_PY.po create mode 100644 web_dashboard_tile/i18n/es_VE.po create mode 100644 web_dashboard_tile/i18n/et.po create mode 100644 web_dashboard_tile/i18n/eu.po create mode 100644 web_dashboard_tile/i18n/fa.po create mode 100644 web_dashboard_tile/i18n/fr_CA.po create mode 100644 web_dashboard_tile/i18n/fr_CH.po create mode 100644 web_dashboard_tile/i18n/gl_ES.po create mode 100644 web_dashboard_tile/i18n/he.po create mode 100644 web_dashboard_tile/i18n/hr_HR.po create mode 100644 web_dashboard_tile/i18n/hu.po create mode 100644 web_dashboard_tile/i18n/id.po create mode 100644 web_dashboard_tile/i18n/ja.po create mode 100644 web_dashboard_tile/i18n/ko.po create mode 100644 web_dashboard_tile/i18n/lt.po create mode 100644 web_dashboard_tile/i18n/lv.po create mode 100644 web_dashboard_tile/i18n/mk.po create mode 100644 web_dashboard_tile/i18n/mn.po create mode 100644 web_dashboard_tile/i18n/nb.po create mode 100644 web_dashboard_tile/i18n/nl_BE.po create mode 100644 web_dashboard_tile/i18n/pl.po create mode 100644 web_dashboard_tile/i18n/ro.po create mode 100644 web_dashboard_tile/i18n/ru.po create mode 100644 web_dashboard_tile/i18n/sk.po create mode 100644 web_dashboard_tile/i18n/sr.po create mode 100644 web_dashboard_tile/i18n/sr@latin.po create mode 100644 web_dashboard_tile/i18n/sv.po create mode 100644 web_dashboard_tile/i18n/th.po create mode 100644 web_dashboard_tile/i18n/uk.po create mode 100644 web_dashboard_tile/i18n/vi.po create mode 100644 web_dashboard_tile/i18n/zh_CN.po create mode 100644 web_dashboard_tile/i18n/zh_TW.po create mode 100644 web_graph_improved/i18n/bg.po create mode 100644 web_graph_improved/i18n/bs.po create mode 100644 web_graph_improved/i18n/cs.po create mode 100644 web_graph_improved/i18n/da.po create mode 100644 web_graph_improved/i18n/en_GB.po create mode 100644 web_graph_improved/i18n/es_AR.po create mode 100644 web_graph_improved/i18n/es_CO.po create mode 100644 web_graph_improved/i18n/es_CR.po create mode 100644 web_graph_improved/i18n/es_EC.po create mode 100644 web_graph_improved/i18n/es_MX.po create mode 100644 web_graph_improved/i18n/es_PE.po create mode 100644 web_graph_improved/i18n/es_VE.po create mode 100644 web_graph_improved/i18n/eu.po create mode 100644 web_graph_improved/i18n/he.po create mode 100644 web_graph_improved/i18n/ja.po create mode 100644 web_graph_improved/i18n/lt.po create mode 100644 web_graph_improved/i18n/lv.po create mode 100644 web_graph_improved/i18n/mk.po create mode 100644 web_graph_improved/i18n/mn.po create mode 100644 web_graph_improved/i18n/nb.po create mode 100644 web_graph_improved/i18n/nl_BE.po create mode 100644 web_graph_improved/i18n/pl.po create mode 100644 web_graph_improved/i18n/sk.po create mode 100644 web_graph_improved/i18n/sr@latin.po create mode 100644 web_graph_improved/i18n/sv.po create mode 100644 web_graph_improved/i18n/th.po create mode 100644 web_graph_improved/i18n/uk.po create mode 100644 web_graph_improved/i18n/vi.po create mode 100644 web_graph_improved/i18n/zh_CN.po create mode 100644 web_graph_improved/i18n/zh_TW.po create mode 100644 web_hideleftmenu/i18n/es.po create mode 100644 web_m2x_options/i18n/hr.po create mode 100644 web_m2x_options/i18n/hr_HR.po create mode 100644 web_menu_navbar_needaction/i18n/es.po create mode 100644 web_menu_navbar_needaction/i18n/fi.po create mode 100644 web_menu_navbar_needaction/i18n/sl.po create mode 100644 web_option_auto_color/i18n/es.po create mode 100644 web_search_autocomplete_prefetch/i18n/es.po create mode 100644 web_search_autocomplete_prefetch/i18n/fi.po create mode 100644 web_search_datetime_completion/i18n/es.po create mode 100644 web_shortcuts/i18n/bg.po create mode 100644 web_shortcuts/i18n/es_AR.po create mode 100644 web_shortcuts/i18n/es_CO.po create mode 100644 web_shortcuts/i18n/es_CR.po create mode 100644 web_shortcuts/i18n/es_EC.po create mode 100644 web_shortcuts/i18n/es_MX.po create mode 100644 web_shortcuts/i18n/es_PE.po create mode 100644 web_shortcuts/i18n/es_PY.po create mode 100644 web_shortcuts/i18n/es_VE.po create mode 100644 web_shortcuts/i18n/et.po create mode 100644 web_shortcuts/i18n/eu.po create mode 100644 web_shortcuts/i18n/fa.po create mode 100644 web_shortcuts/i18n/fr_CH.po create mode 100644 web_shortcuts/i18n/gl_ES.po create mode 100644 web_shortcuts/i18n/he.po create mode 100644 web_shortcuts/i18n/hr_HR.po create mode 100644 web_shortcuts/i18n/ja.po create mode 100644 web_shortcuts/i18n/ko.po create mode 100644 web_shortcuts/i18n/lv.po create mode 100644 web_shortcuts/i18n/nb.po create mode 100644 web_shortcuts/i18n/nl_BE.po create mode 100644 web_shortcuts/i18n/sk.po create mode 100644 web_shortcuts/i18n/sr@latin.po create mode 100644 web_shortcuts/i18n/uk.po create mode 100644 web_translate_dialog/i18n/bg.po create mode 100644 web_translate_dialog/i18n/bs.po create mode 100644 web_translate_dialog/i18n/ca_ES.po create mode 100644 web_translate_dialog/i18n/el_GR.po create mode 100644 web_translate_dialog/i18n/en_GB.po create mode 100644 web_translate_dialog/i18n/fr_CH.po create mode 100644 web_translate_dialog/i18n/hu.po create mode 100644 web_translate_dialog/i18n/ja.po create mode 100644 web_translate_dialog/i18n/mk.po create mode 100644 web_translate_dialog/i18n/mn.po create mode 100644 web_translate_dialog/i18n/nb.po create mode 100644 web_translate_dialog/i18n/sr@latin.po create mode 100644 web_translate_dialog/i18n/sv.po create mode 100644 web_translate_dialog/i18n/zh_TW.po create mode 100644 web_tree_dynamic_colored_field/i18n/es.po create mode 100644 web_widget_digitized_signature/i18n/ar.po create mode 100644 web_widget_digitized_signature/i18n/bg.po create mode 100644 web_widget_digitized_signature/i18n/bs.po create mode 100644 web_widget_digitized_signature/i18n/cs.po create mode 100644 web_widget_digitized_signature/i18n/da.po create mode 100644 web_widget_digitized_signature/i18n/en_GB.po create mode 100644 web_widget_digitized_signature/i18n/es.po create mode 100644 web_widget_digitized_signature/i18n/es_AR.po create mode 100644 web_widget_digitized_signature/i18n/es_CO.po create mode 100644 web_widget_digitized_signature/i18n/es_CR.po create mode 100644 web_widget_digitized_signature/i18n/es_EC.po create mode 100644 web_widget_digitized_signature/i18n/es_MX.po create mode 100644 web_widget_digitized_signature/i18n/es_PE.po create mode 100644 web_widget_digitized_signature/i18n/es_VE.po create mode 100644 web_widget_digitized_signature/i18n/eu.po create mode 100644 web_widget_digitized_signature/i18n/fa.po create mode 100644 web_widget_digitized_signature/i18n/he.po create mode 100644 web_widget_digitized_signature/i18n/hr.po create mode 100644 web_widget_digitized_signature/i18n/ja.po create mode 100644 web_widget_digitized_signature/i18n/lt.po create mode 100644 web_widget_digitized_signature/i18n/lv.po create mode 100644 web_widget_digitized_signature/i18n/mk.po create mode 100644 web_widget_digitized_signature/i18n/mn.po create mode 100644 web_widget_digitized_signature/i18n/nb.po create mode 100644 web_widget_digitized_signature/i18n/nl_BE.po create mode 100644 web_widget_digitized_signature/i18n/pl.po create mode 100644 web_widget_digitized_signature/i18n/sk.po create mode 100644 web_widget_digitized_signature/i18n/sr@latin.po create mode 100644 web_widget_digitized_signature/i18n/sv.po create mode 100644 web_widget_digitized_signature/i18n/th.po create mode 100644 web_widget_digitized_signature/i18n/uk.po create mode 100644 web_widget_digitized_signature/i18n/vi.po create mode 100644 web_widget_digitized_signature/i18n/zh_CN.po create mode 100644 web_widget_digitized_signature/i18n/zh_TW.po create mode 100644 web_widget_image_download/i18n/ar.po create mode 100644 web_widget_image_download/i18n/bg.po create mode 100644 web_widget_image_download/i18n/bs.po create mode 100644 web_widget_image_download/i18n/cs.po create mode 100644 web_widget_image_download/i18n/da.po create mode 100644 web_widget_image_download/i18n/en_GB.po create mode 100644 web_widget_image_download/i18n/es.po create mode 100644 web_widget_image_download/i18n/es_AR.po create mode 100644 web_widget_image_download/i18n/es_CL.po create mode 100644 web_widget_image_download/i18n/es_CO.po create mode 100644 web_widget_image_download/i18n/es_CR.po create mode 100644 web_widget_image_download/i18n/es_DO.po create mode 100644 web_widget_image_download/i18n/es_EC.po create mode 100644 web_widget_image_download/i18n/es_MX.po create mode 100644 web_widget_image_download/i18n/es_PE.po create mode 100644 web_widget_image_download/i18n/et.po create mode 100644 web_widget_image_download/i18n/fa.po create mode 100644 web_widget_image_download/i18n/fi.po create mode 100644 web_widget_image_download/i18n/he.po create mode 100644 web_widget_image_download/i18n/hr.po create mode 100644 web_widget_image_download/i18n/hu.po create mode 100644 web_widget_image_download/i18n/id.po create mode 100644 web_widget_image_download/i18n/ja.po create mode 100644 web_widget_image_download/i18n/ko.po create mode 100644 web_widget_image_download/i18n/lt.po create mode 100644 web_widget_image_download/i18n/lv.po create mode 100644 web_widget_image_download/i18n/mk.po create mode 100644 web_widget_image_download/i18n/mn.po create mode 100644 web_widget_image_download/i18n/nb.po create mode 100644 web_widget_image_download/i18n/nl_BE.po create mode 100644 web_widget_image_download/i18n/pl.po create mode 100644 web_widget_image_download/i18n/sk.po create mode 100644 web_widget_image_download/i18n/sr@latin.po create mode 100644 web_widget_image_download/i18n/sv.po create mode 100644 web_widget_image_download/i18n/th.po create mode 100644 web_widget_image_download/i18n/uk.po create mode 100644 web_widget_image_download/i18n/vi.po create mode 100644 web_widget_image_download/i18n/zh_CN.po create mode 100644 web_widget_image_download/i18n/zh_TW.po create mode 100644 web_widget_mail_send_odoo/i18n/ca.po create mode 100644 web_widget_mail_send_odoo/i18n/es.po create mode 100644 web_widget_one2many_tags/i18n/es.po create mode 100644 web_widget_pattern/i18n/sl.po create mode 100644 web_widget_x2many_2d_matrix/i18n/bg.po create mode 100644 web_widget_x2many_2d_matrix/i18n/bs.po create mode 100644 web_widget_x2many_2d_matrix/i18n/cs.po create mode 100644 web_widget_x2many_2d_matrix/i18n/da.po create mode 100644 web_widget_x2many_2d_matrix/i18n/en_GB.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_AR.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_CO.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_CR.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_EC.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_MX.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_PE.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_VE.po create mode 100644 web_widget_x2many_2d_matrix/i18n/eu.po create mode 100644 web_widget_x2many_2d_matrix/i18n/fa.po create mode 100644 web_widget_x2many_2d_matrix/i18n/he.po create mode 100644 web_widget_x2many_2d_matrix/i18n/ja.po create mode 100644 web_widget_x2many_2d_matrix/i18n/lt.po create mode 100644 web_widget_x2many_2d_matrix/i18n/lv.po create mode 100644 web_widget_x2many_2d_matrix/i18n/mk.po create mode 100644 web_widget_x2many_2d_matrix/i18n/mn.po create mode 100644 web_widget_x2many_2d_matrix/i18n/nb.po create mode 100644 web_widget_x2many_2d_matrix/i18n/nl_BE.po create mode 100644 web_widget_x2many_2d_matrix/i18n/pl.po create mode 100644 web_widget_x2many_2d_matrix/i18n/sk.po create mode 100644 web_widget_x2many_2d_matrix/i18n/sr@latin.po create mode 100644 web_widget_x2many_2d_matrix/i18n/sv.po create mode 100644 web_widget_x2many_2d_matrix/i18n/th.po create mode 100644 web_widget_x2many_2d_matrix/i18n/uk.po create mode 100644 web_widget_x2many_2d_matrix/i18n/vi.po create mode 100644 web_widget_x2many_2d_matrix/i18n/zh_CN.po create mode 100644 web_widget_x2many_2d_matrix/i18n/zh_TW.po create mode 100644 web_x2m_filter/i18n/sl.po diff --git a/help_online/i18n/am.po b/help_online/i18n/am.po index 5e2c0306..7fda8b6b 100644 --- a/help_online/i18n/am.po +++ b/help_online/i18n/am.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" "MIME-Version: 1.0\n" @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "o" diff --git a/help_online/i18n/ar.po b/help_online/i18n/ar.po index 6771001c..754f5b06 100644 --- a/help_online/i18n/ar.po +++ b/help_online/i18n/ar.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "تم الإنشاء في" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "اسم العرض" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -157,7 +157,7 @@ msgstr "استيراد المساعدة الحية" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "آخر تعديل في" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 diff --git a/help_online/i18n/bg.po b/help_online/i18n/bg.po new file mode 100644 index 00000000..d868b3c5 --- /dev/null +++ b/help_online/i18n/bg.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "или" diff --git a/help_online/i18n/bs.po b/help_online/i18n/bs.po new file mode 100644 index 00000000..b9919348 --- /dev/null +++ b/help_online/i18n/bs.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "ili" diff --git a/help_online/i18n/ca.po b/help_online/i18n/ca.po index 45bceccb..af668aee 100644 --- a/help_online/i18n/ca.po +++ b/help_online/i18n/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" "MIME-Version: 1.0\n" @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "o" diff --git a/help_online/i18n/ca_ES.po b/help_online/i18n/ca_ES.po new file mode 100644 index 00000000..91590283 --- /dev/null +++ b/help_online/i18n/ca_ES.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/cs.po b/help_online/i18n/cs.po index 6f3e8e72..9a947b5d 100644 --- a/help_online/i18n/cs.po +++ b/help_online/i18n/cs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Vytvořil(a)" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Vytvořeno" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Zobrazovaný název" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Naposled upraveno" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Naposled upraveno" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Naposled upraveno" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "nebo" diff --git a/help_online/i18n/da.po b/help_online/i18n/da.po new file mode 100644 index 00000000..1dea7dd0 --- /dev/null +++ b/help_online/i18n/da.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "Id" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "eller" diff --git a/help_online/i18n/el_GR.po b/help_online/i18n/el_GR.po index c496a475..f7e23815 100644 --- a/help_online/i18n/el_GR.po +++ b/help_online/i18n/el_GR.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:26+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:30+0000\n" +"Last-Translator: Kostas Goutoudis \n" "Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Άκυρο" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/en_GB.po b/help_online/i18n/en_GB.po new file mode 100644 index 00000000..f8f0db72 --- /dev/null +++ b/help_online/i18n/en_GB.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "or" diff --git a/help_online/i18n/es.po b/help_online/i18n/es.po index dd4800a0..fe1f2902 100644 --- a/help_online/i18n/es.po +++ b/help_online/i18n/es.po @@ -4,6 +4,7 @@ # # Translators: # Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 # Antonio Trueba, 2016 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 @@ -19,16 +20,16 @@ # Matjaž Mozetič , 2015 # Paolo Valier, 2016 # Pedro Castro Silva , 2015 -# Pedro M. Baeza , 2015 +# Pedro M. Baeza , 2015-2016 # Rudolf Schnapka , 2016 # SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-16 21:45+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,13 +96,13 @@ msgstr "Exportar ayuda" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view msgid "Export Help Data" -msgstr "Exportar información de ayuda" +msgstr "Exportar datos de ayuda" #. module: help_online #: model:ir.model,name:help_online.model_export_help_wizard #: model:ir.ui.menu,name:help_online.menu_help_export msgid "Export Help Online" -msgstr "" +msgstr "Exportar ayuda en línea" #. module: help_online #: field:export.help.wizard,export_filename:0 @@ -112,7 +113,7 @@ msgstr "Exportar fichero XML" #: model:ir.ui.menu,name:help_online.menu_help #: model:ir.ui.menu,name:help_online.menu_help_main msgid "Help Online" -msgstr "" +msgstr "Ayuda en línea" #. module: help_online #: code:addons/help_online/models/help_online.py:52 @@ -149,12 +150,12 @@ msgstr "Importar ayuda" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view msgid "Import Help Data" -msgstr "Importar información de ayuda" +msgstr "Importar datos de ayuda" #. module: help_online #: model:ir.ui.menu,name:help_online.menu_help_import msgid "Import Help Online" -msgstr "" +msgstr "Importar ayuda en línea" #. module: help_online #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 @@ -184,14 +185,14 @@ msgstr "No hay información a exportar." #: code:addons/help_online/models/help_online.py:33 #, python-format msgid "No page prefix parameter specified !" -msgstr "" +msgstr "No se ha especificado un parámetro de prefijo de página" #. module: help_online #. openerp-web #: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" -msgstr "Ok" +msgstr "Aceptar" #. module: help_online #. openerp-web @@ -230,18 +231,18 @@ msgstr "No se ha podido escribir la copia de seguridad automática en el directo #. module: help_online #: view:ir.ui.view:help_online.view_view_search msgid "Website Page" -msgstr "" +msgstr "Página del sitio web" #. module: help_online #: view:ir.ui.view:help_online.view_view_form msgid "Website Page?" -msgstr "" +msgstr "¿Página del sitio web?" #. module: help_online #: model:ir.actions.act_window,name:help_online.action_website_pages #: model:ir.ui.menu,name:help_online.menu_help_pages msgid "Website Pages" -msgstr "" +msgstr "Páginas del sitio web" #. module: help_online #: field:export.help.wizard,data:0 diff --git a/help_online/i18n/es_AR.po b/help_online/i18n/es_AR.po new file mode 100644 index 00000000..49618c6c --- /dev/null +++ b/help_online/i18n/es_AR.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "o" diff --git a/help_online/i18n/es_CO.po b/help_online/i18n/es_CO.po new file mode 100644 index 00000000..693fe913 --- /dev/null +++ b/help_online/i18n/es_CO.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "o" diff --git a/help_online/i18n/es_CR.po b/help_online/i18n/es_CR.po index e9a820f9..65b824eb 100644 --- a/help_online/i18n/es_CR.po +++ b/help_online/i18n/es_CR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "" #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creado en" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view diff --git a/help_online/i18n/es_EC.po b/help_online/i18n/es_EC.po index 7a89a205..44923226 100644 --- a/help_online/i18n/es_EC.po +++ b/help_online/i18n/es_EC.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creado en" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre mostrado" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID (identificación)" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Última actualización de" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Última actualización en" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "o" diff --git a/help_online/i18n/es_ES.po b/help_online/i18n/es_ES.po index fd2ee0ed..43b13e96 100644 --- a/help_online/i18n/es_ES.po +++ b/help_online/i18n/es_ES.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:27+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "o" diff --git a/help_online/i18n/es_MX.po b/help_online/i18n/es_MX.po index 93ca66a8..72d93d7b 100644 --- a/help_online/i18n/es_MX.po +++ b/help_online/i18n/es_MX.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creado en" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre desplegado" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Ultima modificacion realizada" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualizacion por" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualización realizada" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "ó" diff --git a/help_online/i18n/es_PE.po b/help_online/i18n/es_PE.po new file mode 100644 index 00000000..148b7aa0 --- /dev/null +++ b/help_online/i18n/es_PE.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "o" diff --git a/help_online/i18n/es_PY.po b/help_online/i18n/es_PY.po new file mode 100644 index 00000000..a274ff0f --- /dev/null +++ b/help_online/i18n/es_PY.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es_VE.po b/help_online/i18n/es_VE.po index 2231b32a..7d3a2a12 100644 --- a/help_online/i18n/es_VE.po +++ b/help_online/i18n/es_VE.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creado en" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Mostrar nombre" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Modificada por última vez" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Última actualización realizada por" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualizacion en" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 diff --git a/help_online/i18n/et.po b/help_online/i18n/et.po index 111e75f5..c8014682 100644 --- a/help_online/i18n/et.po +++ b/help_online/i18n/et.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Loonud" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Loodud" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Näidatav nimi" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Viimati muudetud" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Viimati uuendatud" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Viimati uuendatud" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "või" diff --git a/help_online/i18n/eu.po b/help_online/i18n/eu.po new file mode 100644 index 00000000..20afe43e --- /dev/null +++ b/help_online/i18n/eu.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "or" diff --git a/help_online/i18n/fa.po b/help_online/i18n/fa.po new file mode 100644 index 00000000..912522fb --- /dev/null +++ b/help_online/i18n/fa.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "یا" diff --git a/help_online/i18n/fr_CH.po b/help_online/i18n/fr_CH.po new file mode 100644 index 00000000..b2271485 --- /dev/null +++ b/help_online/i18n/fr_CH.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/gl.po b/help_online/i18n/gl.po index 3c6b7744..0084f3d9 100644 --- a/help_online/i18n/gl.po +++ b/help_online/i18n/gl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -141,7 +141,7 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "ou" diff --git a/help_online/i18n/gl_ES.po b/help_online/i18n/gl_ES.po new file mode 100644 index 00000000..c999cbda --- /dev/null +++ b/help_online/i18n/gl_ES.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/he.po b/help_online/i18n/he.po new file mode 100644 index 00000000..ff59f352 --- /dev/null +++ b/help_online/i18n/he.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "או" diff --git a/help_online/i18n/hr.po b/help_online/i18n/hr.po index be64d484..fdde1e13 100644 --- a/help_online/i18n/hr.po +++ b/help_online/i18n/hr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-06-14 11:47+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: Bole \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" "MIME-Version: 1.0\n" @@ -48,19 +48,19 @@ msgstr "Kreiraj stranice pomoći za %s" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Kreirao" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Kreirano" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Naziv " #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -142,19 +142,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Zadnje modificirano" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Zadnji ažurirao" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Zadnje ažuriranje" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 diff --git a/help_online/i18n/hr_HR.po b/help_online/i18n/hr_HR.po new file mode 100644 index 00000000..93a5e438 --- /dev/null +++ b/help_online/i18n/hr_HR.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/hu.po b/help_online/i18n/hu.po new file mode 100644 index 00000000..fa1b4200 --- /dev/null +++ b/help_online/i18n/hu.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Mégsem" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "vagy" diff --git a/help_online/i18n/ja.po b/help_online/i18n/ja.po new file mode 100644 index 00000000..5ebae739 --- /dev/null +++ b/help_online/i18n/ja.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "キャンセル" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "または" diff --git a/help_online/i18n/ko.po b/help_online/i18n/ko.po new file mode 100644 index 00000000..093efeba --- /dev/null +++ b/help_online/i18n/ko.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "또는" diff --git a/help_online/i18n/lt.po b/help_online/i18n/lt.po index e1bd7ba5..8c2a4e4b 100644 --- a/help_online/i18n/lt.po +++ b/help_online/i18n/lt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Sukūrė" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Sukurta" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Vaizduojamas pavadinimas" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Paskutinį kartą keista" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Paskutinį kartą atnaujino" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Paskutinį kartą atnaujinta" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "arba" diff --git a/help_online/i18n/lv.po b/help_online/i18n/lv.po new file mode 100644 index 00000000..923588dd --- /dev/null +++ b/help_online/i18n/lv.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "vai" diff --git a/help_online/i18n/mk.po b/help_online/i18n/mk.po new file mode 100644 index 00000000..8abcd87c --- /dev/null +++ b/help_online/i18n/mk.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "или" diff --git a/help_online/i18n/mn.po b/help_online/i18n/mn.po new file mode 100644 index 00000000..2a9d1c07 --- /dev/null +++ b/help_online/i18n/mn.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Цуцлах" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "эсвэл" diff --git a/help_online/i18n/nb.po b/help_online/i18n/nb.po new file mode 100644 index 00000000..5b21c8ee --- /dev/null +++ b/help_online/i18n/nb.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "eller" diff --git a/help_online/i18n/nl.po b/help_online/i18n/nl.po index 6de138bf..5a401d24 100644 --- a/help_online/i18n/nl.po +++ b/help_online/i18n/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-17 18:43+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -47,13 +47,13 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Aangemaakt door" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Aangemaakt op" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -147,13 +147,13 @@ msgstr "Laatst bijgewerkt op" #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Laatst bijgewerkt op" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "of" diff --git a/help_online/i18n/nl_BE.po b/help_online/i18n/nl_BE.po index 9a0fc932..1b8655e4 100644 --- a/help_online/i18n/nl_BE.po +++ b/help_online/i18n/nl_BE.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Gemaakt door" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Gemaakt op" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Schermnaam" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Laatst Aangepast op" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Laatst bijgewerkt op" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "of" diff --git a/help_online/i18n/pl.po b/help_online/i18n/pl.po index f6885f92..ac07184c 100644 --- a/help_online/i18n/pl.po +++ b/help_online/i18n/pl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Utworzone przez" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Utworzono" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Wyświetlana nazwa " #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Ostatnio modyfikowano" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ostatnio modyfikowane przez" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ostatnia zmiana" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "lub" diff --git a/help_online/i18n/pt.po b/help_online/i18n/pt.po index c043906c..b761f45c 100644 --- a/help_online/i18n/pt.po +++ b/help_online/i18n/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:27+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Criado em" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -141,7 +141,7 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Modificado a última vez por" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "ou" diff --git a/help_online/i18n/pt_BR.po b/help_online/i18n/pt_BR.po index f0abfe47..a775e10d 100644 --- a/help_online/i18n/pt_BR.po +++ b/help_online/i18n/pt_BR.po @@ -9,7 +9,7 @@ # bossnm11 , 2014 # Carles Antoli , 2015 # Carles Antoli , 2015 -# Chanseok , 2014 +# Chanseok , 2014 # Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # danimaribeiro , 2015-2016 @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-08 13:37+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Criado em " #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome para Mostrar" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -167,7 +167,7 @@ msgstr "Importar ajuda online" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última atualização em" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 diff --git a/help_online/i18n/pt_PT.po b/help_online/i18n/pt_PT.po index b725da34..097ffc2d 100644 --- a/help_online/i18n/pt_PT.po +++ b/help_online/i18n/pt_PT.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Criado em" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome a Apresentar" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -141,7 +141,7 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificação Em" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "ou" diff --git a/help_online/i18n/ro.po b/help_online/i18n/ro.po index 0d806be8..37571bfb 100644 --- a/help_online/i18n/ro.po +++ b/help_online/i18n/ro.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" "MIME-Version: 1.0\n" @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "sau" diff --git a/help_online/i18n/ru.po b/help_online/i18n/ru.po index 3cc7ff9c..fff0ddfc 100644 --- a/help_online/i18n/ru.po +++ b/help_online/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:24+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "или" diff --git a/help_online/i18n/sk.po b/help_online/i18n/sk.po new file mode 100644 index 00000000..ae95bdb5 --- /dev/null +++ b/help_online/i18n/sk.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "alebo" diff --git a/help_online/i18n/sr.po b/help_online/i18n/sr.po new file mode 100644 index 00000000..f055f295 --- /dev/null +++ b/help_online/i18n/sr.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/sr@latin.po b/help_online/i18n/sr@latin.po new file mode 100644 index 00000000..9323afe2 --- /dev/null +++ b/help_online/i18n/sr@latin.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "ili" diff --git a/help_online/i18n/sv.po b/help_online/i18n/sv.po new file mode 100644 index 00000000..927c64dd --- /dev/null +++ b/help_online/i18n/sv.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "eller" diff --git a/help_online/i18n/th.po b/help_online/i18n/th.po index 54db030d..0fe028d3 100644 --- a/help_online/i18n/th.po +++ b/help_online/i18n/th.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "สร้างโดย" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "สร้างเมื่อ" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "ชื่อที่ใช้แสดง" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "รหัส" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "อัพเดทครั้งสุดท้ายโดย" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "หรือ" diff --git a/help_online/i18n/uk.po b/help_online/i18n/uk.po new file mode 100644 index 00000000..6e4efd1c --- /dev/null +++ b/help_online/i18n/uk.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "або" diff --git a/help_online/i18n/vi.po b/help_online/i18n/vi.po index 589df507..f4bc5c2b 100644 --- a/help_online/i18n/vi.po +++ b/help_online/i18n/vi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-04-28 07:09+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Được tạo bởi" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Được tạo vào" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Tên hiển thị" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Sửa lần cuối vào" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Last Updated by" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Cập nhật lần cuối vào" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 @@ -233,4 +233,4 @@ msgstr "" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "or" -msgstr "" +msgstr "hoặc" diff --git a/help_online/i18n/zh_CN.po b/help_online/i18n/zh_CN.po new file mode 100644 index 00000000..c6313ad0 --- /dev/null +++ b/help_online/i18n/zh_CN.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "或" diff --git a/help_online/i18n/zh_TW.po b/help_online/i18n/zh_TW.po new file mode 100644 index 00000000..3c97315a --- /dev/null +++ b/help_online/i18n/zh_TW.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "刪除" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "編號" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "或" diff --git a/help_popup/i18n/es.po b/help_popup/i18n/es.po index 295fa701..20c2242c 100644 --- a/help_popup/i18n/es.po +++ b/help_popup/i18n/es.po @@ -3,15 +3,26 @@ # * help_popup # # Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2013 # Antonio Trueba, 2016 # Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2016 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:04+0000\n" -"PO-Revision-Date: 2016-02-23 12:54+0000\n" -"Last-Translator: Antonio Trueba\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:37+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +35,7 @@ msgstr "" #: code:addons/help_popup/static/src/xml/popup_help.xml:5 #, python-format msgid " " -msgstr "" +msgstr " " #. module: help_popup #: field:ir.actions.act_window,advanced_help:0 @@ -56,11 +67,11 @@ msgstr "Ayuda del desarrollador" msgid "" "Use this field to add custom content for documentation purpose\n" "mainly by developers" -msgstr "Use este campo para añadir contenido personalizado como documentación (principalmente para desarrolladores)" +msgstr "Use este campo para añadir contenido personalizado como documentación\n(principalmente para desarrolladores)" #. module: help_popup #: help:ir.actions.act_window,enduser_help:0 msgid "" "Use this field to add custom content for documentation purpose\n" "mainly by power users " -msgstr "Use este campo para añadir contenido personalizado como documentación (principalmente para usuarios avanzados)" +msgstr "Use este campo para añadir contenido personalizado como documentación\n(principalmente para usuarios avanzados)" diff --git a/web_advanced_search_wildcard/i18n/es.po b/web_advanced_search_wildcard/i18n/es.po new file mode 100644 index 00000000..2f9437ce --- /dev/null +++ b/web_advanced_search_wildcard/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_advanced_search_wildcard +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:37+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_advanced_search_wildcard +#. openerp-web +#: code:addons/web_advanced_search_wildcard/static/src/js/search.js:4 +#, python-format +msgid "matches" +msgstr "coincide con" diff --git a/web_advanced_search_x2x/i18n/hr_HR.po b/web_advanced_search_x2x/i18n/hr_HR.po new file mode 100644 index 00000000..7f41e528 --- /dev/null +++ b/web_advanced_search_x2x/i18n/hr_HR.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_advanced_search_x2x +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/xml/web_advanced_search_x2x.xml:8 +#, python-format +msgid "Search" +msgstr "Pretraži" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:235 +#, python-format +msgid "Use criteria" +msgstr "" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:172 +#, python-format +msgid "invalid search domain" +msgstr "" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:47 +#, python-format +msgid "is in selection" +msgstr "" diff --git a/web_ckeditor4/i18n/ar.po b/web_ckeditor4/i18n/ar.po index a5e393d6..3a7b7aa4 100644 --- a/web_ckeditor4/i18n/ar.po +++ b/web_ckeditor4/i18n/ar.po @@ -3,14 +3,25 @@ # * web_ckeditor4 # # Translators: +# Ahmet Altinisik , 2016 +# Carles Antoli , 2015-2016 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Matjaž Mozetič , 2015 +# Maxime Chambreuil , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 # SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-16 07:41+0000\n" -"PO-Revision-Date: 2015-12-16 17:16+0000\n" -"Last-Translator: SaFi J. \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,11 +29,21 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 msgid "ID" msgstr "المعرف" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch msgid "Monkeypatches for CKEditor" diff --git a/web_ckeditor4/i18n/bg.po b/web_ckeditor4/i18n/bg.po new file mode 100644 index 00000000..59bd047c --- /dev/null +++ b/web_ckeditor4/i18n/bg.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/bs.po b/web_ckeditor4/i18n/bs.po new file mode 100644 index 00000000..ab23c5c5 --- /dev/null +++ b/web_ckeditor4/i18n/bs.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/cs.po b/web_ckeditor4/i18n/cs.po new file mode 100644 index 00000000..cef28778 --- /dev/null +++ b/web_ckeditor4/i18n/cs.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/da.po b/web_ckeditor4/i18n/da.po new file mode 100644 index 00000000..964f1716 --- /dev/null +++ b/web_ckeditor4/i18n/da.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "Id" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/en_GB.po b/web_ckeditor4/i18n/en_GB.po new file mode 100644 index 00000000..347f12cd --- /dev/null +++ b/web_ckeditor4/i18n/en_GB.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es.po b/web_ckeditor4/i18n/es.po index aa721f8c..514d39a2 100644 --- a/web_ckeditor4/i18n/es.po +++ b/web_ckeditor4/i18n/es.po @@ -4,6 +4,7 @@ # # Translators: # Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 # Alexis de Lattre , 2016 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 @@ -14,15 +15,17 @@ # Hotellook, 2014 # Matjaž Mozetič , 2015 # oihane , 2016 +# oihane , 2016 +# Pedro M. Baeza , 2016 # Rudolf Schnapka , 2016 # Rudolf Schnapka , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-16 21:45+0000\n" -"Last-Translator: oihane \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,4 +51,4 @@ msgstr "Última actualización en" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch msgid "Monkeypatches for CKEditor" -msgstr "" +msgstr "Parches (Monkeypatches) para CKEditor" diff --git a/web_ckeditor4/i18n/es_AR.po b/web_ckeditor4/i18n/es_AR.po new file mode 100644 index 00000000..80136de9 --- /dev/null +++ b/web_ckeditor4/i18n/es_AR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_CO.po b/web_ckeditor4/i18n/es_CO.po new file mode 100644 index 00000000..519a9efe --- /dev/null +++ b/web_ckeditor4/i18n/es_CO.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_CR.po b/web_ckeditor4/i18n/es_CR.po new file mode 100644 index 00000000..6c883dc1 --- /dev/null +++ b/web_ckeditor4/i18n/es_CR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_EC.po b/web_ckeditor4/i18n/es_EC.po new file mode 100644 index 00000000..7393a4dd --- /dev/null +++ b/web_ckeditor4/i18n/es_EC.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_MX.po b/web_ckeditor4/i18n/es_MX.po new file mode 100644 index 00000000..8fd5fc74 --- /dev/null +++ b/web_ckeditor4/i18n/es_MX.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_PE.po b/web_ckeditor4/i18n/es_PE.po new file mode 100644 index 00000000..4434a506 --- /dev/null +++ b/web_ckeditor4/i18n/es_PE.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_PY.po b/web_ckeditor4/i18n/es_PY.po new file mode 100644 index 00000000..7176fc31 --- /dev/null +++ b/web_ckeditor4/i18n/es_PY.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_VE.po b/web_ckeditor4/i18n/es_VE.po new file mode 100644 index 00000000..3abb0b3f --- /dev/null +++ b/web_ckeditor4/i18n/es_VE.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/et.po b/web_ckeditor4/i18n/et.po new file mode 100644 index 00000000..53771731 --- /dev/null +++ b/web_ckeditor4/i18n/et.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/eu.po b/web_ckeditor4/i18n/eu.po new file mode 100644 index 00000000..5668ea45 --- /dev/null +++ b/web_ckeditor4/i18n/eu.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/fa.po b/web_ckeditor4/i18n/fa.po new file mode 100644 index 00000000..bf6e9561 --- /dev/null +++ b/web_ckeditor4/i18n/fa.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/fr_CH.po b/web_ckeditor4/i18n/fr_CH.po new file mode 100644 index 00000000..1d1edff5 --- /dev/null +++ b/web_ckeditor4/i18n/fr_CH.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/gl.po b/web_ckeditor4/i18n/gl.po index b0352fbe..8ae513a9 100644 --- a/web_ckeditor4/i18n/gl.po +++ b/web_ckeditor4/i18n/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_ckeditor4/i18n/gl_ES.po b/web_ckeditor4/i18n/gl_ES.po new file mode 100644 index 00000000..f3df7685 --- /dev/null +++ b/web_ckeditor4/i18n/gl_ES.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/he.po b/web_ckeditor4/i18n/he.po new file mode 100644 index 00000000..ec92475a --- /dev/null +++ b/web_ckeditor4/i18n/he.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/hr.po b/web_ckeditor4/i18n/hr.po index 909cc988..be18da41 100644 --- a/web_ckeditor4/i18n/hr.po +++ b/web_ckeditor4/i18n/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Naziv " #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Zadnje modificirano" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_ckeditor4/i18n/hr_HR.po b/web_ckeditor4/i18n/hr_HR.po new file mode 100644 index 00000000..84f8f7f3 --- /dev/null +++ b/web_ckeditor4/i18n/hr_HR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/ja.po b/web_ckeditor4/i18n/ja.po new file mode 100644 index 00000000..3e0e84dc --- /dev/null +++ b/web_ckeditor4/i18n/ja.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/ko.po b/web_ckeditor4/i18n/ko.po new file mode 100644 index 00000000..91d6d0bc --- /dev/null +++ b/web_ckeditor4/i18n/ko.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/lt.po b/web_ckeditor4/i18n/lt.po new file mode 100644 index 00000000..70129b50 --- /dev/null +++ b/web_ckeditor4/i18n/lt.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/lv.po b/web_ckeditor4/i18n/lv.po new file mode 100644 index 00000000..f447d0b7 --- /dev/null +++ b/web_ckeditor4/i18n/lv.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/mk.po b/web_ckeditor4/i18n/mk.po new file mode 100644 index 00000000..4aa06909 --- /dev/null +++ b/web_ckeditor4/i18n/mk.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/mn.po b/web_ckeditor4/i18n/mn.po new file mode 100644 index 00000000..3727101e --- /dev/null +++ b/web_ckeditor4/i18n/mn.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/nb.po b/web_ckeditor4/i18n/nb.po new file mode 100644 index 00000000..8425b0cd --- /dev/null +++ b/web_ckeditor4/i18n/nb.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/nl.po b/web_ckeditor4/i18n/nl.po index a096c47b..cb1367d3 100644 --- a/web_ckeditor4/i18n/nl.po +++ b/web_ckeditor4/i18n/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" @@ -25,7 +25,7 @@ msgstr "Te tonen naam" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 diff --git a/web_ckeditor4/i18n/nl_BE.po b/web_ckeditor4/i18n/nl_BE.po new file mode 100644 index 00000000..42a3d10b --- /dev/null +++ b/web_ckeditor4/i18n/nl_BE.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/pt.po b/web_ckeditor4/i18n/pt.po index d101083f..a0b16ae8 100644 --- a/web_ckeditor4/i18n/pt.po +++ b/web_ckeditor4/i18n/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Modificado a última vez por" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_ckeditor4/i18n/pt_BR.po b/web_ckeditor4/i18n/pt_BR.po index 92424a47..f3e0cfb9 100644 --- a/web_ckeditor4/i18n/pt_BR.po +++ b/web_ckeditor4/i18n/pt_BR.po @@ -3,14 +3,24 @@ # * web_ckeditor4 # # Translators: +# Antonio Trueba, 2016 # danimaribeiro , 2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2014 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Leonardo J. Caballero G. , 2016 +# Matjaž Mozetič , 2015 +# Miku Laitinen , 2015 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-11 02:17+0000\n" -"PO-Revision-Date: 2016-03-05 16:22+0000\n" -"Last-Translator: danimaribeiro \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,11 +28,21 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 msgid "ID" msgstr "ID" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch msgid "Monkeypatches for CKEditor" diff --git a/web_ckeditor4/i18n/pt_PT.po b/web_ckeditor4/i18n/pt_PT.po index 8896026c..db1072bd 100644 --- a/web_ckeditor4/i18n/pt_PT.po +++ b/web_ckeditor4/i18n/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome a Apresentar" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificação Em" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_ckeditor4/i18n/sk.po b/web_ckeditor4/i18n/sk.po new file mode 100644 index 00000000..50a73780 --- /dev/null +++ b/web_ckeditor4/i18n/sk.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/sr@latin.po b/web_ckeditor4/i18n/sr@latin.po new file mode 100644 index 00000000..e8f649fc --- /dev/null +++ b/web_ckeditor4/i18n/sr@latin.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/sv.po b/web_ckeditor4/i18n/sv.po new file mode 100644 index 00000000..89f68746 --- /dev/null +++ b/web_ckeditor4/i18n/sv.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/th.po b/web_ckeditor4/i18n/th.po new file mode 100644 index 00000000..d8896350 --- /dev/null +++ b/web_ckeditor4/i18n/th.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/uk.po b/web_ckeditor4/i18n/uk.po new file mode 100644 index 00000000..2fbe8224 --- /dev/null +++ b/web_ckeditor4/i18n/uk.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/vi.po b/web_ckeditor4/i18n/vi.po new file mode 100644 index 00000000..a17d1829 --- /dev/null +++ b/web_ckeditor4/i18n/vi.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/zh_CN.po b/web_ckeditor4/i18n/zh_CN.po new file mode 100644 index 00000000..b8fb5d03 --- /dev/null +++ b/web_ckeditor4/i18n/zh_CN.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/zh_TW.po b/web_ckeditor4/i18n/zh_TW.po new file mode 100644 index 00000000..716db119 --- /dev/null +++ b/web_ckeditor4/i18n/zh_TW.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "編號" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_dashboard_tile/i18n/ar.po b/web_dashboard_tile/i18n/ar.po index dd2c39f3..efdd77dc 100644 --- a/web_dashboard_tile/i18n/ar.po +++ b/web_dashboard_tile/i18n/ar.po @@ -4,8 +4,10 @@ # # Translators: # Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 # Antonio Trueba, 2016 # Carles Antoli , 2015 +# Carles Antoli , 2015 # FIRST AUTHOR , 2012-2014 # Giacomo , 2015 # Hotellook, 2014 @@ -19,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:19+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" @@ -40,7 +42,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "المعدل" @@ -50,12 +53,8 @@ msgid "Background color" msgstr "لون الخلفية" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -84,6 +83,7 @@ msgid "Dashboard" msgstr "لوحة المعلومات" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -102,7 +102,7 @@ msgstr "العرض" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "اسم العرض" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -117,7 +117,12 @@ msgid "Error" msgstr "الخطأ" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "الحقل" @@ -134,12 +139,23 @@ msgid "Font color" msgstr "لون الخط" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "الوظيفة" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -148,10 +164,18 @@ msgstr "" msgid "ID" msgstr "المعرف" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "آخر تعديل في" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -164,20 +188,47 @@ msgid "Last Updated on" msgstr "آخر تحديث في" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "الحد الاعلى" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "القيمة العليا الى '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "متوسط" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "القيمة المتوسطة الى '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "الحد الادنى" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "القيمة الادنى الى '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -189,20 +240,48 @@ msgid "Name" msgstr "الاسم" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "معلومات الحقل الاختياري" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -218,7 +297,8 @@ msgid "Success" msgstr "نجاح" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "المجموع" @@ -242,7 +322,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "القيمة الاجمالية الى '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -251,3 +337,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "المستخدم" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/bg.po b/web_dashboard_tile/i18n/bg.po new file mode 100644 index 00000000..aa8e4bd4 --- /dev/null +++ b/web_dashboard_tile/i18n/bg.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "Активен" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "Създай" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Име" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Последователност" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/bs.po b/web_dashboard_tile/i18n/bs.po new file mode 100644 index 00000000..49da0759 --- /dev/null +++ b/web_dashboard_tile/i18n/bs.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Ime" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sekvenca" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/cs.po b/web_dashboard_tile/i18n/cs.po new file mode 100644 index 00000000..53277035 --- /dev/null +++ b/web_dashboard_tile/i18n/cs.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Název" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Číselná řada" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/da.po b/web_dashboard_tile/i18n/da.po new file mode 100644 index 00000000..684ae3a9 --- /dev/null +++ b/web_dashboard_tile/i18n/da.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "Aktiv" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "Id" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Navn" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Rækkefølge" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/de.po b/web_dashboard_tile/i18n/de.po index 77f37945..99314e48 100644 --- a/web_dashboard_tile/i18n/de.po +++ b/web_dashboard_tile/i18n/de.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-18 08:13+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" @@ -37,10 +37,11 @@ msgstr "Aktion" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Aktiv" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Durchschnitt" @@ -50,12 +51,8 @@ msgid "Background color" msgstr "Hintergrundfarbe" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -84,6 +81,7 @@ msgid "Dashboard" msgstr "Pinwand" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Pinwand-Kachel" @@ -117,7 +115,12 @@ msgid "Error" msgstr "Fehler" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Feld" @@ -134,12 +137,23 @@ msgid "Font color" msgstr "Schriftfarbe" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Funktion" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -148,6 +162,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -164,20 +186,47 @@ msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maximum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Maximalwert von '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Median" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Medianwert von '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Minimalwert von '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -189,20 +238,48 @@ msgid "Name" msgstr "Bezeichnung" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Optionale Feldinformation" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -218,7 +295,8 @@ msgid "Success" msgstr "Erfolg" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Summe" @@ -242,7 +320,13 @@ msgid "Tile:" msgstr "Kachel:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Gesamtwert von '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -251,3 +335,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Benutzer" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Wert" diff --git a/web_dashboard_tile/i18n/en_GB.po b/web_dashboard_tile/i18n/en_GB.po new file mode 100644 index 00000000..3f45eb17 --- /dev/null +++ b/web_dashboard_tile/i18n/en_GB.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Name" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sequence" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es.po b/web_dashboard_tile/i18n/es.po index 449e08db..10285a30 100644 --- a/web_dashboard_tile/i18n/es.po +++ b/web_dashboard_tile/i18n/es.po @@ -16,7 +16,7 @@ # Matjaž Mozetič , 2015-2016 # Miku Laitinen , 2015 # Paolo Valier, 2016 -# Pedro M. Baeza , 2015 +# Pedro M. Baeza , 2015-2016 # Rudolf Schnapka , 2015-2016 # SaFi J. , 2015 # Thomas A. Jaeger, 2015 @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-16 21:45+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,11 @@ msgstr "Acción" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Activo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Promedio" @@ -55,14 +56,10 @@ msgid "Background color" msgstr "Color de fondo" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" -msgstr "" +msgstr "Cuenta" #. module: web_dashboard_tile #. openerp-web @@ -89,15 +86,16 @@ msgid "Dashboard" msgstr "Tablero" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" -msgstr "" +msgstr "Pieza del tablero" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view msgid "Dashboard tiles" -msgstr "" +msgstr "Piezas del tablero" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view @@ -122,7 +120,12 @@ msgid "Error" msgstr "Error" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Campo" @@ -139,20 +142,39 @@ msgid "Font color" msgstr "Color de texto" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Formato" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Función" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Grupos" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" -msgstr "" +msgstr "Ayudante" #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -169,20 +191,47 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Máximo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valor máximo de \"%s\"" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Mediana" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valor mediano de \"%s\"" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Mínimo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valor mínimo de \"%s\"" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -194,20 +243,48 @@ msgid "Name" msgstr "Nombre" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Información opcional" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." +msgstr "Seleccione por favor un campo del modelo seleccionado." + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -223,7 +300,8 @@ msgid "Success" msgstr "Éxito" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Suma" @@ -237,22 +315,33 @@ msgstr "Información técnica" #: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 #, python-format msgid "Tile is created" -msgstr "" +msgstr "Se creó la pieza" #. module: web_dashboard_tile #. openerp-web #: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 #, python-format msgid "Tile:" -msgstr "" +msgstr "Pieza:" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Valor total de \"%s\"" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." -msgstr "" +msgstr "Características no implementada: búsqueda en el campo activo deshabilitada." #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" msgstr "Usuario" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valor" diff --git a/web_dashboard_tile/i18n/es_AR.po b/web_dashboard_tile/i18n/es_AR.po new file mode 100644 index 00000000..40d12c6a --- /dev/null +++ b/web_dashboard_tile/i18n/es_AR.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_CL.po b/web_dashboard_tile/i18n/es_CL.po new file mode 100644 index 00000000..02eed5a5 --- /dev/null +++ b/web_dashboard_tile/i18n/es_CL.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_CO.po b/web_dashboard_tile/i18n/es_CO.po new file mode 100644 index 00000000..f09777a1 --- /dev/null +++ b/web_dashboard_tile/i18n/es_CO.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_CR.po b/web_dashboard_tile/i18n/es_CR.po new file mode 100644 index 00000000..f28e653e --- /dev/null +++ b/web_dashboard_tile/i18n/es_CR.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_DO.po b/web_dashboard_tile/i18n/es_DO.po new file mode 100644 index 00000000..a3230713 --- /dev/null +++ b/web_dashboard_tile/i18n/es_DO.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_EC.po b/web_dashboard_tile/i18n/es_EC.po new file mode 100644 index 00000000..8b61695b --- /dev/null +++ b/web_dashboard_tile/i18n/es_EC.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_MX.po b/web_dashboard_tile/i18n/es_MX.po new file mode 100644 index 00000000..11b5c7d3 --- /dev/null +++ b/web_dashboard_tile/i18n/es_MX.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_PE.po b/web_dashboard_tile/i18n/es_PE.po new file mode 100644 index 00000000..0c7ef132 --- /dev/null +++ b/web_dashboard_tile/i18n/es_PE.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_PY.po b/web_dashboard_tile/i18n/es_PY.po new file mode 100644 index 00000000..2fde36b8 --- /dev/null +++ b/web_dashboard_tile/i18n/es_PY.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/es_VE.po b/web_dashboard_tile/i18n/es_VE.po new file mode 100644 index 00000000..0580768d --- /dev/null +++ b/web_dashboard_tile/i18n/es_VE.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/et.po b/web_dashboard_tile/i18n/et.po new file mode 100644 index 00000000..e6be9032 --- /dev/null +++ b/web_dashboard_tile/i18n/et.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Jada" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/eu.po b/web_dashboard_tile/i18n/eu.po new file mode 100644 index 00000000..084fdb31 --- /dev/null +++ b/web_dashboard_tile/i18n/eu.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Izena" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sekuentzia" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/fa.po b/web_dashboard_tile/i18n/fa.po new file mode 100644 index 00000000..51d0b660 --- /dev/null +++ b/web_dashboard_tile/i18n/fa.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "نام" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "دنباله" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/fi.po b/web_dashboard_tile/i18n/fi.po index 3af27fed..425c39ea 100644 --- a/web_dashboard_tile/i18n/fi.po +++ b/web_dashboard_tile/i18n/fi.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,8 @@ msgid "Active" msgstr "Aktiivinen" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Keskiarvo" @@ -50,12 +51,8 @@ msgid "Background color" msgstr "Taustaväri" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Laskettu arvo" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Määrä" @@ -84,6 +81,7 @@ msgid "Dashboard" msgstr "Työpöytä" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Työpöydän pala" @@ -117,7 +115,12 @@ msgid "Error" msgstr "Virhe" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Kenttä" @@ -134,12 +137,23 @@ msgid "Font color" msgstr "Fontin väri" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Toiminto" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Avustin" @@ -148,6 +162,14 @@ msgstr "Avustin" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -164,20 +186,47 @@ msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimi" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "'%s':n maksimiarvo" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Mediaani" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "'%s':n mediaaniarvo" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimi" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "'%s':n minimiarvo" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -189,20 +238,48 @@ msgid "Name" msgstr "Nimi" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Valinnaiset kentän tiedot" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -218,7 +295,8 @@ msgid "Success" msgstr "Onnistui" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Summa" @@ -242,7 +320,13 @@ msgid "Tile:" msgstr "Pala:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "'%s':n kokonaisarvo" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -251,3 +335,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Käyttäjä" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/fr.po b/web_dashboard_tile/i18n/fr.po index 16c11512..ae1242f7 100644 --- a/web_dashboard_tile/i18n/fr.po +++ b/web_dashboard_tile/i18n/fr.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,8 @@ msgid "Active" msgstr "Actif" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Moyenne" @@ -53,12 +54,8 @@ msgid "Background color" msgstr "Couleur de fond" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Valeur calculée" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Compter" @@ -87,6 +84,7 @@ msgid "Dashboard" msgstr "Tableau de bord" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Indicateur de tableau de bord" @@ -120,7 +118,12 @@ msgid "Error" msgstr "Erreur" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Champ" @@ -137,12 +140,23 @@ msgid "Font color" msgstr "Couleur de la police" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Format" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Fonction" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Groupes" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Assistant" @@ -151,6 +165,14 @@ msgstr "Assistant" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -167,20 +189,47 @@ msgid "Last Updated on" msgstr "Mis à jour le" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maximum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valeur maximale du champ '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Médiane" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valeur médian du champ '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valeur minimale du champ '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -192,20 +241,48 @@ msgid "Name" msgstr "Nom" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Information du champ optionnel" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -221,7 +298,8 @@ msgid "Success" msgstr "Succès" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Somme" @@ -245,7 +323,13 @@ msgid "Tile:" msgstr "Indicateur :" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Somme du champ '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -254,3 +338,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Utilisateur" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valeur" diff --git a/web_dashboard_tile/i18n/fr_CA.po b/web_dashboard_tile/i18n/fr_CA.po new file mode 100644 index 00000000..b327ab3d --- /dev/null +++ b/web_dashboard_tile/i18n/fr_CA.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "Modèle" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nom" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/fr_CH.po b/web_dashboard_tile/i18n/fr_CH.po new file mode 100644 index 00000000..13897a2b --- /dev/null +++ b/web_dashboard_tile/i18n/fr_CH.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "Créer" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/gl.po b/web_dashboard_tile/i18n/gl.po index f8cf204f..a7f828eb 100644 --- a/web_dashboard_tile/i18n/gl.po +++ b/web_dashboard_tile/i18n/gl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,10 +150,18 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,20 +226,48 @@ msgid "Name" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valor" diff --git a/web_dashboard_tile/i18n/gl_ES.po b/web_dashboard_tile/i18n/gl_ES.po new file mode 100644 index 00000000..83eef363 --- /dev/null +++ b/web_dashboard_tile/i18n/gl_ES.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/he.po b/web_dashboard_tile/i18n/he.po new file mode 100644 index 00000000..19a0944d --- /dev/null +++ b/web_dashboard_tile/i18n/he.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "שם" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "רצף" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/hr.po b/web_dashboard_tile/i18n/hr.po index cb758f95..30d98358 100644 --- a/web_dashboard_tile/i18n/hr.po +++ b/web_dashboard_tile/i18n/hr.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:19+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-29 09:32+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,31 +25,22 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Aktivno" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:74 -#, python-format -msgid "Average value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,background_color:0 msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -63,12 +54,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Kreirao" #. module: web_dashboard_tile #: field:tile.tile,create_date:0 msgid "Created on" -msgstr "" +msgstr "Kreirano" #. module: web_dashboard_tile #: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile @@ -78,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -96,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Naziv " #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -111,17 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please select a field of the selected model." +#: field:tile.tile,error:0 +msgid "Error Details" msgstr "" #. module: web_dashboard_tile -#: constraint:tile.tile:0 -msgid "Error ! Please set both fields: 'Field' and 'Function'." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -138,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Grupe" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -152,50 +150,67 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Zadnje modificirano" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Zadnji ažurirao" #. module: web_dashboard_tile #: field:tile.tile,write_date:0 msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:68 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 #, python-format msgid "Maximum value of '%s'" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:77 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 #, python-format msgid "Median value of '%s'" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:65 +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 #, python-format msgid "Minimum value of '%s'" msgstr "" @@ -203,22 +218,62 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: web_dashboard_tile #: field:tile.tile,name:0 msgid "Name" +msgstr "Naziv" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" msgstr "" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sekvenca" #. module: web_dashboard_tile #. openerp-web @@ -228,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -252,12 +308,23 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:71 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 #, python-format msgid "Total value of '%s'" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Vrijednost" diff --git a/web_dashboard_tile/i18n/hr_HR.po b/web_dashboard_tile/i18n/hr_HR.po new file mode 100644 index 00000000..73326eff --- /dev/null +++ b/web_dashboard_tile/i18n/hr_HR.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "Aktivan" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/hu.po b/web_dashboard_tile/i18n/hu.po new file mode 100644 index 00000000..e592297e --- /dev/null +++ b/web_dashboard_tile/i18n/hu.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Név" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sorszám" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/id.po b/web_dashboard_tile/i18n/id.po new file mode 100644 index 00000000..14efd399 --- /dev/null +++ b/web_dashboard_tile/i18n/id.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nama" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Berurutan" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/it.po b/web_dashboard_tile/i18n/it.po index c11a4ae3..f8914f47 100644 --- a/web_dashboard_tile/i18n/it.po +++ b/web_dashboard_tile/i18n/it.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,8 @@ msgid "Active" msgstr "Attivo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Media" @@ -48,12 +49,8 @@ msgid "Background color" msgstr "Colore di sfondo" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -82,6 +79,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -115,7 +113,12 @@ msgid "Error" msgstr "Errore" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Campo" @@ -132,12 +135,23 @@ msgid "Font color" msgstr "Colore del Font" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Formato" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Funzione" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Gruppi" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -146,6 +160,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -162,20 +184,47 @@ msgid "Last Updated on" msgstr "Ultimo aggiornamento il" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Massimo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valore massimo di '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valore mediano di '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valore minimo di '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -187,20 +236,48 @@ msgid "Name" msgstr "Nome" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Informazioni Opzionali Campo" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -216,7 +293,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Somma" @@ -240,7 +318,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Valore totale di '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -249,3 +333,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Utente" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valore" diff --git a/web_dashboard_tile/i18n/ja.po b/web_dashboard_tile/i18n/ja.po new file mode 100644 index 00000000..0031dab0 --- /dev/null +++ b/web_dashboard_tile/i18n/ja.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "名称" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "付番" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/ko.po b/web_dashboard_tile/i18n/ko.po new file mode 100644 index 00000000..00dddd00 --- /dev/null +++ b/web_dashboard_tile/i18n/ko.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "이름" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "순서" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/lt.po b/web_dashboard_tile/i18n/lt.po new file mode 100644 index 00000000..a5cc54be --- /dev/null +++ b/web_dashboard_tile/i18n/lt.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Pavadinimas" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Seka" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/lv.po b/web_dashboard_tile/i18n/lv.po new file mode 100644 index 00000000..8566c7ce --- /dev/null +++ b/web_dashboard_tile/i18n/lv.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nosaukums" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sērija" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/mk.po b/web_dashboard_tile/i18n/mk.po new file mode 100644 index 00000000..9d997bac --- /dev/null +++ b/web_dashboard_tile/i18n/mk.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Име" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Секвенца" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/mn.po b/web_dashboard_tile/i18n/mn.po new file mode 100644 index 00000000..7e57c085 --- /dev/null +++ b/web_dashboard_tile/i18n/mn.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Нэр" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Дараалал" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/nb.po b/web_dashboard_tile/i18n/nb.po new file mode 100644 index 00000000..0944242d --- /dev/null +++ b/web_dashboard_tile/i18n/nb.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:19+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Navn" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sekvens" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Verdi" diff --git a/web_dashboard_tile/i18n/nl.po b/web_dashboard_tile/i18n/nl.po index 3a55b620..4a3bc958 100644 --- a/web_dashboard_tile/i18n/nl.po +++ b/web_dashboard_tile/i18n/nl.po @@ -25,12 +25,13 @@ # seungil , 2014 # SEUNGWON , 2014 # yterrettaz, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-17 18:43+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 12:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -50,7 +51,8 @@ msgid "Active" msgstr "Actief" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -60,12 +62,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -79,12 +77,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Aangemaakt door" #. module: web_dashboard_tile #: field:tile.tile,create_date:0 msgid "Created on" -msgstr "" +msgstr "Aangemaakt op" #. module: web_dashboard_tile #: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile @@ -94,6 +92,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -127,7 +126,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Veld" @@ -144,18 +148,37 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Formaat" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Groepen" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" msgstr "" #. module: web_dashboard_tile @@ -166,28 +189,55 @@ msgstr "Laatst bijgewerkt op" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: web_dashboard_tile #: field:tile.tile,write_date:0 msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -199,20 +249,48 @@ msgid "Name" msgstr "Naam" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -228,7 +306,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -252,7 +331,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -261,3 +346,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/nl_BE.po b/web_dashboard_tile/i18n/nl_BE.po new file mode 100644 index 00000000..8411e4ac --- /dev/null +++ b/web_dashboard_tile/i18n/nl_BE.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Naam:" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Volgorde" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/pl.po b/web_dashboard_tile/i18n/pl.po new file mode 100644 index 00000000..3381b096 --- /dev/null +++ b/web_dashboard_tile/i18n/pl.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Nazwa" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Numeracja" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/pt.po b/web_dashboard_tile/i18n/pt.po index 6a4990af..2b6e05e3 100644 --- a/web_dashboard_tile/i18n/pt.po +++ b/web_dashboard_tile/i18n/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:27+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -90,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,10 +150,18 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Modificado a última vez por" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -152,45 +174,100 @@ msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: web_dashboard_tile #: field:tile.tile,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/pt_BR.po b/web_dashboard_tile/i18n/pt_BR.po index 8cd7fc88..8f529526 100644 --- a/web_dashboard_tile/i18n/pt_BR.po +++ b/web_dashboard_tile/i18n/pt_BR.po @@ -12,6 +12,7 @@ # FIRST AUTHOR , 2012,2014 # Jarmo Kortetjärvi , 2016 # Jesús Alan Ramos Rodríguez , 2015 +# Jesús Alan Ramos Rodríguez , 2015 # llum.birque@gmail.com , 2015 # Matjaž Mozetič , 2015 # Paolo Valier, 2016 @@ -19,12 +20,13 @@ # Rudolf Schnapka , 2015-2016 # Stéphane Bidoul , 2015 # yterrettaz, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -41,10 +43,11 @@ msgstr "Ação" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Ativo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Média" @@ -54,12 +57,8 @@ msgid "Background color" msgstr "Cor de fundo" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -88,6 +87,7 @@ msgid "Dashboard" msgstr "Dashboard" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Dashboard Tile" @@ -106,7 +106,7 @@ msgstr "Mostrar" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome para Mostrar" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -121,7 +121,12 @@ msgid "Error" msgstr "Erro" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Campo" @@ -138,12 +143,23 @@ msgid "Font color" msgstr "Cor da fonte" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Função" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -152,10 +168,18 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última atualização em" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -168,20 +192,47 @@ msgid "Last Updated on" msgstr "Última atualização em" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Máximo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valor máximo de '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Mediana" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valor mediano de '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minímo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valor mínimo de '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -193,20 +244,48 @@ msgid "Name" msgstr "Nome" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Informação de campos opcionais" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -222,7 +301,8 @@ msgid "Success" msgstr "Sucesso" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Soma" @@ -246,7 +326,13 @@ msgid "Tile:" msgstr "Tile:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Valor total de '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -255,3 +341,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Usuário" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valor" diff --git a/web_dashboard_tile/i18n/pt_PT.po b/web_dashboard_tile/i18n/pt_PT.po index 6c0a7447..04ab914b 100644 --- a/web_dashboard_tile/i18n/pt_PT.po +++ b/web_dashboard_tile/i18n/pt_PT.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -90,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome a Apresentar" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,10 +150,18 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificação Em" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -152,45 +174,100 @@ msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: web_dashboard_tile #: field:tile.tile,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/ro.po b/web_dashboard_tile/i18n/ro.po new file mode 100644 index 00000000..28854482 --- /dev/null +++ b/web_dashboard_tile/i18n/ro.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:19+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valoare" diff --git a/web_dashboard_tile/i18n/ru.po b/web_dashboard_tile/i18n/ru.po new file mode 100644 index 00000000..bbf8fe9f --- /dev/null +++ b/web_dashboard_tile/i18n/ru.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "Поле" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "Модель" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Название" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "Пользователь" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/sk.po b/web_dashboard_tile/i18n/sk.po new file mode 100644 index 00000000..15a8183d --- /dev/null +++ b/web_dashboard_tile/i18n/sk.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Meno" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Postupnosť" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/sl.po b/web_dashboard_tile/i18n/sl.po index 98c5406f..5749e0bc 100644 --- a/web_dashboard_tile/i18n/sl.po +++ b/web_dashboard_tile/i18n/sl.po @@ -4,6 +4,7 @@ # # Translators: # Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 # Carles Antoli , 2015-2016 # Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 @@ -20,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 09:43+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" @@ -41,7 +42,8 @@ msgid "Active" msgstr "Aktivno" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Povprečje" @@ -51,12 +53,8 @@ msgid "Background color" msgstr "Barva ozadja" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Obračunana vrednost" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Števec" @@ -85,6 +83,7 @@ msgid "Dashboard" msgstr "Nadzorna plošča" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Okvir nadzorne plošče" @@ -118,7 +117,12 @@ msgid "Error" msgstr "Napaka" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "Podrobnosti o napaki" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Polje" @@ -135,12 +139,23 @@ msgid "Font color" msgstr "Barva pisave" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Format" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Funkcija" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Skupine" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Pomočnik" @@ -149,6 +164,14 @@ msgstr "Pomočnik" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "Če je to polje nastavljeno, lahko ta okvir vidijo le uporabniki te skupine. Upoštevajte, da bo delovalo le za globalne okvirje (torej s poljem 'uporabnik' puščenim praznim)" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -165,20 +188,47 @@ msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "Glavna vrednost" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Maksimalna vrednost '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Sredina" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Srednja vrednost '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Minimalna vrednost '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -190,21 +240,49 @@ msgid "Name" msgstr "Naziv" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Opcijske informacije o polju" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "Število zapisov" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "Izberite polje iz izbranega modela." #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." -msgstr "Nastavite oboje: 'Polje' in 'Funkcija'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "Niz v Python formatu veljaven s str.format()\nnpr: '{:,} kg' da rezultat '1,000 kg' pri vrednosti 1000." + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "Sekundarno polje" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "Sekundarni format" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "Sekundarna funkcija" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "Sekundarni pomočnik" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "Sekundarna vrednost" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 @@ -219,7 +297,8 @@ msgid "Success" msgstr "Uspeh" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Vsota" @@ -243,7 +322,13 @@ msgid "Tile:" msgstr "Okvir:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Skupna vrednost '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." @@ -252,3 +337,8 @@ msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." #: field:tile.tile,user_id:0 msgid "User" msgstr "Uporabnik" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Vrednost" diff --git a/web_dashboard_tile/i18n/sr.po b/web_dashboard_tile/i18n/sr.po new file mode 100644 index 00000000..395a0d97 --- /dev/null +++ b/web_dashboard_tile/i18n/sr.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Ime" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Niz" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/sr@latin.po b/web_dashboard_tile/i18n/sr@latin.po new file mode 100644 index 00000000..fee13e1d --- /dev/null +++ b/web_dashboard_tile/i18n/sr@latin.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Ime:" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sekvenca" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/sv.po b/web_dashboard_tile/i18n/sv.po new file mode 100644 index 00000000..eb1ab01f --- /dev/null +++ b/web_dashboard_tile/i18n/sv.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Namn" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Nummerserie" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/th.po b/web_dashboard_tile/i18n/th.po new file mode 100644 index 00000000..e82da848 --- /dev/null +++ b/web_dashboard_tile/i18n/th.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "ชื่อ" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "กำหนดเลขที่เอกสาร" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/tr.po b/web_dashboard_tile/i18n/tr.po index f45d1696..015a8fa5 100644 --- a/web_dashboard_tile/i18n/tr.po +++ b/web_dashboard_tile/i18n/tr.po @@ -3,6 +3,7 @@ # * web_dashboard_tile # # Translators: +# Ahmet Altinisik , 2015 # Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015 # Antonio Trueba, 2016 @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 14:10+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" @@ -36,7 +37,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Ortalama" @@ -46,12 +48,8 @@ msgid "Background color" msgstr "Arkaplan rengi" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -80,6 +78,7 @@ msgid "Dashboard" msgstr "Gösterge panosu" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Gösterge parçası" @@ -113,7 +112,12 @@ msgid "Error" msgstr "Hata" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Alan" @@ -130,12 +134,23 @@ msgid "Font color" msgstr "Font rengi" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Fonksiyon" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Gruplar" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -144,6 +159,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -160,20 +183,47 @@ msgid "Last Updated on" msgstr "Son güncellendi" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "'%s' nin en fazla değeri" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "orta değer" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "'%s' nin orta değeri" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "'%s' nin en düşük değeri" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -185,20 +235,48 @@ msgid "Name" msgstr "Adı" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Opsiyonel Alan Bilgileri" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -214,7 +292,8 @@ msgid "Success" msgstr "Başarılı" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Toplam" @@ -238,7 +317,13 @@ msgid "Tile:" msgstr "Parça:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "'%s' nin toplam değeri" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -247,3 +332,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Kullanıcı" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Değer" diff --git a/web_dashboard_tile/i18n/uk.po b/web_dashboard_tile/i18n/uk.po new file mode 100644 index 00000000..cd736327 --- /dev/null +++ b/web_dashboard_tile/i18n/uk.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Name" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Послідовність" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/vi.po b/web_dashboard_tile/i18n/vi.po new file mode 100644 index 00000000..65c0e72e --- /dev/null +++ b/web_dashboard_tile/i18n/vi.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Tên" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Trình tự" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/zh_CN.po b/web_dashboard_tile/i18n/zh_CN.po new file mode 100644 index 00000000..e791de3b --- /dev/null +++ b/web_dashboard_tile/i18n/zh_CN.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "名称" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "序号" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/zh_TW.po b/web_dashboard_tile/i18n/zh_TW.po new file mode 100644 index 00000000..35a2d19c --- /dev/null +++ b/web_dashboard_tile/i18n/zh_TW.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "編號" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "名稱" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "序列" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_favicon/i18n/es.po b/web_favicon/i18n/es.po index cf49ab54..ba76c5ba 100644 --- a/web_favicon/i18n/es.po +++ b/web_favicon/i18n/es.po @@ -3,13 +3,14 @@ # * web_favicon # # Translators: +# Pedro M. Baeza , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 08:27+0000\n" -"PO-Revision-Date: 2016-04-07 13:51+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-11 13:00+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,39 +26,39 @@ msgstr "Compañías" #. module: web_favicon #: view:res.company:web_favicon.view_company_form msgid "Configuration" -msgstr "" +msgstr "Configuración" #. module: web_favicon #: view:res.company:web_favicon.view_company_form msgid "Favicon" -msgstr "" +msgstr "Favicon" #. module: web_favicon #: field:res.company,favicon_backend:0 msgid "Favicon backend" -msgstr "" +msgstr "Favicon para el backend" #. module: web_favicon #: field:res.company,favicon_backend_mimetype:0 msgid "Favicon backend mimetype" -msgstr "" +msgstr "Tipo MIME del favicon para el backend" #. module: web_favicon #: help:res.company,favicon_backend_mimetype:0 msgid "Set the mimetype of your file." -msgstr "" +msgstr "Establezca el tipo MIME de su archivo." #. module: web_favicon #: selection:res.company,favicon_backend_mimetype:0 msgid "image/gif" -msgstr "" +msgstr "image/gif" #. module: web_favicon #: selection:res.company,favicon_backend_mimetype:0 msgid "image/png" -msgstr "" +msgstr "image/png" #. module: web_favicon #: selection:res.company,favicon_backend_mimetype:0 msgid "image/x-icon" -msgstr "" +msgstr "image/x-icon" diff --git a/web_favicon/i18n/pt_BR.po b/web_favicon/i18n/pt_BR.po index e49309ea..e48ceaa8 100644 --- a/web_favicon/i18n/pt_BR.po +++ b/web_favicon/i18n/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 08:27+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-04-07 13:51+0000\n" "Last-Translator: <>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" @@ -25,7 +25,7 @@ msgstr "Empresas" #. module: web_favicon #: view:res.company:web_favicon.view_company_form msgid "Configuration" -msgstr "" +msgstr "Configuração" #. module: web_favicon #: view:res.company:web_favicon.view_company_form diff --git a/web_graph_improved/i18n/bg.po b/web_graph_improved/i18n/bg.po new file mode 100644 index 00000000..c7011d35 --- /dev/null +++ b/web_graph_improved/i18n/bg.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Общо" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/bs.po b/web_graph_improved/i18n/bs.po new file mode 100644 index 00000000..5ce86faa --- /dev/null +++ b/web_graph_improved/i18n/bs.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Ukupno" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/cs.po b/web_graph_improved/i18n/cs.po new file mode 100644 index 00000000..18f8e598 --- /dev/null +++ b/web_graph_improved/i18n/cs.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Celkem" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/da.po b/web_graph_improved/i18n/da.po new file mode 100644 index 00000000..6551c62d --- /dev/null +++ b/web_graph_improved/i18n/da.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/en_GB.po b/web_graph_improved/i18n/en_GB.po new file mode 100644 index 00000000..a60a530d --- /dev/null +++ b/web_graph_improved/i18n/en_GB.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_AR.po b/web_graph_improved/i18n/es_AR.po new file mode 100644 index 00000000..c5201aa4 --- /dev/null +++ b/web_graph_improved/i18n/es_AR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_CO.po b/web_graph_improved/i18n/es_CO.po new file mode 100644 index 00000000..a41383f2 --- /dev/null +++ b/web_graph_improved/i18n/es_CO.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_CR.po b/web_graph_improved/i18n/es_CR.po new file mode 100644 index 00000000..facf96bb --- /dev/null +++ b/web_graph_improved/i18n/es_CR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_EC.po b/web_graph_improved/i18n/es_EC.po new file mode 100644 index 00000000..2a18f0fe --- /dev/null +++ b/web_graph_improved/i18n/es_EC.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_MX.po b/web_graph_improved/i18n/es_MX.po new file mode 100644 index 00000000..ab874ada --- /dev/null +++ b/web_graph_improved/i18n/es_MX.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_PE.po b/web_graph_improved/i18n/es_PE.po new file mode 100644 index 00000000..7490e4d7 --- /dev/null +++ b/web_graph_improved/i18n/es_PE.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_VE.po b/web_graph_improved/i18n/es_VE.po new file mode 100644 index 00000000..86840c78 --- /dev/null +++ b/web_graph_improved/i18n/es_VE.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/eu.po b/web_graph_improved/i18n/eu.po new file mode 100644 index 00000000..7e11a0cb --- /dev/null +++ b/web_graph_improved/i18n/eu.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/he.po b/web_graph_improved/i18n/he.po new file mode 100644 index 00000000..f0a038c2 --- /dev/null +++ b/web_graph_improved/i18n/he.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "סה\"כ" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/ja.po b/web_graph_improved/i18n/ja.po new file mode 100644 index 00000000..322d5d50 --- /dev/null +++ b/web_graph_improved/i18n/ja.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "合計" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/lt.po b/web_graph_improved/i18n/lt.po new file mode 100644 index 00000000..94bbb476 --- /dev/null +++ b/web_graph_improved/i18n/lt.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Viso" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/lv.po b/web_graph_improved/i18n/lv.po new file mode 100644 index 00000000..80db08db --- /dev/null +++ b/web_graph_improved/i18n/lv.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Summa" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/mk.po b/web_graph_improved/i18n/mk.po new file mode 100644 index 00000000..f5b76ba3 --- /dev/null +++ b/web_graph_improved/i18n/mk.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Вкупно" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/mn.po b/web_graph_improved/i18n/mn.po new file mode 100644 index 00000000..7c253334 --- /dev/null +++ b/web_graph_improved/i18n/mn.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Дүн" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/nb.po b/web_graph_improved/i18n/nb.po new file mode 100644 index 00000000..6e034ced --- /dev/null +++ b/web_graph_improved/i18n/nb.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/nl_BE.po b/web_graph_improved/i18n/nl_BE.po new file mode 100644 index 00000000..1cb4e54e --- /dev/null +++ b/web_graph_improved/i18n/nl_BE.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Totaal" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/pl.po b/web_graph_improved/i18n/pl.po new file mode 100644 index 00000000..dbed116a --- /dev/null +++ b/web_graph_improved/i18n/pl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Suma" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/sk.po b/web_graph_improved/i18n/sk.po new file mode 100644 index 00000000..7bfd7875 --- /dev/null +++ b/web_graph_improved/i18n/sk.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Celkom" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/sr@latin.po b/web_graph_improved/i18n/sr@latin.po new file mode 100644 index 00000000..97913d07 --- /dev/null +++ b/web_graph_improved/i18n/sr@latin.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Ukupno" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/sv.po b/web_graph_improved/i18n/sv.po new file mode 100644 index 00000000..1e92e4e5 --- /dev/null +++ b/web_graph_improved/i18n/sv.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Totalt" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/th.po b/web_graph_improved/i18n/th.po new file mode 100644 index 00000000..a23dec8f --- /dev/null +++ b/web_graph_improved/i18n/th.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "รวม" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/uk.po b/web_graph_improved/i18n/uk.po new file mode 100644 index 00000000..5d69eae4 --- /dev/null +++ b/web_graph_improved/i18n/uk.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Всього" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/vi.po b/web_graph_improved/i18n/vi.po new file mode 100644 index 00000000..1503172b --- /dev/null +++ b/web_graph_improved/i18n/vi.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Tổng" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/zh_CN.po b/web_graph_improved/i18n/zh_CN.po new file mode 100644 index 00000000..764962a2 --- /dev/null +++ b/web_graph_improved/i18n/zh_CN.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "总计" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/zh_TW.po b/web_graph_improved/i18n/zh_TW.po new file mode 100644 index 00000000..c34acbbc --- /dev/null +++ b/web_graph_improved/i18n/zh_TW.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "總計" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_hideleftmenu/i18n/es.po b/web_hideleftmenu/i18n/es.po new file mode 100644 index 00000000..df8b3db0 --- /dev/null +++ b/web_hideleftmenu/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_hideleftmenu +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:42+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_hideleftmenu +#. openerp-web +#: code:addons/web_hideleftmenu/static/src/xml/lib.xml:7 +#, python-format +msgid "Hide/Show Menu" +msgstr "Ocultar/Mostrar menú" diff --git a/web_m2x_options/i18n/ar.po b/web_m2x_options/i18n/ar.po index 75f87b1f..5a019bcd 100644 --- a/web_m2x_options/i18n/ar.po +++ b/web_m2x_options/i18n/ar.po @@ -4,9 +4,11 @@ # # Translators: # Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 # Alejandro Santana , 2015 # Antonio Trueba, 2016 # Carles Antoli , 2015 +# Carles Antoli , 2015 # danimaribeiro , 2016 # FIRST AUTHOR , 2010,2012 # Jarmo Kortetjärvi , 2016 @@ -18,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" @@ -30,16 +32,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "إنشاء \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "إنشاء وتحرير ..." @@ -57,7 +59,7 @@ msgstr "" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "البحث عن المزيد ..." diff --git a/web_m2x_options/i18n/de.po b/web_m2x_options/i18n/de.po index 57115214..672e2f3e 100644 --- a/web_m2x_options/i18n/de.po +++ b/web_m2x_options/i18n/de.po @@ -4,9 +4,11 @@ # # Translators: # Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 # danimaribeiro , 2015-2016 # FIRST AUTHOR , 2012,2014 # Hotellook, 2014 @@ -21,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Rudolf Schnapka \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" @@ -33,16 +35,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Anlegen \"%s" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Anlegen und Bearbeiten" @@ -60,7 +62,7 @@ msgstr "Datenmodelle" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Suche weitere..." diff --git a/web_m2x_options/i18n/es.po b/web_m2x_options/i18n/es.po index 64a85238..616adf16 100644 --- a/web_m2x_options/i18n/es.po +++ b/web_m2x_options/i18n/es.po @@ -17,7 +17,7 @@ # LEE SI HYEONG , 2014 # Matjaž Mozetič , 2015 # Paolo Valier, 2016 -# Pedro M. Baeza , 2015 +# Pedro M. Baeza , 2015-2016 # Rudolf Schnapka , 2016 # SaFi J. , 2015 # Sam Ryoo , 2014 @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-15 01:57+0000\n" "Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -40,16 +40,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Crear \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Crear y editar..." @@ -57,7 +57,7 @@ msgstr "Crear y editar..." #. module: web_m2x_options #: field:ir.model,disable_quick_create:0 msgid "Disable quick create" -msgstr "" +msgstr "Deshabilitar creado rápido" #. module: web_m2x_options #: model:ir.model,name:web_m2x_options.model_ir_model @@ -67,7 +67,7 @@ msgstr "Modelos" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Buscar más..." diff --git a/web_m2x_options/i18n/fi.po b/web_m2x_options/i18n/fi.po index 5ac7cc8a..ed252176 100644 --- a/web_m2x_options/i18n/fi.po +++ b/web_m2x_options/i18n/fi.po @@ -4,7 +4,9 @@ # # Translators: # Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 # Antonio Trueba, 2016 +# Bole , 2015 # danimaribeiro , 2016 # Bole , 2015 # FIRST AUTHOR , 2011-2012,2014 @@ -12,6 +14,7 @@ # Hotellook, 2014 # Jarmo Kortetjärvi , 2016 # Leonardo J. Caballero G. , 2016 +# Leonardo J. Caballero G. , 2016 # Matjaž Mozetič , 2015-2016 # Paolo Valier, 2016 # Pedro M. Baeza , 2015 @@ -20,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-09-30 12:31+0000\n" +"Last-Translator: Jarmo Kortetjärvi \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,16 +35,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Luo \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Luo ja muokkaa..." @@ -49,17 +52,17 @@ msgstr "Luo ja muokkaa..." #. module: web_m2x_options #: field:ir.model,disable_quick_create:0 msgid "Disable quick create" -msgstr "" +msgstr "Poista pikaluonti käytöstä" #. module: web_m2x_options #: model:ir.model,name:web_m2x_options.model_ir_model msgid "Models" -msgstr "" +msgstr "Mallit" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Hae lisää..." diff --git a/web_m2x_options/i18n/fr.po b/web_m2x_options/i18n/fr.po index fda5c82e..7f78a198 100644 --- a/web_m2x_options/i18n/fr.po +++ b/web_m2x_options/i18n/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Christophe CHAUVET \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" @@ -20,16 +20,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Creer \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Créer et modifier..." @@ -47,7 +47,7 @@ msgstr "Modèles" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Rechercher plus..." diff --git a/web_m2x_options/i18n/hr.po b/web_m2x_options/i18n/hr.po new file mode 100644 index 00000000..448796a8 --- /dev/null +++ b/web_m2x_options/i18n/hr.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-09-30 08:48+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_m2x_options/i18n/hr_HR.po b/web_m2x_options/i18n/hr_HR.po new file mode 100644 index 00000000..bffa62ab --- /dev/null +++ b/web_m2x_options/i18n/hr_HR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-09-30 09:38+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_m2x_options/i18n/it.po b/web_m2x_options/i18n/it.po index 30bede28..64abab9b 100644 --- a/web_m2x_options/i18n/it.po +++ b/web_m2x_options/i18n/it.po @@ -4,6 +4,7 @@ # # Translators: # Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # Bole , 2015 @@ -22,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Paolo Valier\n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" @@ -34,16 +35,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Crea \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Crea e Modifica..." @@ -61,7 +62,7 @@ msgstr "Modelli" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Cerca altro..." diff --git a/web_m2x_options/i18n/pt_BR.po b/web_m2x_options/i18n/pt_BR.po index dba2ecf2..eb8fb2da 100644 --- a/web_m2x_options/i18n/pt_BR.po +++ b/web_m2x_options/i18n/pt_BR.po @@ -6,6 +6,7 @@ # Artūras Griškonis , 2012,2015-2016 # Artūras Griškonis , 2012 # Carles Antoli , 2015 +# Carles Antoli , 2015 # danimaribeiro , 2016 # danimaribeiro , 2016 # Dorin Hongu , 2015 @@ -20,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: danimaribeiro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" @@ -32,16 +33,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Criar \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Criar e editar.." @@ -59,7 +60,7 @@ msgstr "Modelos" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Buscar mais..." diff --git a/web_m2x_options/i18n/sl.po b/web_m2x_options/i18n/sl.po index a4f1ebd8..c42946b7 100644 --- a/web_m2x_options/i18n/sl.po +++ b/web_m2x_options/i18n/sl.po @@ -6,12 +6,15 @@ # Ahmet Altinisik , 2015-2016 # Antonio Trueba, 2016 # Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 # danimaribeiro , 2016 # FIRST AUTHOR , 2012,2014 # Hotellook, 2014 # Isabelle RICHARD , 2015 # Jarmo Kortetjärvi , 2016 # Jesús Alan Ramos Rodríguez , 2015 +# Jesús Alan Ramos Rodríguez , 2015 +# Lixon Jean-Yves , 2016 # Lixon Jean-Yves , 2016 # Matjaž Mozetič , 2015-2016 # Paolo Valier, 2016 @@ -21,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-16 12:33+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" @@ -33,16 +36,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Ustvari \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Ustvari in urejaj..." @@ -60,7 +63,7 @@ msgstr "Modeli" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Poišči več..." diff --git a/web_m2x_options/i18n/tr.po b/web_m2x_options/i18n/tr.po index 121bdfd3..0cc462b8 100644 --- a/web_m2x_options/i18n/tr.po +++ b/web_m2x_options/i18n/tr.po @@ -3,11 +3,13 @@ # * web_m2x_options # # Translators: +# Ahmet Altinisik , 2015 # Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015 # Antonio Trueba, 2016 # bossnm11 , 2014 # Carles Antoli , 2015 +# Carles Antoli , 2015 # Chanseok , 2014 # Chul Park , 2015 # danimaribeiro , 2016 @@ -23,6 +25,7 @@ # Jong-Dae Park , 2013 # Kevin Min , 2015 # KimKyudong , 2014 +# kmooc , 2015 # mariana1201 , 2014 # Matjaž Mozetič , 2015-2016 # Nicole , 2014 @@ -36,11 +39,12 @@ # Sunah Lim , 2013 # Thomas A. Jaeger, 2015 # Young C. Kim, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" @@ -52,16 +56,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:202 -#: code:addons/web_m2x_options/static/src/js/form.js:341 +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 #, python-format msgid "Create \"%s\"" msgstr "Oluştur \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:224 -#: code:addons/web_m2x_options/static/src/js/form.js:362 +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 #, python-format msgid "Create and Edit..." msgstr "Oluştur ve düzenle..." @@ -79,7 +83,7 @@ msgstr "Modeller" #. module: web_m2x_options #. openerp-web #: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:316 +#: code:addons/web_m2x_options/static/src/js/form.js:324 #, python-format msgid "Search More..." msgstr "Daha Fazla..." diff --git a/web_menu_navbar_needaction/i18n/es.po b/web_menu_navbar_needaction/i18n/es.po new file mode 100644 index 00000000..b9f231ea --- /dev/null +++ b/web_menu_navbar_needaction/i18n/es.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_menu_navbar_needaction +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-26 01:59+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_menu_navbar_needaction +#: code:addons/web_menu_navbar_needaction/models/ir_ui_menu.py:138 +#, python-format +msgid "" +"Cannot evaluate %s to a search domain:\n" +"%s" +msgstr "" +"No se puede evaluar %s como un dominio de búsqueda:\n" +"%s" + +#. module: web_menu_navbar_needaction +#: view:ir.ui.menu:web_menu_navbar_needaction.edit_menu_access +msgid "Fill in a domain for a custom needaction" +msgstr "Rellene un dominio para el filtro de \"acción requerida\" personalizado" + +#. module: web_menu_navbar_needaction +#: help:ir.ui.menu,needaction_domain:0 +msgid "" +"If your menu item needs a different domain, set it here. It will override " +"the model's needaction domain completely." +msgstr "" +"Si su elemento de menú necesita un dominio diferente, establézcalo aquí. " +"Sobreescribirá completamente el dominio del filtro \"acción requerida\" de " +"su modelo." + +#. module: web_menu_navbar_needaction +#: field:ir.ui.menu,needaction:0 +msgid "Needaction" +msgstr "Filtro de \"acción requerida\"" + +#. module: web_menu_navbar_needaction +#: field:ir.ui.menu,needaction_domain:0 +msgid "Needaction domain" +msgstr "Dominio del filtro de \"acción requerida\"" + +#. module: web_menu_navbar_needaction +#: help:ir.ui.menu,needaction:0 +msgid "Set to False to disable needaction for specific menu items" +msgstr "" +"Establézcalo a Falso para deshabilitar el filtro de \"acción requerida\" " +"para elementos de menú específicos" diff --git a/web_menu_navbar_needaction/i18n/fi.po b/web_menu_navbar_needaction/i18n/fi.po new file mode 100644 index 00000000..058c32f1 --- /dev/null +++ b/web_menu_navbar_needaction/i18n/fi.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_menu_navbar_needaction +# +# Translators: +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-26 01:59+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_menu_navbar_needaction +#: code:addons/web_menu_navbar_needaction/models/ir_ui_menu.py:138 +#, python-format +msgid "" +"Cannot evaluate %s to a search domain:\n" +"%s" +msgstr "" +"Ei voida käyttää %s hakuehdoissa:\n" +"%s" + +#. module: web_menu_navbar_needaction +#: view:ir.ui.menu:web_menu_navbar_needaction.edit_menu_access +msgid "Fill in a domain for a custom needaction" +msgstr "Täytä rajaus räätälöidylle needaction-toiminnolle " + +#. module: web_menu_navbar_needaction +#: help:ir.ui.menu,needaction_domain:0 +msgid "" +"If your menu item needs a different domain, set it here. It will override " +"the model's needaction domain completely." +msgstr "" + +#. module: web_menu_navbar_needaction +#: field:ir.ui.menu,needaction:0 +msgid "Needaction" +msgstr "Needaction" + +#. module: web_menu_navbar_needaction +#: field:ir.ui.menu,needaction_domain:0 +msgid "Needaction domain" +msgstr "Needaction rajaus" + +#. module: web_menu_navbar_needaction +#: help:ir.ui.menu,needaction:0 +msgid "Set to False to disable needaction for specific menu items" +msgstr "" diff --git a/web_menu_navbar_needaction/i18n/sl.po b/web_menu_navbar_needaction/i18n/sl.po new file mode 100644 index 00000000..01240318 --- /dev/null +++ b/web_menu_navbar_needaction/i18n/sl.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_menu_navbar_needaction +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-26 01:59+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_menu_navbar_needaction +#: code:addons/web_menu_navbar_needaction/models/ir_ui_menu.py:138 +#, python-format +msgid "" +"Cannot evaluate %s to a search domain:\n" +"%s" +msgstr "" +"Ni mogoče ovrednotiti %s za iskanje domene:\n" +"%s" + +#. module: web_menu_navbar_needaction +#: view:ir.ui.menu:web_menu_navbar_needaction.edit_menu_access +msgid "Fill in a domain for a custom needaction" +msgstr "Izpolnite domeno za prilagojeno potrebo po ukrepanju" + +#. module: web_menu_navbar_needaction +#: help:ir.ui.menu,needaction_domain:0 +msgid "" +"If your menu item needs a different domain, set it here. It will override " +"the model's needaction domain completely." +msgstr "" +"Če postavka menija potrebuje drugačno domeno, jo nastavite tukaj. Domena " +"potrebe po ukrepanju modela bo tako v celoti vsiljena." + +#. module: web_menu_navbar_needaction +#: field:ir.ui.menu,needaction:0 +msgid "Needaction" +msgstr "Potreba po ukrepanju" + +#. module: web_menu_navbar_needaction +#: field:ir.ui.menu,needaction_domain:0 +msgid "Needaction domain" +msgstr "Domena potrebe po ukrepanju" + +#. module: web_menu_navbar_needaction +#: help:ir.ui.menu,needaction:0 +msgid "Set to False to disable needaction for specific menu items" +msgstr "" +"Nastavite na False za onemogočenje potrebe po ukrepanju za specifične " +"postavke menija." diff --git a/web_offline_warning/i18n/es.po b/web_offline_warning/i18n/es.po index d5e9e7f2..7a0efda0 100644 --- a/web_offline_warning/i18n/es.po +++ b/web_offline_warning/i18n/es.po @@ -3,14 +3,15 @@ # * web_offline_warning # # Translators: -# Oihane Crucelaegui , 2016 +# oihane , 2016 +# Pedro M. Baeza , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-23 10:59+0000\n" -"Last-Translator: Oihane Crucelaegui \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:45+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,18 +24,18 @@ msgstr "" #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:20 #, python-format msgid "Ok" -msgstr "Ok" +msgstr "Aceptar" #. module: web_offline_warning #. openerp-web #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:23 #, python-format msgid "The server cannot be reached. You are probably offline." -msgstr "" +msgstr "No se puede contactar con el servidor. Seguramente esté sin conexión." #. module: web_offline_warning #. openerp-web #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:18 #, python-format msgid "Warning" -msgstr "" +msgstr "Aviso" diff --git a/web_option_auto_color/i18n/es.po b/web_option_auto_color/i18n/es.po new file mode 100644 index 00000000..9e05bb6b --- /dev/null +++ b/web_option_auto_color/i18n/es.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_option_auto_color +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:46+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_option_auto_color +#. openerp-web +#: code:addons/web_option_auto_color/static/src/xml/templates.xml:5 +#, python-format +msgid "" +"column.autocolor == '1' and view.auto_color_cell_style(render_cell(record, " +"column), column)" +msgstr "column.autocolor == '1' and view.auto_color_cell_style(render_cell(record, column), column)" diff --git a/web_search_autocomplete_prefetch/i18n/es.po b/web_search_autocomplete_prefetch/i18n/es.po new file mode 100644 index 00000000..6f9bc8f9 --- /dev/null +++ b/web_search_autocomplete_prefetch/i18n/es.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_search_autocomplete_prefetch +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-26 01:59+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_search_autocomplete_prefetch +#: view:ir.ui.view:web_search_autocomplete_prefetch.view_view_search_autocomplete +msgid "{'web_search_autocomplete_prefetch.disable': true}" +msgstr "{'web_search_autocomplete_prefetch.disable': true}" diff --git a/web_search_autocomplete_prefetch/i18n/fi.po b/web_search_autocomplete_prefetch/i18n/fi.po new file mode 100644 index 00000000..c13a0377 --- /dev/null +++ b/web_search_autocomplete_prefetch/i18n/fi.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_search_autocomplete_prefetch +# +# Translators: +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-26 01:59+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_search_autocomplete_prefetch +#: view:ir.ui.view:web_search_autocomplete_prefetch.view_view_search_autocomplete +msgid "{'web_search_autocomplete_prefetch.disable': true}" +msgstr "{'web_search_autocomplete_prefetch.disable': true}" diff --git a/web_search_datetime_completion/i18n/es.po b/web_search_datetime_completion/i18n/es.po new file mode 100644 index 00000000..4b325153 --- /dev/null +++ b/web_search_datetime_completion/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_search_datetime_completion +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:46+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_search_datetime_completion +#. openerp-web +#: code:addons/web_search_datetime_completion/static/src/js/web_search_datetime_completion.js:60 +#, python-format +msgid "Search %(field)s at: %(value)s" +msgstr "Buscar %(field)s en: %(value)s" diff --git a/web_shortcuts/i18n/ar.po b/web_shortcuts/i18n/ar.po index 7889a368..c9c65357 100644 --- a/web_shortcuts/i18n/ar.po +++ b/web_shortcuts/i18n/ar.po @@ -3,15 +3,28 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015 +# Artūras Griškonis , 2012,2015-2016 +# Artūras Griškonis , 2012 +# danimaribeiro , 2016 +# Dorin Hongu , 2015 +# FIRST AUTHOR , 2012-2013 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 # SaFi J. , 2015 +# Zapata11 , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-16 07:41+0000\n" -"PO-Revision-Date: 2015-12-16 17:22+0000\n" -"Last-Translator: SaFi J. \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,11 +49,21 @@ msgstr "تم الإنشاء بواسطة" msgid "Created on" msgstr "تم الإنشاء في" +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" msgstr "المعرف" +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" diff --git a/web_shortcuts/i18n/bg.po b/web_shortcuts/i18n/bg.po new file mode 100644 index 00000000..09dd1f93 --- /dev/null +++ b/web_shortcuts/i18n/bg.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/bs.po b/web_shortcuts/i18n/bs.po index 5b16da95..20a6709a 100644 --- a/web_shortcuts/i18n/bs.po +++ b/web_shortcuts/i18n/bs.po @@ -3,13 +3,23 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2011-2014 +# Florian Hatat, 2015 +# Jarmo Kortetjärvi , 2016 +# Jesús Alan Ramos Rodríguez , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" "MIME-Version: 1.0\n" @@ -28,27 +38,37 @@ msgstr "Dodaj / Ukloni pračicu..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Kreirao" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Kreirano" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Zadnji ažurirao" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Zadnje ažurirano" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/cs.po b/web_shortcuts/i18n/cs.po index 70ab2ab9..a759b515 100644 --- a/web_shortcuts/i18n/cs.po +++ b/web_shortcuts/i18n/cs.po @@ -3,13 +3,24 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015 +# Alexis de Lattre , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015-2016 +# FIRST AUTHOR , 2013-2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" "MIME-Version: 1.0\n" @@ -28,27 +39,37 @@ msgstr "Přidat / Odebrat zkratku..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Vytvořil(a)" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Vytvořeno" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Naposled upraveno" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Naposled upraveno" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/da.po b/web_shortcuts/i18n/da.po index d401460e..b9f7858e 100644 --- a/web_shortcuts/i18n/da.po +++ b/web_shortcuts/i18n/da.po @@ -3,13 +3,21 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2013 +# Antonio Trueba, 2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" "MIME-Version: 1.0\n" @@ -28,27 +36,37 @@ msgstr "Tilføj/fjern genvej ..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Oprettet af" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Oprettet den" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Vist navn" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "Id" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Sidst opdateret af" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Sidst opdateret den" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/en_GB.po b/web_shortcuts/i18n/en_GB.po index 16ffa85c..7b4f546f 100644 --- a/web_shortcuts/i18n/en_GB.po +++ b/web_shortcuts/i18n/en_GB.po @@ -3,13 +3,23 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2014 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Miku Laitinen , 2015 +# Rudolf Schnapka , 2015-2016 +# Sofce Dimitrijeva , 2013 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:48+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -28,27 +38,37 @@ msgstr "Add / Remove Shortcut..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Created by" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Created on" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Display Name" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Last Updated by" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Last Updated on" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/es_AR.po b/web_shortcuts/i18n/es_AR.po new file mode 100644 index 00000000..b16428f6 --- /dev/null +++ b/web_shortcuts/i18n/es_AR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_CO.po b/web_shortcuts/i18n/es_CO.po new file mode 100644 index 00000000..f244ffbc --- /dev/null +++ b/web_shortcuts/i18n/es_CO.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_CR.po b/web_shortcuts/i18n/es_CR.po new file mode 100644 index 00000000..9769b958 --- /dev/null +++ b/web_shortcuts/i18n/es_CR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_EC.po b/web_shortcuts/i18n/es_EC.po new file mode 100644 index 00000000..b6bee864 --- /dev/null +++ b/web_shortcuts/i18n/es_EC.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_MX.po b/web_shortcuts/i18n/es_MX.po new file mode 100644 index 00000000..6ae12eef --- /dev/null +++ b/web_shortcuts/i18n/es_MX.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_PE.po b/web_shortcuts/i18n/es_PE.po new file mode 100644 index 00000000..af475703 --- /dev/null +++ b/web_shortcuts/i18n/es_PE.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_PY.po b/web_shortcuts/i18n/es_PY.po new file mode 100644 index 00000000..0a5ce9c1 --- /dev/null +++ b/web_shortcuts/i18n/es_PY.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_VE.po b/web_shortcuts/i18n/es_VE.po new file mode 100644 index 00000000..83380044 --- /dev/null +++ b/web_shortcuts/i18n/es_VE.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/et.po b/web_shortcuts/i18n/et.po new file mode 100644 index 00000000..1c915bdd --- /dev/null +++ b/web_shortcuts/i18n/et.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/eu.po b/web_shortcuts/i18n/eu.po new file mode 100644 index 00000000..c7d95849 --- /dev/null +++ b/web_shortcuts/i18n/eu.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/fa.po b/web_shortcuts/i18n/fa.po new file mode 100644 index 00000000..3572cdcb --- /dev/null +++ b/web_shortcuts/i18n/fa.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/fr_CH.po b/web_shortcuts/i18n/fr_CH.po new file mode 100644 index 00000000..695225f2 --- /dev/null +++ b/web_shortcuts/i18n/fr_CH.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/gl.po b/web_shortcuts/i18n/gl.po index 6e437343..3c2e2c2b 100644 --- a/web_shortcuts/i18n/gl.po +++ b/web_shortcuts/i18n/gl.po @@ -4,11 +4,13 @@ # # Translators: # Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 # Alejandro Santana , 2015 # Alexsandro Haag , 2015 # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # Carles Antoli , 2015 +# Carles Antoli , 2015 # danimaribeiro , 2016 # FIRST AUTHOR , 2014 # Hans Henrik Gabelgaard , 2015 @@ -18,12 +20,13 @@ # Stéphane Bidoul , 2015 # Wagner Pereira , 2015 # yterrettaz, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -62,7 +65,7 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 diff --git a/web_shortcuts/i18n/gl_ES.po b/web_shortcuts/i18n/gl_ES.po new file mode 100644 index 00000000..3d9791e6 --- /dev/null +++ b/web_shortcuts/i18n/gl_ES.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/he.po b/web_shortcuts/i18n/he.po new file mode 100644 index 00000000..73e290e7 --- /dev/null +++ b/web_shortcuts/i18n/he.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/hr.po b/web_shortcuts/i18n/hr.po index bfcbca7b..fe1c7928 100644 --- a/web_shortcuts/i18n/hr.po +++ b/web_shortcuts/i18n/hr.po @@ -3,9 +3,9 @@ # * web_shortcuts # # Translators: -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2015 # bossnm11 , 2014 -# Chanseok , 2014 +# Chanseok , 2014 # danimaribeiro , 2016 # FIRST AUTHOR , 2012,2014 # Hotellook, 2014 @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-14 11:34+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" "MIME-Version: 1.0\n" @@ -48,17 +48,17 @@ msgstr "Dodaj / ukloni prečac..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Kreirao" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Kreirano" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Naziv " #. module: web_shortcuts #: field:web.shortcut,id:0 @@ -68,17 +68,17 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Zadnje modificirano" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Zadnji ažurirao" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Zadnje ažuriranje" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/hr_HR.po b/web_shortcuts/i18n/hr_HR.po new file mode 100644 index 00000000..8ab63785 --- /dev/null +++ b/web_shortcuts/i18n/hr_HR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/hu.po b/web_shortcuts/i18n/hu.po index 3c8e4a85..4bc6ddcb 100644 --- a/web_shortcuts/i18n/hu.po +++ b/web_shortcuts/i18n/hu.po @@ -3,13 +3,24 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# Eduardo Rodríguez Crespo , 2016 +# FIRST AUTHOR , 2012-2013 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# UAB "Draugiški sprendimai" , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-04-28 07:12+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" "MIME-Version: 1.0\n" @@ -28,27 +39,37 @@ msgstr "Billentyűkombináció hozzáadása/eltávolítása" #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Készítette" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Létrehozás dátuma" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Utoljára frissítve, által" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Utoljára frissítve " #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/ja.po b/web_shortcuts/i18n/ja.po new file mode 100644 index 00000000..e6803736 --- /dev/null +++ b/web_shortcuts/i18n/ja.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/ko.po b/web_shortcuts/i18n/ko.po new file mode 100644 index 00000000..d5997d2c --- /dev/null +++ b/web_shortcuts/i18n/ko.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/lt.po b/web_shortcuts/i18n/lt.po index 897a16e7..50a28dd5 100644 --- a/web_shortcuts/i18n/lt.po +++ b/web_shortcuts/i18n/lt.po @@ -3,13 +3,43 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2014 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Nicole , 2014 +# Pedro M. Baeza , 2015 +# Pope, 2014 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Wagner Pereira , 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" "MIME-Version: 1.0\n" @@ -28,27 +58,37 @@ msgstr "Pridėti / pašalinti trumpinį..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Sukūrė" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Sukurta" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Paskutinį kartą atnaujino" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Paskutinį kartą atnaujinta" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/lv.po b/web_shortcuts/i18n/lv.po new file mode 100644 index 00000000..dd5dae13 --- /dev/null +++ b/web_shortcuts/i18n/lv.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/mk.po b/web_shortcuts/i18n/mk.po index 062da44d..e6881069 100644 --- a/web_shortcuts/i18n/mk.po +++ b/web_shortcuts/i18n/mk.po @@ -3,13 +3,29 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2012-2014 +# Giacomo , 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2015 +# Mohamed HABOU , 2016 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" "MIME-Version: 1.0\n" @@ -28,27 +44,37 @@ msgstr "Додади / Отстрани кратенка" #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Креирано од" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Креирано на" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Последно ажурирање од" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Последно ажурирање на" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/mn.po b/web_shortcuts/i18n/mn.po index fa2da74d..4cc630e8 100644 --- a/web_shortcuts/i18n/mn.po +++ b/web_shortcuts/i18n/mn.po @@ -3,13 +3,46 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2014 +# Giacomo , 2015 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Mohamed HABOU , 2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Thomas A. Jaeger, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" "MIME-Version: 1.0\n" @@ -28,27 +61,37 @@ msgstr "Шуут холбоосыг Нэмэх / Устгах ..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Үүсгэгч" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Үүсгэсэн" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Сүүлийн засвар хийсэн" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Сүүлийн засвар хийсэн огноо" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/nb.po b/web_shortcuts/i18n/nb.po new file mode 100644 index 00000000..e55f22d4 --- /dev/null +++ b/web_shortcuts/i18n/nb.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/nl.po b/web_shortcuts/i18n/nl.po index 60e795c3..8ba288b5 100644 --- a/web_shortcuts/i18n/nl.po +++ b/web_shortcuts/i18n/nl.po @@ -8,6 +8,8 @@ # Antonio Trueba, 2016 # Armando Vulcano Junior , 2015 # Carles Antoli , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # danimaribeiro , 2015 # FIRST AUTHOR , 2012,2014 @@ -22,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-17 18:43+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-22 12:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -42,12 +44,12 @@ msgstr "Toevoegen/verwijderen snelkoppeling" #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Aangemaakt door" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Aangemaakt op" #. module: web_shortcuts #: field:web.shortcut,display_name:0 @@ -57,7 +59,7 @@ msgstr "Te tonen naam" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 @@ -67,12 +69,12 @@ msgstr "Laatst bijgewerkt op" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Laatst bijgewerkt op" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/nl_BE.po b/web_shortcuts/i18n/nl_BE.po new file mode 100644 index 00000000..5eeb13e1 --- /dev/null +++ b/web_shortcuts/i18n/nl_BE.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/pl.po b/web_shortcuts/i18n/pl.po index b32ed24f..d865ed28 100644 --- a/web_shortcuts/i18n/pl.po +++ b/web_shortcuts/i18n/pl.po @@ -3,13 +3,27 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2012 +# Ahmet Altinisik , 2015 +# Alexis de Lattre , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015-2016 +# FIRST AUTHOR , 2010,2012-2014 +# Giacomo , 2015 +# Giedrius Slavinskas , 2012 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" "MIME-Version: 1.0\n" @@ -28,27 +42,37 @@ msgstr "Dodaj / Usuń skrót" #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Utworzone przez" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Utworzono" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ostatnio modyfikowane przez" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ostatnia zmiana" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/pt.po b/web_shortcuts/i18n/pt.po index 333ed828..4ebe4cc8 100644 --- a/web_shortcuts/i18n/pt.po +++ b/web_shortcuts/i18n/pt.po @@ -7,6 +7,7 @@ # Antonio Trueba, 2016 # bossnm11 , 2014 # Carles Antoli , 2015 +# Carles Antoli , 2015 # Chanseok , 2014 # Chul Park , 2015 # danimaribeiro , 2016 @@ -23,6 +24,7 @@ # Jong-Dae Park , 2013 # Kevin Min , 2015 # KimKyudong , 2014 +# kmooc , 2015 # mariana1201 , 2014 # Matjaž Mozetič , 2015-2016 # Nicole , 2014 @@ -35,12 +37,13 @@ # Sujin Lee , 2014 # Sunah Lim , 2013 # Young C. Kim, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:27+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" "MIME-Version: 1.0\n" @@ -69,7 +72,7 @@ msgstr "Criado em" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome" #. module: web_shortcuts #: field:web.shortcut,id:0 @@ -79,7 +82,7 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Modificado a última vez por" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 diff --git a/web_shortcuts/i18n/pt_BR.po b/web_shortcuts/i18n/pt_BR.po index b3ba3e53..fac42847 100644 --- a/web_shortcuts/i18n/pt_BR.po +++ b/web_shortcuts/i18n/pt_BR.po @@ -3,15 +3,25 @@ # * web_shortcuts # # Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 # danimaribeiro , 2016 +# danimaribeiro , 2016 +# Eduardo Rodríguez Crespo , 2016 # FIRST AUTHOR , 2012 +# Kostas Goutoudis , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-11 02:17+0000\n" -"PO-Revision-Date: 2016-03-05 16:21+0000\n" -"Last-Translator: danimaribeiro \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,11 +46,21 @@ msgstr "Criado por" msgid "Created on" msgstr "Criado em " +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" msgstr "ID" +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" diff --git a/web_shortcuts/i18n/pt_PT.po b/web_shortcuts/i18n/pt_PT.po index fc45b7d0..f3337375 100644 --- a/web_shortcuts/i18n/pt_PT.po +++ b/web_shortcuts/i18n/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:20+0000\n" "Last-Translator: <>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" @@ -37,7 +37,7 @@ msgstr "Criado em" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome a Apresentar" #. module: web_shortcuts #: field:web.shortcut,id:0 @@ -47,7 +47,7 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificação Em" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 diff --git a/web_shortcuts/i18n/sk.po b/web_shortcuts/i18n/sk.po new file mode 100644 index 00000000..017e90e7 --- /dev/null +++ b/web_shortcuts/i18n/sk.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/sr@latin.po b/web_shortcuts/i18n/sr@latin.po new file mode 100644 index 00000000..f063b752 --- /dev/null +++ b/web_shortcuts/i18n/sr@latin.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/sv.po b/web_shortcuts/i18n/sv.po index b75e68df..b01b9871 100644 --- a/web_shortcuts/i18n/sv.po +++ b/web_shortcuts/i18n/sv.po @@ -3,13 +3,24 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015-2016 +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2010,2012-2013 +# Giedrius Slavinskas , 2012 +# Guewen Baconnier , 2015 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015 +# Sofce Dimitrijeva , 2013 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:53+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" "MIME-Version: 1.0\n" @@ -28,27 +39,37 @@ msgstr "Lägg till/ta bort genväg..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Skapad av" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Skapad den" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Visa namn" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Senast uppdaterad av" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Senast uppdaterad" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/th.po b/web_shortcuts/i18n/th.po index 88f3b67e..bd0dacf8 100644 --- a/web_shortcuts/i18n/th.po +++ b/web_shortcuts/i18n/th.po @@ -3,13 +3,51 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Bruno JOLIVEAU, 2015 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2014 +# Gil , 2014 +# Guewen Baconnier , 2015 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# KimKyudong , 2014 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sam Ryoo , 2014 +# Sarina Canelake , 2014 +# Seo. Junmin , 2015 +# Seok Jun Yoon , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# yterrettaz, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" "MIME-Version: 1.0\n" @@ -28,27 +66,37 @@ msgstr "เพิ่ม / ลบ ทางลัด ..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "สร้างโดย" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "สร้างเมื่อ" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "รหัส" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "อัพเดทครั้งสุดท้ายโดย" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/uk.po b/web_shortcuts/i18n/uk.po new file mode 100644 index 00000000..e63b756a --- /dev/null +++ b/web_shortcuts/i18n/uk.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/vi.po b/web_shortcuts/i18n/vi.po index acc4c667..fafd63fc 100644 --- a/web_shortcuts/i18n/vi.po +++ b/web_shortcuts/i18n/vi.po @@ -3,13 +3,23 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" "MIME-Version: 1.0\n" @@ -28,27 +38,37 @@ msgstr "Thêm / Xóa đường dẫn ...." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Được tạo bởi" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Được tạo vào" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Last Updated by" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Cập nhật lần cuối vào" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/zh_CN.po b/web_shortcuts/i18n/zh_CN.po index 963a0b1c..30d677fe 100644 --- a/web_shortcuts/i18n/zh_CN.po +++ b/web_shortcuts/i18n/zh_CN.po @@ -3,13 +3,51 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2012 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Bruno JOLIVEAU, 2015 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012,2014 +# Gil , 2014 +# Guewen Baconnier , 2015 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Jarmo Kortetjärvi , 2016 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013,2015 +# Kevin Min , 2015 +# KimKyudong , 2014 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sam Ryoo , 2014 +# Sarina Canelake , 2014 +# Seo. Junmin , 2015 +# Seok Jun Yoon , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# yterrettaz, 2015 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -28,27 +66,37 @@ msgstr "添加/删除快捷方式..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "创建者" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "创建时间" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "显示名称" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "最后更新者" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "上次更新日期" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/zh_TW.po b/web_shortcuts/i18n/zh_TW.po index f5925e3f..9dd7df84 100644 --- a/web_shortcuts/i18n/zh_TW.po +++ b/web_shortcuts/i18n/zh_TW.po @@ -3,13 +3,25 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2016 +# Alexis de Lattre , 2016 +# Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015-2016 +# FIRST AUTHOR , 2010,2012-2013 +# Giedrius Slavinskas , 2012 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 +# Sofce Dimitrijeva , 2013 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-11 09:52+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -28,27 +40,37 @@ msgstr "新增/移除捷徑..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "建立者" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "建立於" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "編號" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "最後更新:" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "最後更新於" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_switch_company_warning/i18n/es.po b/web_switch_company_warning/i18n/es.po index c6249db4..60a866b0 100644 --- a/web_switch_company_warning/i18n/es.po +++ b/web_switch_company_warning/i18n/es.po @@ -3,14 +3,27 @@ # * web_switch_company_warning # # Translators: -# Pedro M. Baeza , 2015 +# Artūras Griškonis , 2012,2015-2016 +# Artūras Griškonis , 2012 +# danimaribeiro , 2016 +# Dorin Hongu , 2015 +# FIRST AUTHOR , 2012-2014 +# Giacomo , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Miku Laitinen , 2015 +# Pedro M. Baeza , 2015-2016 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Zapata11 , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:12+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:47+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +43,7 @@ msgstr "Recargar" #: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:5 #, python-format msgid "You switched to a different company or user with another tab or window" -msgstr "" +msgstr "Ha cambiado a una compañía diferente o usuario en otra pestaña o ventana" #. module: web_switch_company_warning #. openerp-web diff --git a/web_translate_dialog/i18n/bg.po b/web_translate_dialog/i18n/bg.po new file mode 100644 index 00000000..b2d6ebec --- /dev/null +++ b/web_translate_dialog/i18n/bg.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/bs.po b/web_translate_dialog/i18n/bs.po new file mode 100644 index 00000000..d4657a00 --- /dev/null +++ b/web_translate_dialog/i18n/bs.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ca_ES.po b/web_translate_dialog/i18n/ca_ES.po new file mode 100644 index 00000000..f6d97e86 --- /dev/null +++ b/web_translate_dialog/i18n/ca_ES.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/el_GR.po b/web_translate_dialog/i18n/el_GR.po new file mode 100644 index 00000000..70625496 --- /dev/null +++ b/web_translate_dialog/i18n/el_GR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Άκυρο" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/en_GB.po b/web_translate_dialog/i18n/en_GB.po new file mode 100644 index 00000000..8f855e2d --- /dev/null +++ b/web_translate_dialog/i18n/en_GB.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/fr_CH.po b/web_translate_dialog/i18n/fr_CH.po new file mode 100644 index 00000000..39ad9cf6 --- /dev/null +++ b/web_translate_dialog/i18n/fr_CH.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/hu.po b/web_translate_dialog/i18n/hu.po new file mode 100644 index 00000000..33626ba3 --- /dev/null +++ b/web_translate_dialog/i18n/hu.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Mégsem" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ja.po b/web_translate_dialog/i18n/ja.po new file mode 100644 index 00000000..8ed51871 --- /dev/null +++ b/web_translate_dialog/i18n/ja.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "キャンセル" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/mk.po b/web_translate_dialog/i18n/mk.po new file mode 100644 index 00000000..886422b6 --- /dev/null +++ b/web_translate_dialog/i18n/mk.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/mn.po b/web_translate_dialog/i18n/mn.po new file mode 100644 index 00000000..c14e99ed --- /dev/null +++ b/web_translate_dialog/i18n/mn.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Цуцлах" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/nb.po b/web_translate_dialog/i18n/nb.po new file mode 100644 index 00000000..fe219332 --- /dev/null +++ b/web_translate_dialog/i18n/nb.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ru.po b/web_translate_dialog/i18n/ru.po index 26022164..dd86349e 100644 --- a/web_translate_dialog/i18n/ru.po +++ b/web_translate_dialog/i18n/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" "PO-Revision-Date: 2015-11-07 11:21+0000\n" "Last-Translator: <>\n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" @@ -29,7 +29,7 @@ msgstr "Отменена" #: code:addons/web_translate_dialog/static/src/xml/base.xml:7 #, python-format msgid "Field" -msgstr "" +msgstr "Поле" #. module: web_translate_dialog #. openerp-web diff --git a/web_translate_dialog/i18n/sr@latin.po b/web_translate_dialog/i18n/sr@latin.po new file mode 100644 index 00000000..c859023b --- /dev/null +++ b/web_translate_dialog/i18n/sr@latin.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/sv.po b/web_translate_dialog/i18n/sv.po new file mode 100644 index 00000000..e0e20127 --- /dev/null +++ b/web_translate_dialog/i18n/sv.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/zh_TW.po b/web_translate_dialog/i18n/zh_TW.po new file mode 100644 index 00000000..8f1c7e26 --- /dev/null +++ b/web_translate_dialog/i18n/zh_TW.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "刪除" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_tree_dynamic_colored_field/i18n/es.po b/web_tree_dynamic_colored_field/i18n/es.po new file mode 100644 index 00000000..e38b7c61 --- /dev/null +++ b/web_tree_dynamic_colored_field/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_tree_dynamic_colored_field +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-11-26 01:59+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_tree_dynamic_colored_field +#. openerp-web +#: code:addons/web_tree_dynamic_colored_field/static/src/xml/web_tree_dynamic_colored_field.xml:7 +#, python-format +msgid "columns.fct_colorize(record, column)" +msgstr "columns.fct_colorize(record, column)" diff --git a/web_widget_digitized_signature/i18n/ar.po b/web_widget_digitized_signature/i18n/ar.po new file mode 100644 index 00000000..b92c6f42 --- /dev/null +++ b/web_widget_digitized_signature/i18n/ar.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "الصورة" diff --git a/web_widget_digitized_signature/i18n/bg.po b/web_widget_digitized_signature/i18n/bg.po new file mode 100644 index 00000000..31094e92 --- /dev/null +++ b/web_widget_digitized_signature/i18n/bg.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Изображение" diff --git a/web_widget_digitized_signature/i18n/bs.po b/web_widget_digitized_signature/i18n/bs.po new file mode 100644 index 00000000..a03333ff --- /dev/null +++ b/web_widget_digitized_signature/i18n/bs.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Slika" diff --git a/web_widget_digitized_signature/i18n/cs.po b/web_widget_digitized_signature/i18n/cs.po new file mode 100644 index 00000000..cd75eafa --- /dev/null +++ b/web_widget_digitized_signature/i18n/cs.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Obrázek" diff --git a/web_widget_digitized_signature/i18n/da.po b/web_widget_digitized_signature/i18n/da.po new file mode 100644 index 00000000..53d7716b --- /dev/null +++ b/web_widget_digitized_signature/i18n/da.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Billede" diff --git a/web_widget_digitized_signature/i18n/en_GB.po b/web_widget_digitized_signature/i18n/en_GB.po new file mode 100644 index 00000000..326af1dc --- /dev/null +++ b/web_widget_digitized_signature/i18n/en_GB.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Image" diff --git a/web_widget_digitized_signature/i18n/es.po b/web_widget_digitized_signature/i18n/es.po new file mode 100644 index 00000000..f2e634a5 --- /dev/null +++ b/web_widget_digitized_signature/i18n/es.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-13 18:47+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "Borrar" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "No se puede mostrar la imagen seleccionada." + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/es_AR.po b/web_widget_digitized_signature/i18n/es_AR.po new file mode 100644 index 00000000..eaebff53 --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_AR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/es_CO.po b/web_widget_digitized_signature/i18n/es_CO.po new file mode 100644 index 00000000..656e073a --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_CO.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/es_CR.po b/web_widget_digitized_signature/i18n/es_CR.po new file mode 100644 index 00000000..cc9c9b21 --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_CR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/es_EC.po b/web_widget_digitized_signature/i18n/es_EC.po new file mode 100644 index 00000000..17802e9b --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_EC.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/es_MX.po b/web_widget_digitized_signature/i18n/es_MX.po new file mode 100644 index 00000000..e8d3800f --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_MX.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imágen" diff --git a/web_widget_digitized_signature/i18n/es_PE.po b/web_widget_digitized_signature/i18n/es_PE.po new file mode 100644 index 00000000..b3ef1505 --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_PE.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/es_VE.po b/web_widget_digitized_signature/i18n/es_VE.po new file mode 100644 index 00000000..3e9e771e --- /dev/null +++ b/web_widget_digitized_signature/i18n/es_VE.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Imagen" diff --git a/web_widget_digitized_signature/i18n/eu.po b/web_widget_digitized_signature/i18n/eu.po new file mode 100644 index 00000000..529ac38d --- /dev/null +++ b/web_widget_digitized_signature/i18n/eu.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Irudia" diff --git a/web_widget_digitized_signature/i18n/fa.po b/web_widget_digitized_signature/i18n/fa.po new file mode 100644 index 00000000..bc7c1fff --- /dev/null +++ b/web_widget_digitized_signature/i18n/fa.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "تصویر" diff --git a/web_widget_digitized_signature/i18n/he.po b/web_widget_digitized_signature/i18n/he.po new file mode 100644 index 00000000..388222e6 --- /dev/null +++ b/web_widget_digitized_signature/i18n/he.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "תמונה" diff --git a/web_widget_digitized_signature/i18n/hr.po b/web_widget_digitized_signature/i18n/hr.po new file mode 100644 index 00000000..5d47dd74 --- /dev/null +++ b/web_widget_digitized_signature/i18n/hr.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Slika" diff --git a/web_widget_digitized_signature/i18n/ja.po b/web_widget_digitized_signature/i18n/ja.po new file mode 100644 index 00000000..cd50b6ce --- /dev/null +++ b/web_widget_digitized_signature/i18n/ja.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "イメージ" diff --git a/web_widget_digitized_signature/i18n/lt.po b/web_widget_digitized_signature/i18n/lt.po new file mode 100644 index 00000000..4bcf4d4a --- /dev/null +++ b/web_widget_digitized_signature/i18n/lt.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Paveikslėlis" diff --git a/web_widget_digitized_signature/i18n/lv.po b/web_widget_digitized_signature/i18n/lv.po new file mode 100644 index 00000000..2e4a4cd4 --- /dev/null +++ b/web_widget_digitized_signature/i18n/lv.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Attēls" diff --git a/web_widget_digitized_signature/i18n/mk.po b/web_widget_digitized_signature/i18n/mk.po new file mode 100644 index 00000000..392002d7 --- /dev/null +++ b/web_widget_digitized_signature/i18n/mk.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Слика" diff --git a/web_widget_digitized_signature/i18n/mn.po b/web_widget_digitized_signature/i18n/mn.po new file mode 100644 index 00000000..0890f661 --- /dev/null +++ b/web_widget_digitized_signature/i18n/mn.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Зураг" diff --git a/web_widget_digitized_signature/i18n/nb.po b/web_widget_digitized_signature/i18n/nb.po new file mode 100644 index 00000000..d2402fbc --- /dev/null +++ b/web_widget_digitized_signature/i18n/nb.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Bilde" diff --git a/web_widget_digitized_signature/i18n/nl_BE.po b/web_widget_digitized_signature/i18n/nl_BE.po new file mode 100644 index 00000000..50818c61 --- /dev/null +++ b/web_widget_digitized_signature/i18n/nl_BE.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Afbeelding" diff --git a/web_widget_digitized_signature/i18n/pl.po b/web_widget_digitized_signature/i18n/pl.po new file mode 100644 index 00000000..45e3eeeb --- /dev/null +++ b/web_widget_digitized_signature/i18n/pl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Obraz" diff --git a/web_widget_digitized_signature/i18n/sk.po b/web_widget_digitized_signature/i18n/sk.po new file mode 100644 index 00000000..0f8ea73c --- /dev/null +++ b/web_widget_digitized_signature/i18n/sk.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Obrázok" diff --git a/web_widget_digitized_signature/i18n/sr@latin.po b/web_widget_digitized_signature/i18n/sr@latin.po new file mode 100644 index 00000000..30d37ed8 --- /dev/null +++ b/web_widget_digitized_signature/i18n/sr@latin.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Slika" diff --git a/web_widget_digitized_signature/i18n/sv.po b/web_widget_digitized_signature/i18n/sv.po new file mode 100644 index 00000000..688db164 --- /dev/null +++ b/web_widget_digitized_signature/i18n/sv.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Bild" diff --git a/web_widget_digitized_signature/i18n/th.po b/web_widget_digitized_signature/i18n/th.po new file mode 100644 index 00000000..dcb900c7 --- /dev/null +++ b/web_widget_digitized_signature/i18n/th.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "รูปภาพ" diff --git a/web_widget_digitized_signature/i18n/uk.po b/web_widget_digitized_signature/i18n/uk.po new file mode 100644 index 00000000..d01ab028 --- /dev/null +++ b/web_widget_digitized_signature/i18n/uk.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Зображення" diff --git a/web_widget_digitized_signature/i18n/vi.po b/web_widget_digitized_signature/i18n/vi.po new file mode 100644 index 00000000..c0800a3c --- /dev/null +++ b/web_widget_digitized_signature/i18n/vi.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Hình ảnh" diff --git a/web_widget_digitized_signature/i18n/zh_CN.po b/web_widget_digitized_signature/i18n/zh_CN.po new file mode 100644 index 00000000..bceb4632 --- /dev/null +++ b/web_widget_digitized_signature/i18n/zh_CN.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "图像" diff --git a/web_widget_digitized_signature/i18n/zh_TW.po b/web_widget_digitized_signature/i18n/zh_TW.po new file mode 100644 index 00000000..1b438436 --- /dev/null +++ b/web_widget_digitized_signature/i18n/zh_TW.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "圖片" diff --git a/web_widget_digitized_signature_user/i18n/es.po b/web_widget_digitized_signature_user/i18n/es.po index 70c6bf97..85c12a2e 100644 --- a/web_widget_digitized_signature_user/i18n/es.po +++ b/web_widget_digitized_signature_user/i18n/es.po @@ -3,13 +3,50 @@ # * web_widget_digitized_signature_user # # Translators: +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# Chen-Do LU , 2015 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# François Breysse , 2015 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Nicole , 2014 +# njeudy , 2015 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015-2016 +# Pope, 2014 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sofce Dimitrijeva , 2013 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:13+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"PO-Revision-Date: 2016-10-24 09:24+0000\n" +"Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +57,7 @@ msgstr "" #. module: web_widget_digitized_signature_user #: field:res.users,signature_image:0 msgid "Signature" -msgstr "" +msgstr "Firma" #. module: web_widget_digitized_signature_user #: model:ir.model,name:web_widget_digitized_signature_user.model_res_users diff --git a/web_widget_image_download/i18n/ar.po b/web_widget_image_download/i18n/ar.po new file mode 100644 index 00000000..94687e73 --- /dev/null +++ b/web_widget_image_download/i18n/ar.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "تحميل" diff --git a/web_widget_image_download/i18n/bg.po b/web_widget_image_download/i18n/bg.po new file mode 100644 index 00000000..28380e85 --- /dev/null +++ b/web_widget_image_download/i18n/bg.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Изтегляне" diff --git a/web_widget_image_download/i18n/bs.po b/web_widget_image_download/i18n/bs.po new file mode 100644 index 00000000..9d3f1895 --- /dev/null +++ b/web_widget_image_download/i18n/bs.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Preuzimanje" diff --git a/web_widget_image_download/i18n/cs.po b/web_widget_image_download/i18n/cs.po new file mode 100644 index 00000000..8e5e6cc0 --- /dev/null +++ b/web_widget_image_download/i18n/cs.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Stáhnout" diff --git a/web_widget_image_download/i18n/da.po b/web_widget_image_download/i18n/da.po new file mode 100644 index 00000000..9f5624ed --- /dev/null +++ b/web_widget_image_download/i18n/da.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Download" diff --git a/web_widget_image_download/i18n/en_GB.po b/web_widget_image_download/i18n/en_GB.po new file mode 100644 index 00000000..4453bfad --- /dev/null +++ b/web_widget_image_download/i18n/en_GB.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Download" diff --git a/web_widget_image_download/i18n/es.po b/web_widget_image_download/i18n/es.po new file mode 100644 index 00000000..1971216b --- /dev/null +++ b/web_widget_image_download/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_AR.po b/web_widget_image_download/i18n/es_AR.po new file mode 100644 index 00000000..d74a2368 --- /dev/null +++ b/web_widget_image_download/i18n/es_AR.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_CL.po b/web_widget_image_download/i18n/es_CL.po new file mode 100644 index 00000000..1a0f6d2e --- /dev/null +++ b/web_widget_image_download/i18n/es_CL.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_CO.po b/web_widget_image_download/i18n/es_CO.po new file mode 100644 index 00000000..711e7beb --- /dev/null +++ b/web_widget_image_download/i18n/es_CO.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_CR.po b/web_widget_image_download/i18n/es_CR.po new file mode 100644 index 00000000..cdd2ebbe --- /dev/null +++ b/web_widget_image_download/i18n/es_CR.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_DO.po b/web_widget_image_download/i18n/es_DO.po new file mode 100644 index 00000000..730f53ef --- /dev/null +++ b/web_widget_image_download/i18n/es_DO.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_EC.po b/web_widget_image_download/i18n/es_EC.po new file mode 100644 index 00000000..8dba4eeb --- /dev/null +++ b/web_widget_image_download/i18n/es_EC.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_MX.po b/web_widget_image_download/i18n/es_MX.po new file mode 100644 index 00000000..c1812774 --- /dev/null +++ b/web_widget_image_download/i18n/es_MX.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/es_PE.po b/web_widget_image_download/i18n/es_PE.po new file mode 100644 index 00000000..4f7c254e --- /dev/null +++ b/web_widget_image_download/i18n/es_PE.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Descargar" diff --git a/web_widget_image_download/i18n/et.po b/web_widget_image_download/i18n/et.po new file mode 100644 index 00000000..b3342cba --- /dev/null +++ b/web_widget_image_download/i18n/et.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Lae alla" diff --git a/web_widget_image_download/i18n/fa.po b/web_widget_image_download/i18n/fa.po new file mode 100644 index 00000000..fdbba3d0 --- /dev/null +++ b/web_widget_image_download/i18n/fa.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "دانلود" diff --git a/web_widget_image_download/i18n/fi.po b/web_widget_image_download/i18n/fi.po new file mode 100644 index 00000000..7115565e --- /dev/null +++ b/web_widget_image_download/i18n/fi.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Lataa" diff --git a/web_widget_image_download/i18n/he.po b/web_widget_image_download/i18n/he.po new file mode 100644 index 00000000..0ff744c6 --- /dev/null +++ b/web_widget_image_download/i18n/he.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "הורדה" diff --git a/web_widget_image_download/i18n/hr.po b/web_widget_image_download/i18n/hr.po new file mode 100644 index 00000000..63087b67 --- /dev/null +++ b/web_widget_image_download/i18n/hr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Preuzimanje" diff --git a/web_widget_image_download/i18n/hu.po b/web_widget_image_download/i18n/hu.po new file mode 100644 index 00000000..52604162 --- /dev/null +++ b/web_widget_image_download/i18n/hu.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Letöltés" diff --git a/web_widget_image_download/i18n/id.po b/web_widget_image_download/i18n/id.po new file mode 100644 index 00000000..8b5b470e --- /dev/null +++ b/web_widget_image_download/i18n/id.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Unduh" diff --git a/web_widget_image_download/i18n/ja.po b/web_widget_image_download/i18n/ja.po new file mode 100644 index 00000000..6e1cff72 --- /dev/null +++ b/web_widget_image_download/i18n/ja.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "ダウンロード" diff --git a/web_widget_image_download/i18n/ko.po b/web_widget_image_download/i18n/ko.po new file mode 100644 index 00000000..a03b458a --- /dev/null +++ b/web_widget_image_download/i18n/ko.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "다운로드" diff --git a/web_widget_image_download/i18n/lt.po b/web_widget_image_download/i18n/lt.po new file mode 100644 index 00000000..e9affd6e --- /dev/null +++ b/web_widget_image_download/i18n/lt.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Atsisiųsti" diff --git a/web_widget_image_download/i18n/lv.po b/web_widget_image_download/i18n/lv.po new file mode 100644 index 00000000..93ce99e3 --- /dev/null +++ b/web_widget_image_download/i18n/lv.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Lejupielādēt" diff --git a/web_widget_image_download/i18n/mk.po b/web_widget_image_download/i18n/mk.po new file mode 100644 index 00000000..2488d2ca --- /dev/null +++ b/web_widget_image_download/i18n/mk.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Преземи" diff --git a/web_widget_image_download/i18n/mn.po b/web_widget_image_download/i18n/mn.po new file mode 100644 index 00000000..45a6420f --- /dev/null +++ b/web_widget_image_download/i18n/mn.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Татах" diff --git a/web_widget_image_download/i18n/nb.po b/web_widget_image_download/i18n/nb.po new file mode 100644 index 00000000..0646e22e --- /dev/null +++ b/web_widget_image_download/i18n/nb.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Last ned" diff --git a/web_widget_image_download/i18n/nl_BE.po b/web_widget_image_download/i18n/nl_BE.po new file mode 100644 index 00000000..275f6e3a --- /dev/null +++ b/web_widget_image_download/i18n/nl_BE.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Downloaden" diff --git a/web_widget_image_download/i18n/pl.po b/web_widget_image_download/i18n/pl.po new file mode 100644 index 00000000..a868a924 --- /dev/null +++ b/web_widget_image_download/i18n/pl.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Pobierz" diff --git a/web_widget_image_download/i18n/sk.po b/web_widget_image_download/i18n/sk.po new file mode 100644 index 00000000..ef35cd16 --- /dev/null +++ b/web_widget_image_download/i18n/sk.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Stiahnuť" diff --git a/web_widget_image_download/i18n/sr@latin.po b/web_widget_image_download/i18n/sr@latin.po new file mode 100644 index 00000000..a7718631 --- /dev/null +++ b/web_widget_image_download/i18n/sr@latin.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Preuzmi" diff --git a/web_widget_image_download/i18n/sv.po b/web_widget_image_download/i18n/sv.po new file mode 100644 index 00000000..067b66ef --- /dev/null +++ b/web_widget_image_download/i18n/sv.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Hämta" diff --git a/web_widget_image_download/i18n/th.po b/web_widget_image_download/i18n/th.po new file mode 100644 index 00000000..2cbd46a1 --- /dev/null +++ b/web_widget_image_download/i18n/th.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "ดาวน์โหลด" diff --git a/web_widget_image_download/i18n/uk.po b/web_widget_image_download/i18n/uk.po new file mode 100644 index 00000000..cdc97c8b --- /dev/null +++ b/web_widget_image_download/i18n/uk.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Download" diff --git a/web_widget_image_download/i18n/vi.po b/web_widget_image_download/i18n/vi.po new file mode 100644 index 00000000..b403074e --- /dev/null +++ b/web_widget_image_download/i18n/vi.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "Tải xuống" diff --git a/web_widget_image_download/i18n/zh_CN.po b/web_widget_image_download/i18n/zh_CN.po new file mode 100644 index 00000000..ccae0947 --- /dev/null +++ b/web_widget_image_download/i18n/zh_CN.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "下载" diff --git a/web_widget_image_download/i18n/zh_TW.po b/web_widget_image_download/i18n/zh_TW.po new file mode 100644 index 00000000..0e2728d3 --- /dev/null +++ b/web_widget_image_download/i18n/zh_TW.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "下載" diff --git a/web_widget_mail_send_odoo/i18n/ca.po b/web_widget_mail_send_odoo/i18n/ca.po new file mode 100644 index 00000000..81924d01 --- /dev/null +++ b/web_widget_mail_send_odoo/i18n/ca.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_mail_send_odoo +# +# Translators: +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-10-28 19:58+0000\n" +"Last-Translator: Carles Antoli \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 +#, python-format +msgid "Can't send email to invalid e-mail address" +msgstr "No es pot enviar correu electrònic a una adreça de correu electrònic que no és vàlida" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 +#, python-format +msgid "E-mail Error" +msgstr "Error de correu electrònic" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:93 +#, python-format +msgid "Please complete partner's information." +msgstr "Si us plau completeu la informació de la empresa." diff --git a/web_widget_mail_send_odoo/i18n/es.po b/web_widget_mail_send_odoo/i18n/es.po new file mode 100644 index 00000000..3b124465 --- /dev/null +++ b/web_widget_mail_send_odoo/i18n/es.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_mail_send_odoo +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-10-13 18:48+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 +#, python-format +msgid "Can't send email to invalid e-mail address" +msgstr "No se puede enviar un correo electrónico a una dirección no válida" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 +#, python-format +msgid "E-mail Error" +msgstr "Error de correo electrónico" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:93 +#, python-format +msgid "Please complete partner's information." +msgstr "Complete por favor la información de la empresa." diff --git a/web_widget_one2many_tags/i18n/es.po b/web_widget_one2many_tags/i18n/es.po new file mode 100644 index 00000000..22e24e5f --- /dev/null +++ b/web_widget_one2many_tags/i18n/es.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_one2many_tags +# +# Translators: +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-10-13 18:49+0000\n" +"Last-Translator: Pedro M. Baeza \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_one2many_tags +#. openerp-web +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 +#, python-format +msgid "New record" +msgstr "Nuevo registro" diff --git a/web_widget_pattern/i18n/sl.po b/web_widget_pattern/i18n/sl.po new file mode 100644 index 00000000..af5b58e7 --- /dev/null +++ b/web_widget_pattern/i18n/sl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_pattern +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_widget_pattern +#: view:res.partner:web_widget_pattern.view_partner_form +msgid "{'pattern': '[\\S]+@[\\S]+'}" +msgstr "{'pattern': '[\\S]+@[\\S]+'}" diff --git a/web_widget_x2many_2d_matrix/i18n/bg.po b/web_widget_x2many_2d_matrix/i18n/bg.po new file mode 100644 index 00000000..5dfaf644 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/bg.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Общо" diff --git a/web_widget_x2many_2d_matrix/i18n/bs.po b/web_widget_x2many_2d_matrix/i18n/bs.po new file mode 100644 index 00000000..2bc3b468 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/bs.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Ukupno" diff --git a/web_widget_x2many_2d_matrix/i18n/cs.po b/web_widget_x2many_2d_matrix/i18n/cs.po new file mode 100644 index 00000000..3cd21bda --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/cs.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Celkem" diff --git a/web_widget_x2many_2d_matrix/i18n/da.po b/web_widget_x2many_2d_matrix/i18n/da.po new file mode 100644 index 00000000..083fd9e8 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/da.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/en_GB.po b/web_widget_x2many_2d_matrix/i18n/en_GB.po new file mode 100644 index 00000000..ae7c17bb --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/en_GB.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_AR.po b/web_widget_x2many_2d_matrix/i18n/es_AR.po new file mode 100644 index 00000000..f2beba7d --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_AR.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_CO.po b/web_widget_x2many_2d_matrix/i18n/es_CO.po new file mode 100644 index 00000000..4db0a64a --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_CO.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_CR.po b/web_widget_x2many_2d_matrix/i18n/es_CR.po new file mode 100644 index 00000000..2178e65b --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_CR.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_EC.po b/web_widget_x2many_2d_matrix/i18n/es_EC.po new file mode 100644 index 00000000..1f77a214 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_EC.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_MX.po b/web_widget_x2many_2d_matrix/i18n/es_MX.po new file mode 100644 index 00000000..a93a8385 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_MX.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_PE.po b/web_widget_x2many_2d_matrix/i18n/es_PE.po new file mode 100644 index 00000000..099d1744 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_PE.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_VE.po b/web_widget_x2many_2d_matrix/i18n/es_VE.po new file mode 100644 index 00000000..71964a63 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_VE.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/eu.po b/web_widget_x2many_2d_matrix/i18n/eu.po new file mode 100644 index 00000000..4fd12127 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/eu.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/fa.po b/web_widget_x2many_2d_matrix/i18n/fa.po new file mode 100644 index 00000000..4671aba8 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/fa.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "جمع کل" diff --git a/web_widget_x2many_2d_matrix/i18n/he.po b/web_widget_x2many_2d_matrix/i18n/he.po new file mode 100644 index 00000000..61038f5d --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/he.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "סה\"כ" diff --git a/web_widget_x2many_2d_matrix/i18n/ja.po b/web_widget_x2many_2d_matrix/i18n/ja.po new file mode 100644 index 00000000..17d9cf6c --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/ja.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "合計" diff --git a/web_widget_x2many_2d_matrix/i18n/lt.po b/web_widget_x2many_2d_matrix/i18n/lt.po new file mode 100644 index 00000000..da87efe9 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/lt.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Viso" diff --git a/web_widget_x2many_2d_matrix/i18n/lv.po b/web_widget_x2many_2d_matrix/i18n/lv.po new file mode 100644 index 00000000..f43ee830 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/lv.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Summa" diff --git a/web_widget_x2many_2d_matrix/i18n/mk.po b/web_widget_x2many_2d_matrix/i18n/mk.po new file mode 100644 index 00000000..4c547ac9 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/mk.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Вкупно" diff --git a/web_widget_x2many_2d_matrix/i18n/mn.po b/web_widget_x2many_2d_matrix/i18n/mn.po new file mode 100644 index 00000000..a4e08bef --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/mn.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Дүн" diff --git a/web_widget_x2many_2d_matrix/i18n/nb.po b/web_widget_x2many_2d_matrix/i18n/nb.po new file mode 100644 index 00000000..ec3cbcb2 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/nb.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/nl_BE.po b/web_widget_x2many_2d_matrix/i18n/nl_BE.po new file mode 100644 index 00000000..62e4beb9 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/nl_BE.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Totaal" diff --git a/web_widget_x2many_2d_matrix/i18n/pl.po b/web_widget_x2many_2d_matrix/i18n/pl.po new file mode 100644 index 00000000..d5ca030c --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/pl.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Suma" diff --git a/web_widget_x2many_2d_matrix/i18n/sk.po b/web_widget_x2many_2d_matrix/i18n/sk.po new file mode 100644 index 00000000..f992b6c5 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/sk.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Celkom" diff --git a/web_widget_x2many_2d_matrix/i18n/sr@latin.po b/web_widget_x2many_2d_matrix/i18n/sr@latin.po new file mode 100644 index 00000000..71c8f339 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/sr@latin.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Ukupno" diff --git a/web_widget_x2many_2d_matrix/i18n/sv.po b/web_widget_x2many_2d_matrix/i18n/sv.po new file mode 100644 index 00000000..7426cce5 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/sv.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Totalt" diff --git a/web_widget_x2many_2d_matrix/i18n/th.po b/web_widget_x2many_2d_matrix/i18n/th.po new file mode 100644 index 00000000..81095856 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/th.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "รวม" diff --git a/web_widget_x2many_2d_matrix/i18n/uk.po b/web_widget_x2many_2d_matrix/i18n/uk.po new file mode 100644 index 00000000..a62fa0d5 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/uk.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Всього" diff --git a/web_widget_x2many_2d_matrix/i18n/vi.po b/web_widget_x2many_2d_matrix/i18n/vi.po new file mode 100644 index 00000000..b59f6fce --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/vi.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Tổng" diff --git a/web_widget_x2many_2d_matrix/i18n/zh_CN.po b/web_widget_x2many_2d_matrix/i18n/zh_CN.po new file mode 100644 index 00000000..e1b11708 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/zh_CN.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "总计" diff --git a/web_widget_x2many_2d_matrix/i18n/zh_TW.po b/web_widget_x2many_2d_matrix/i18n/zh_TW.po new file mode 100644 index 00000000..79c2f61a --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/zh_TW.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "總計" diff --git a/web_x2m_filter/i18n/sl.po b/web_x2m_filter/i18n/sl.po new file mode 100644 index 00000000..426ba0b0 --- /dev/null +++ b/web_x2m_filter/i18n/sl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2m_filter +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 02:00+0000\n" +"PO-Revision-Date: 2016-11-26 02:00+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_x2m_filter +#: view:res.groups:web_x2m_filter.view_groups_form +msgid "" +"{'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', " +"3)], 'default': True}]}" +msgstr "" +"{'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', " +"3)], 'default': True}]}" From 37604e686cd266ed41ca21213bd53e78474c3e56 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 3 Dec 2016 01:19:21 -0500 Subject: [PATCH 067/103] OCA Transbot updated translations from Transifex --- help_online/i18n/fr_CH.po | 8 ++--- web_ckeditor4/i18n/fr_CH.po | 6 ++-- web_dashboard_tile/i18n/fr_CH.po | 10 +++--- web_dashboard_tile/i18n/nb.po | 10 +++--- web_easy_switch_company/i18n/fr_CH.po | 33 +++++++++++++++++++ web_shortcuts/i18n/fr_CH.po | 6 ++-- .../i18n/fr_CH.po | 28 ++++++++++++++++ 7 files changed, 81 insertions(+), 20 deletions(-) create mode 100644 web_easy_switch_company/i18n/fr_CH.po create mode 100644 web_widget_digitized_signature_user/i18n/fr_CH.po diff --git a/help_online/i18n/fr_CH.po b/help_online/i18n/fr_CH.po index b2271485..ce5fce46 100644 --- a/help_online/i18n/fr_CH.po +++ b/help_online/i18n/fr_CH.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"POT-Creation-Date: 2016-11-29 19:38+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Créé le" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -141,7 +141,7 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 diff --git a/web_ckeditor4/i18n/fr_CH.po b/web_ckeditor4/i18n/fr_CH.po index 1d1edff5..46f3ce52 100644 --- a/web_ckeditor4/i18n/fr_CH.po +++ b/web_ckeditor4/i18n/fr_CH.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"POT-Creation-Date: 2016-11-29 19:38+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_dashboard_tile/i18n/fr_CH.po b/web_dashboard_tile/i18n/fr_CH.po index 13897a2b..ba5114be 100644 --- a/web_dashboard_tile/i18n/fr_CH.po +++ b/web_dashboard_tile/i18n/fr_CH.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2016-11-29 19:38+0000\n" +"PO-Revision-Date: 2016-12-01 10:40+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Actif" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 @@ -88,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -161,7 +161,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 diff --git a/web_dashboard_tile/i18n/nb.po b/web_dashboard_tile/i18n/nb.po index 0944242d..81ecdeda 100644 --- a/web_dashboard_tile/i18n/nb.po +++ b/web_dashboard_tile/i18n/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:19+0000\n" +"POT-Creation-Date: 2016-11-29 19:38+0000\n" +"PO-Revision-Date: 2016-12-02 13:53+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Aktiv" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 @@ -182,7 +182,7 @@ msgstr "" #: selection:tile.tile,primary_function:0 #: selection:tile.tile,secondary_function:0 msgid "Maximum" -msgstr "" +msgstr "Maksimum" #. module: web_dashboard_tile #: code:addons/web_dashboard_tile/models/tile_tile.py:39 @@ -206,7 +206,7 @@ msgstr "" #: selection:tile.tile,primary_function:0 #: selection:tile.tile,secondary_function:0 msgid "Minimum" -msgstr "" +msgstr "Minimum" #. module: web_dashboard_tile #: code:addons/web_dashboard_tile/models/tile_tile.py:35 diff --git a/web_easy_switch_company/i18n/fr_CH.po b/web_easy_switch_company/i18n/fr_CH.po new file mode 100644 index 00000000..fda7f372 --- /dev/null +++ b/web_easy_switch_company/i18n/fr_CH.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 19:38+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "Utilisateurs" diff --git a/web_shortcuts/i18n/fr_CH.po b/web_shortcuts/i18n/fr_CH.po index 695225f2..5806ecb9 100644 --- a/web_shortcuts/i18n/fr_CH.po +++ b/web_shortcuts/i18n/fr_CH.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"POT-Creation-Date: 2016-11-29 19:39+0000\n" "PO-Revision-Date: 2015-11-07 11:20+0000\n" "Last-Translator: <>\n" "Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" @@ -37,7 +37,7 @@ msgstr "Créé le" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #. module: web_shortcuts #: field:web.shortcut,id:0 @@ -47,7 +47,7 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 diff --git a/web_widget_digitized_signature_user/i18n/fr_CH.po b/web_widget_digitized_signature_user/i18n/fr_CH.po new file mode 100644 index 00000000..4b7ccd87 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/fr_CH.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 19:39+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Utilisateurs" From 4200022fff6153fece97e4b851e5176a5fc60747 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 10 Dec 2016 01:22:51 -0500 Subject: [PATCH 068/103] OCA Transbot updated translations from Transifex --- web_dashboard_tile/i18n/ar.po | 137 +++++-------------------- web_dashboard_tile/i18n/de.po | 137 +++++-------------------- web_dashboard_tile/i18n/es.po | 139 +++++--------------------- web_dashboard_tile/i18n/fi.po | 137 +++++-------------------- web_dashboard_tile/i18n/fr.po | 137 +++++-------------------- web_dashboard_tile/i18n/gl.po | 135 +++++-------------------- web_dashboard_tile/i18n/hr.po | 135 +++++-------------------- web_dashboard_tile/i18n/it.po | 137 +++++-------------------- web_dashboard_tile/i18n/nb.po | 135 +++++-------------------- web_dashboard_tile/i18n/nl.po | 135 +++++-------------------- web_dashboard_tile/i18n/pt_BR.po | 137 +++++-------------------- web_dashboard_tile/i18n/ru.po | 135 +++++-------------------- web_dashboard_tile/i18n/sl.po | 139 +++++--------------------- web_dashboard_tile/i18n/tr.po | 137 +++++-------------------- web_easy_switch_company/i18n/es_MX.po | 33 ++++++ web_favicon/i18n/es_MX.po | 63 ++++++++++++ web_timeline/i18n/ar.po | 104 +++++++++++++++++++ web_timeline/i18n/bg.po | 103 +++++++++++++++++++ web_timeline/i18n/bs.po | 103 +++++++++++++++++++ web_timeline/i18n/ca.po | 103 +++++++++++++++++++ web_timeline/i18n/cs.po | 103 +++++++++++++++++++ web_timeline/i18n/da.po | 103 +++++++++++++++++++ web_timeline/i18n/de.po | 105 +++++++++++++++++++ web_timeline/i18n/el_GR.po | 103 +++++++++++++++++++ web_timeline/i18n/en_GB.po | 103 +++++++++++++++++++ web_timeline/i18n/es.po | 106 ++++++++++++++++++++ web_timeline/i18n/es_AR.po | 103 +++++++++++++++++++ web_timeline/i18n/es_CL.po | 103 +++++++++++++++++++ web_timeline/i18n/es_CO.po | 103 +++++++++++++++++++ web_timeline/i18n/es_CR.po | 103 +++++++++++++++++++ web_timeline/i18n/es_DO.po | 103 +++++++++++++++++++ web_timeline/i18n/es_EC.po | 103 +++++++++++++++++++ web_timeline/i18n/es_MX.po | 103 +++++++++++++++++++ web_timeline/i18n/es_PE.po | 103 +++++++++++++++++++ web_timeline/i18n/es_PY.po | 103 +++++++++++++++++++ web_timeline/i18n/es_VE.po | 103 +++++++++++++++++++ web_timeline/i18n/et.po | 103 +++++++++++++++++++ web_timeline/i18n/eu.po | 103 +++++++++++++++++++ web_timeline/i18n/fa.po | 103 +++++++++++++++++++ web_timeline/i18n/fi.po | 104 +++++++++++++++++++ web_timeline/i18n/fr.po | 106 ++++++++++++++++++++ web_timeline/i18n/fr_CA.po | 103 +++++++++++++++++++ web_timeline/i18n/fr_CH.po | 103 +++++++++++++++++++ web_timeline/i18n/gl.po | 104 +++++++++++++++++++ web_timeline/i18n/he.po | 103 +++++++++++++++++++ web_timeline/i18n/hr.po | 104 +++++++++++++++++++ web_timeline/i18n/hr_HR.po | 103 +++++++++++++++++++ web_timeline/i18n/hu.po | 103 +++++++++++++++++++ web_timeline/i18n/id.po | 103 +++++++++++++++++++ web_timeline/i18n/it.po | 104 +++++++++++++++++++ web_timeline/i18n/ja.po | 103 +++++++++++++++++++ web_timeline/i18n/ko.po | 103 +++++++++++++++++++ web_timeline/i18n/lt.po | 103 +++++++++++++++++++ web_timeline/i18n/lv.po | 103 +++++++++++++++++++ web_timeline/i18n/mk.po | 103 +++++++++++++++++++ web_timeline/i18n/mn.po | 103 +++++++++++++++++++ web_timeline/i18n/nb.po | 103 +++++++++++++++++++ web_timeline/i18n/nb_NO.po | 103 +++++++++++++++++++ web_timeline/i18n/nl.po | 104 +++++++++++++++++++ web_timeline/i18n/nl_BE.po | 103 +++++++++++++++++++ web_timeline/i18n/pl.po | 103 +++++++++++++++++++ web_timeline/i18n/pt.po | 104 +++++++++++++++++++ web_timeline/i18n/pt_BR.po | 107 ++++++++++++++++++++ web_timeline/i18n/pt_PT.po | 103 +++++++++++++++++++ web_timeline/i18n/ro.po | 103 +++++++++++++++++++ web_timeline/i18n/ru.po | 103 +++++++++++++++++++ web_timeline/i18n/sk.po | 103 +++++++++++++++++++ web_timeline/i18n/sl.po | 104 +++++++++++++++++++ web_timeline/i18n/sr.po | 103 +++++++++++++++++++ web_timeline/i18n/sr@latin.po | 103 +++++++++++++++++++ web_timeline/i18n/sv.po | 103 +++++++++++++++++++ web_timeline/i18n/th.po | 103 +++++++++++++++++++ web_timeline/i18n/tr.po | 104 +++++++++++++++++++ web_timeline/i18n/uk.po | 103 +++++++++++++++++++ web_timeline/i18n/vi.po | 103 +++++++++++++++++++ web_timeline/i18n/zh_CN.po | 103 +++++++++++++++++++ web_timeline/i18n/zh_TW.po | 103 +++++++++++++++++++ 77 files changed, 6733 insertions(+), 1579 deletions(-) create mode 100644 web_easy_switch_company/i18n/es_MX.po create mode 100644 web_favicon/i18n/es_MX.po create mode 100644 web_timeline/i18n/ar.po create mode 100644 web_timeline/i18n/bg.po create mode 100644 web_timeline/i18n/bs.po create mode 100644 web_timeline/i18n/ca.po create mode 100644 web_timeline/i18n/cs.po create mode 100644 web_timeline/i18n/da.po create mode 100644 web_timeline/i18n/de.po create mode 100644 web_timeline/i18n/el_GR.po create mode 100644 web_timeline/i18n/en_GB.po create mode 100644 web_timeline/i18n/es.po create mode 100644 web_timeline/i18n/es_AR.po create mode 100644 web_timeline/i18n/es_CL.po create mode 100644 web_timeline/i18n/es_CO.po create mode 100644 web_timeline/i18n/es_CR.po create mode 100644 web_timeline/i18n/es_DO.po create mode 100644 web_timeline/i18n/es_EC.po create mode 100644 web_timeline/i18n/es_MX.po create mode 100644 web_timeline/i18n/es_PE.po create mode 100644 web_timeline/i18n/es_PY.po create mode 100644 web_timeline/i18n/es_VE.po create mode 100644 web_timeline/i18n/et.po create mode 100644 web_timeline/i18n/eu.po create mode 100644 web_timeline/i18n/fa.po create mode 100644 web_timeline/i18n/fi.po create mode 100644 web_timeline/i18n/fr.po create mode 100644 web_timeline/i18n/fr_CA.po create mode 100644 web_timeline/i18n/fr_CH.po create mode 100644 web_timeline/i18n/gl.po create mode 100644 web_timeline/i18n/he.po create mode 100644 web_timeline/i18n/hr.po create mode 100644 web_timeline/i18n/hr_HR.po create mode 100644 web_timeline/i18n/hu.po create mode 100644 web_timeline/i18n/id.po create mode 100644 web_timeline/i18n/it.po create mode 100644 web_timeline/i18n/ja.po create mode 100644 web_timeline/i18n/ko.po create mode 100644 web_timeline/i18n/lt.po create mode 100644 web_timeline/i18n/lv.po create mode 100644 web_timeline/i18n/mk.po create mode 100644 web_timeline/i18n/mn.po create mode 100644 web_timeline/i18n/nb.po create mode 100644 web_timeline/i18n/nb_NO.po create mode 100644 web_timeline/i18n/nl.po create mode 100644 web_timeline/i18n/nl_BE.po create mode 100644 web_timeline/i18n/pl.po create mode 100644 web_timeline/i18n/pt.po create mode 100644 web_timeline/i18n/pt_BR.po create mode 100644 web_timeline/i18n/pt_PT.po create mode 100644 web_timeline/i18n/ro.po create mode 100644 web_timeline/i18n/ru.po create mode 100644 web_timeline/i18n/sk.po create mode 100644 web_timeline/i18n/sl.po create mode 100644 web_timeline/i18n/sr.po create mode 100644 web_timeline/i18n/sr@latin.po create mode 100644 web_timeline/i18n/sv.po create mode 100644 web_timeline/i18n/th.po create mode 100644 web_timeline/i18n/tr.po create mode 100644 web_timeline/i18n/uk.po create mode 100644 web_timeline/i18n/vi.po create mode 100644 web_timeline/i18n/zh_CN.po create mode 100644 web_timeline/i18n/zh_TW.po diff --git a/web_dashboard_tile/i18n/ar.po b/web_dashboard_tile/i18n/ar.po index efdd77dc..22e6abda 100644 --- a/web_dashboard_tile/i18n/ar.po +++ b/web_dashboard_tile/i18n/ar.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:19+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" @@ -42,8 +42,7 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "المعدل" @@ -53,8 +52,12 @@ msgid "Background color" msgstr "لون الخلفية" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -83,7 +86,6 @@ msgid "Dashboard" msgstr "لوحة المعلومات" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -117,12 +119,7 @@ msgid "Error" msgstr "الخطأ" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "الحقل" @@ -139,23 +136,12 @@ msgid "Font color" msgstr "لون الخط" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "الوظيفة" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -164,14 +150,6 @@ msgstr "" msgid "ID" msgstr "المعرف" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -188,47 +166,20 @@ msgid "Last Updated on" msgstr "آخر تحديث في" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "الحد الاعلى" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "القيمة العليا الى '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "متوسط" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "القيمة المتوسطة الى '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "الحد الادنى" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "القيمة الادنى الى '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -240,48 +191,20 @@ msgid "Name" msgstr "الاسم" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "معلومات الحقل الاختياري" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -297,8 +220,7 @@ msgid "Success" msgstr "نجاح" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "المجموع" @@ -322,13 +244,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "القيمة الاجمالية الى '%s'" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -337,8 +253,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "المستخدم" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "" diff --git a/web_dashboard_tile/i18n/de.po b/web_dashboard_tile/i18n/de.po index 99314e48..b8ff1483 100644 --- a/web_dashboard_tile/i18n/de.po +++ b/web_dashboard_tile/i18n/de.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" @@ -40,8 +40,7 @@ msgid "Active" msgstr "Aktiv" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Durchschnitt" @@ -51,8 +50,12 @@ msgid "Background color" msgstr "Hintergrundfarbe" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -81,7 +84,6 @@ msgid "Dashboard" msgstr "Pinwand" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Pinwand-Kachel" @@ -115,12 +117,7 @@ msgid "Error" msgstr "Fehler" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Feld" @@ -137,23 +134,12 @@ msgid "Font color" msgstr "Schriftfarbe" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Funktion" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -162,14 +148,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -186,47 +164,20 @@ msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Maximum" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Maximalwert von '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "Median" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "Medianwert von '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Minimalwert von '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -238,48 +189,20 @@ msgid "Name" msgstr "Bezeichnung" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Optionale Feldinformation" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -295,8 +218,7 @@ msgid "Success" msgstr "Erfolg" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Summe" @@ -320,13 +242,7 @@ msgid "Tile:" msgstr "Kachel:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "Gesamtwert von '%s'" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -335,8 +251,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Benutzer" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Wert" diff --git a/web_dashboard_tile/i18n/es.po b/web_dashboard_tile/i18n/es.po index 10285a30..9a24fbe5 100644 --- a/web_dashboard_tile/i18n/es.po +++ b/web_dashboard_tile/i18n/es.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-08 11:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -45,8 +45,7 @@ msgid "Active" msgstr "Activo" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Promedio" @@ -56,8 +55,12 @@ msgid "Background color" msgstr "Color de fondo" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "Valor calculado" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "Cuenta" @@ -86,7 +89,6 @@ msgid "Dashboard" msgstr "Tablero" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Pieza del tablero" @@ -120,12 +122,7 @@ msgid "Error" msgstr "Error" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Campo" @@ -142,23 +139,12 @@ msgid "Font color" msgstr "Color de texto" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "Formato" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Función" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Grupos" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "Ayudante" @@ -167,14 +153,6 @@ msgstr "Ayudante" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -191,47 +169,20 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Máximo" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valor máximo de \"%s\"" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "Mediana" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "Valor mediano de \"%s\"" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Mínimo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valor mínimo de \"%s\"" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -243,49 +194,21 @@ msgid "Name" msgstr "Nombre" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Información opcional" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "Seleccione por favor un campo del modelo seleccionado." #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" -msgstr "" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "Establezca ambos: 'Campo' y 'Función'" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 @@ -300,8 +223,7 @@ msgid "Success" msgstr "Éxito" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Suma" @@ -325,13 +247,7 @@ msgid "Tile:" msgstr "Pieza:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "Valor total de \"%s\"" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "Características no implementada: búsqueda en el campo activo deshabilitada." @@ -340,8 +256,3 @@ msgstr "Características no implementada: búsqueda en el campo activo deshabili #: field:tile.tile,user_id:0 msgid "User" msgstr "Usuario" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Valor" diff --git a/web_dashboard_tile/i18n/fi.po b/web_dashboard_tile/i18n/fi.po index 425c39ea..71e43955 100644 --- a/web_dashboard_tile/i18n/fi.po +++ b/web_dashboard_tile/i18n/fi.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" @@ -40,8 +40,7 @@ msgid "Active" msgstr "Aktiivinen" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Keskiarvo" @@ -51,8 +50,12 @@ msgid "Background color" msgstr "Taustaväri" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "Laskettu arvo" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "Määrä" @@ -81,7 +84,6 @@ msgid "Dashboard" msgstr "Työpöytä" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Työpöydän pala" @@ -115,12 +117,7 @@ msgid "Error" msgstr "Virhe" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Kenttä" @@ -137,23 +134,12 @@ msgid "Font color" msgstr "Fontin väri" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Toiminto" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "Avustin" @@ -162,14 +148,6 @@ msgstr "Avustin" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -186,47 +164,20 @@ msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Maksimi" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "'%s':n maksimiarvo" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "Mediaani" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "'%s':n mediaaniarvo" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimi" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "'%s':n minimiarvo" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -238,48 +189,20 @@ msgid "Name" msgstr "Nimi" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Valinnaiset kentän tiedot" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -295,8 +218,7 @@ msgid "Success" msgstr "Onnistui" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Summa" @@ -320,13 +242,7 @@ msgid "Tile:" msgstr "Pala:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "'%s':n kokonaisarvo" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -335,8 +251,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Käyttäjä" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "" diff --git a/web_dashboard_tile/i18n/fr.po b/web_dashboard_tile/i18n/fr.po index ae1242f7..d99a361c 100644 --- a/web_dashboard_tile/i18n/fr.po +++ b/web_dashboard_tile/i18n/fr.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-09 17:18+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -43,8 +43,7 @@ msgid "Active" msgstr "Actif" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Moyenne" @@ -54,8 +53,12 @@ msgid "Background color" msgstr "Couleur de fond" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "Valeur calculée" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "Compter" @@ -84,7 +87,6 @@ msgid "Dashboard" msgstr "Tableau de bord" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Indicateur de tableau de bord" @@ -118,12 +120,7 @@ msgid "Error" msgstr "Erreur" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Champ" @@ -140,23 +137,12 @@ msgid "Font color" msgstr "Couleur de la police" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "Format" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Fonction" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Groupes" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "Assistant" @@ -165,14 +151,6 @@ msgstr "Assistant" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -189,47 +167,20 @@ msgid "Last Updated on" msgstr "Mis à jour le" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Maximum" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valeur maximale du champ '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "Médiane" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "Valeur médian du champ '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valeur minimale du champ '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -241,48 +192,20 @@ msgid "Name" msgstr "Nom" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Information du champ optionnel" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -298,8 +221,7 @@ msgid "Success" msgstr "Succès" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Somme" @@ -323,13 +245,7 @@ msgid "Tile:" msgstr "Indicateur :" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "Somme du champ '%s'" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -338,8 +254,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Utilisateur" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Valeur" diff --git a/web_dashboard_tile/i18n/gl.po b/web_dashboard_tile/i18n/gl.po index a7f828eb..6a4024b0 100644 --- a/web_dashboard_tile/i18n/gl.po +++ b/web_dashboard_tile/i18n/gl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,7 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "" @@ -39,8 +38,12 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -69,7 +72,6 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -103,12 +105,7 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "" @@ -125,23 +122,12 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -150,14 +136,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -174,47 +152,20 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -226,48 +177,20 @@ msgid "Name" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -283,8 +206,7 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "" @@ -308,13 +230,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -323,8 +239,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Valor" diff --git a/web_dashboard_tile/i18n/hr.po b/web_dashboard_tile/i18n/hr.po index 30d98358..508f482a 100644 --- a/web_dashboard_tile/i18n/hr.po +++ b/web_dashboard_tile/i18n/hr.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-29 09:32+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,7 @@ msgid "Active" msgstr "Aktivno" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "" @@ -39,8 +38,12 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -69,7 +72,6 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -103,12 +105,7 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "" @@ -125,23 +122,12 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Grupe" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -150,14 +136,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -174,47 +152,20 @@ msgid "Last Updated on" msgstr "Zadnje ažuriranje" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -226,48 +177,20 @@ msgid "Name" msgstr "Naziv" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -283,8 +206,7 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "" @@ -308,13 +230,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -323,8 +239,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Vrijednost" diff --git a/web_dashboard_tile/i18n/it.po b/web_dashboard_tile/i18n/it.po index f8914f47..9cabf236 100644 --- a/web_dashboard_tile/i18n/it.po +++ b/web_dashboard_tile/i18n/it.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-08 11:56+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -38,8 +38,7 @@ msgid "Active" msgstr "Attivo" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Media" @@ -49,8 +48,12 @@ msgid "Background color" msgstr "Colore di sfondo" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -79,7 +82,6 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -113,12 +115,7 @@ msgid "Error" msgstr "Errore" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Campo" @@ -135,23 +132,12 @@ msgid "Font color" msgstr "Colore del Font" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "Formato" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Funzione" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Gruppi" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -160,14 +146,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -184,47 +162,20 @@ msgid "Last Updated on" msgstr "Ultimo aggiornamento il" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Massimo" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valore massimo di '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "Valore mediano di '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valore minimo di '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -236,48 +187,20 @@ msgid "Name" msgstr "Nome" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Informazioni Opzionali Campo" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -293,8 +216,7 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Somma" @@ -318,13 +240,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "Valore totale di '%s'" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -333,8 +249,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Utente" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Valore" diff --git a/web_dashboard_tile/i18n/nb.po b/web_dashboard_tile/i18n/nb.po index 81ecdeda..1754c12a 100644 --- a/web_dashboard_tile/i18n/nb.po +++ b/web_dashboard_tile/i18n/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-29 19:38+0000\n" -"PO-Revision-Date: 2016-12-02 13:53+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,7 @@ msgid "Active" msgstr "Aktiv" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "" @@ -39,8 +38,12 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -69,7 +72,6 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -103,12 +105,7 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "" @@ -125,23 +122,12 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -150,14 +136,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -174,47 +152,20 @@ msgid "Last Updated on" msgstr "Sist oppdatert" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -226,48 +177,20 @@ msgid "Name" msgstr "Navn" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -283,8 +206,7 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "" @@ -308,13 +230,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -323,8 +239,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Verdi" diff --git a/web_dashboard_tile/i18n/nl.po b/web_dashboard_tile/i18n/nl.po index 4a3bc958..de2cb837 100644 --- a/web_dashboard_tile/i18n/nl.po +++ b/web_dashboard_tile/i18n/nl.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-08 11:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -51,8 +51,7 @@ msgid "Active" msgstr "Actief" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "" @@ -62,8 +61,12 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -92,7 +95,6 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -126,12 +128,7 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Veld" @@ -148,23 +145,12 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "Formaat" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Groepen" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -173,14 +159,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -197,47 +175,20 @@ msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -249,48 +200,20 @@ msgid "Name" msgstr "Naam" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -306,8 +229,7 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "" @@ -331,13 +253,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -346,8 +262,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "" diff --git a/web_dashboard_tile/i18n/pt_BR.po b/web_dashboard_tile/i18n/pt_BR.po index 8f529526..79f0cdb8 100644 --- a/web_dashboard_tile/i18n/pt_BR.po +++ b/web_dashboard_tile/i18n/pt_BR.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-08 11:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -46,8 +46,7 @@ msgid "Active" msgstr "Ativo" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Média" @@ -57,8 +56,12 @@ msgid "Background color" msgstr "Cor de fundo" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -87,7 +90,6 @@ msgid "Dashboard" msgstr "Dashboard" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Dashboard Tile" @@ -121,12 +123,7 @@ msgid "Error" msgstr "Erro" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Campo" @@ -143,23 +140,12 @@ msgid "Font color" msgstr "Cor da fonte" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Função" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -168,14 +154,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -192,47 +170,20 @@ msgid "Last Updated on" msgstr "Última atualização em" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Máximo" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Valor máximo de '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "Mediana" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "Valor mediano de '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minímo" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Valor mínimo de '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -244,48 +195,20 @@ msgid "Name" msgstr "Nome" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Informação de campos opcionais" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -301,8 +224,7 @@ msgid "Success" msgstr "Sucesso" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Soma" @@ -326,13 +248,7 @@ msgid "Tile:" msgstr "Tile:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "Valor total de '%s'" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -341,8 +257,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Usuário" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Valor" diff --git a/web_dashboard_tile/i18n/ru.po b/web_dashboard_tile/i18n/ru.po index bbf8fe9f..8f606ced 100644 --- a/web_dashboard_tile/i18n/ru.po +++ b/web_dashboard_tile/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,8 +28,7 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "" @@ -39,8 +38,12 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -69,7 +72,6 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -103,12 +105,7 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Поле" @@ -125,23 +122,12 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -150,14 +136,6 @@ msgstr "" msgid "ID" msgstr "" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -174,47 +152,20 @@ msgid "Last Updated on" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -226,48 +177,20 @@ msgid "Name" msgstr "Название" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -283,8 +206,7 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "" @@ -308,13 +230,7 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -323,8 +239,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Пользователь" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "" diff --git a/web_dashboard_tile/i18n/sl.po b/web_dashboard_tile/i18n/sl.po index 5749e0bc..411ea1af 100644 --- a/web_dashboard_tile/i18n/sl.po +++ b/web_dashboard_tile/i18n/sl.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-08 11:55+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" @@ -42,8 +42,7 @@ msgid "Active" msgstr "Aktivno" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Povprečje" @@ -53,8 +52,12 @@ msgid "Background color" msgstr "Barva ozadja" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "Obračunana vrednost" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "Števec" @@ -83,7 +86,6 @@ msgid "Dashboard" msgstr "Nadzorna plošča" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Okvir nadzorne plošče" @@ -117,12 +119,7 @@ msgid "Error" msgstr "Napaka" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "Podrobnosti o napaki" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Polje" @@ -139,23 +136,12 @@ msgid "Font color" msgstr "Barva pisave" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "Format" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Funkcija" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Skupine" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "Pomočnik" @@ -164,14 +150,6 @@ msgstr "Pomočnik" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "Če je to polje nastavljeno, lahko ta okvir vidijo le uporabniki te skupine. Upoštevajte, da bo delovalo le za globalne okvirje (torej s poljem 'uporabnik' puščenim praznim)" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -188,47 +166,20 @@ msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "Glavna vrednost" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "Maksimalna vrednost '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "Sredina" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "Srednja vrednost '%s'" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "Minimalna vrednost '%s'" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -240,49 +191,21 @@ msgid "Name" msgstr "Naziv" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "Število zapisov" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Opcijske informacije o polju" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "Izberite polje iz izbranega modela." #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "Niz v Python formatu veljaven s str.format()\nnpr: '{:,} kg' da rezultat '1,000 kg' pri vrednosti 1000." - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "Sekundarno polje" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "Sekundarni format" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "Sekundarna funkcija" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "Sekundarni pomočnik" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" -msgstr "Sekundarna vrednost" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." +msgstr "Nastavite oboje: 'Polje' in 'Funkcija'." #. module: web_dashboard_tile #: field:tile.tile,sequence:0 @@ -297,8 +220,7 @@ msgid "Success" msgstr "Uspeh" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Vsota" @@ -322,13 +244,7 @@ msgid "Tile:" msgstr "Okvir:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "Skupna vrednost '%s'" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." @@ -337,8 +253,3 @@ msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." #: field:tile.tile,user_id:0 msgid "User" msgstr "Uporabnik" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Vrednost" diff --git a/web_dashboard_tile/i18n/tr.po b/web_dashboard_tile/i18n/tr.po index 015a8fa5..034abdf1 100644 --- a/web_dashboard_tile/i18n/tr.po +++ b/web_dashboard_tile/i18n/tr.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-12-06 08:59+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" @@ -37,8 +37,7 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Average" msgstr "Ortalama" @@ -48,8 +47,12 @@ msgid "Background color" msgstr "Arkaplan rengi" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: field:tile.tile,computed_value:0 +msgid "Computed value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,count:0 msgid "Count" msgstr "" @@ -78,7 +81,6 @@ msgid "Dashboard" msgstr "Gösterge panosu" #. module: web_dashboard_tile -#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Gösterge parçası" @@ -112,12 +114,7 @@ msgid "Error" msgstr "Hata" #. module: web_dashboard_tile -#: field:tile.tile,error:0 -msgid "Error Details" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_field_id:0 +#: field:tile.tile,field_id:0 msgid "Field" msgstr "Alan" @@ -134,23 +131,12 @@ msgid "Font color" msgstr "Font rengi" #. module: web_dashboard_tile -#: field:tile.tile,primary_format:0 -msgid "Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_function:0 +#: field:tile.tile,field_function:0 msgid "Function" msgstr "Fonksiyon" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,group_ids:0 -msgid "Groups" -msgstr "Gruplar" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_helper:0 +#: field:tile.tile,helper:0 msgid "Helper" msgstr "" @@ -159,14 +145,6 @@ msgstr "" msgid "ID" msgstr "ID" -#. module: web_dashboard_tile -#: help:tile.tile,group_ids:0 -msgid "" -"If this field is set, only users of this group can view this tile. Please " -"note that it will only work for global tiles (that is, when User field is " -"left empty)" -msgstr "" - #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -183,47 +161,20 @@ msgid "Last Updated on" msgstr "Son güncellendi" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Main Value" -msgstr "" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:39 -#, python-format -msgid "Maximum value of '%s'" -msgstr "'%s' nin en fazla değeri" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Median" msgstr "orta değer" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:51 -#, python-format -msgid "Median value of '%s'" -msgstr "'%s' nin orta değeri" - -#. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Minimum" msgstr "Minimum" -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:35 -#: code:addons/web_dashboard_tile/models/tile_tile.py:47 -#, python-format -msgid "Minimum value of '%s'" -msgstr "'%s' nin en düşük değeri" - #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -235,48 +186,20 @@ msgid "Name" msgstr "Adı" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:31 -#, python-format -msgid "Number of records" -msgstr "" +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Optional Field Informations" +msgstr "Opsiyonel Alan Bilgileri" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#: code:addons/web_dashboard_tile/models/tile_tile.py:142 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 -msgid "" -"Python Format String valid with str.format()\n" -"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_field_id:0 -msgid "Secondary Field" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_format:0 -msgid "Secondary Format" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_function:0 -msgid "Secondary Function" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,secondary_helper:0 -msgid "Secondary Helper" -msgstr "" - -#. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -#: field:tile.tile,secondary_value:0 -msgid "Secondary Value" +#: code:addons/web_dashboard_tile/models/tile_tile.py:150 +#, python-format +msgid "Please set both: 'Field' and 'Function'." msgstr "" #. module: web_dashboard_tile @@ -292,8 +215,7 @@ msgid "Success" msgstr "Başarılı" #. module: web_dashboard_tile -#: selection:tile.tile,primary_function:0 -#: selection:tile.tile,secondary_function:0 +#: selection:tile.tile,field_function:0 msgid "Sum" msgstr "Toplam" @@ -317,13 +239,7 @@ msgid "Tile:" msgstr "Parça:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:43 -#, python-format -msgid "Total value of '%s'" -msgstr "'%s' nin toplam değeri" - -#. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#: code:addons/web_dashboard_tile/models/tile_tile.py:123 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -332,8 +248,3 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Kullanıcı" - -#. module: web_dashboard_tile -#: field:tile.tile,primary_value:0 -msgid "Value" -msgstr "Değer" diff --git a/web_easy_switch_company/i18n/es_MX.po b/web_easy_switch_company/i18n/es_MX.po new file mode 100644 index 00000000..61a52ce0 --- /dev/null +++ b/web_easy_switch_company/i18n/es_MX.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_favicon/i18n/es_MX.po b/web_favicon/i18n/es_MX.po new file mode 100644 index 00000000..0323b306 --- /dev/null +++ b/web_favicon/i18n/es_MX.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:57+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_timeline/i18n/ar.po b/web_timeline/i18n/ar.po new file mode 100644 index 00000000..6a259a2b --- /dev/null +++ b/web_timeline/i18n/ar.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# SaFi J. , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: SaFi J. , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "إنشاء" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "الرسائل" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "حفظ" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "اليوم" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "سنة" diff --git a/web_timeline/i18n/bg.po b/web_timeline/i18n/bg.po new file mode 100644 index 00000000..ba1009a1 --- /dev/null +++ b/web_timeline/i18n/bg.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Създай" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Съобщения" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/bs.po b/web_timeline/i18n/bs.po new file mode 100644 index 00000000..a2f6153d --- /dev/null +++ b/web_timeline/i18n/bs.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Poruke" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Godina" diff --git a/web_timeline/i18n/ca.po b/web_timeline/i18n/ca.po new file mode 100644 index 00000000..fc27b4be --- /dev/null +++ b/web_timeline/i18n/ca.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Missatges" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Avui" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Any" diff --git a/web_timeline/i18n/cs.po b/web_timeline/i18n/cs.po new file mode 100644 index 00000000..93b1581c --- /dev/null +++ b/web_timeline/i18n/cs.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Zprávy" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Rok" diff --git a/web_timeline/i18n/da.po b/web_timeline/i18n/da.po new file mode 100644 index 00000000..f104ad70 --- /dev/null +++ b/web_timeline/i18n/da.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Beskeder" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/de.po b/web_timeline/i18n/de.po new file mode 100644 index 00000000..4fe90b01 --- /dev/null +++ b/web_timeline/i18n/de.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Rudolf Schnapka , 2016 +# OCA Transbot , 2016 +# Thomas A. Jaeger , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Thomas A. Jaeger , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Erstellen" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Tag" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Meldungen" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Monat" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Speichern" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Heute" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Woche" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Jahr" diff --git a/web_timeline/i18n/el_GR.po b/web_timeline/i18n/el_GR.po new file mode 100644 index 00000000..6da902af --- /dev/null +++ b/web_timeline/i18n/el_GR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Μηνύματα" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/en_GB.po b/web_timeline/i18n/en_GB.po new file mode 100644 index 00000000..77ff2a4a --- /dev/null +++ b/web_timeline/i18n/en_GB.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Messages" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Year" diff --git a/web_timeline/i18n/es.po b/web_timeline/i18n/es.po new file mode 100644 index 00000000..1a83fd4c --- /dev/null +++ b/web_timeline/i18n/es.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# Pedro M. Baeza , 2016 +# Iván Todorovich , 2016 +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Carles Antoli , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Crear" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Día" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Guardar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoy" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Semana" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Año" diff --git a/web_timeline/i18n/es_AR.po b/web_timeline/i18n/es_AR.po new file mode 100644 index 00000000..520cc986 --- /dev/null +++ b/web_timeline/i18n/es_AR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/es_CL.po b/web_timeline/i18n/es_CL.po new file mode 100644 index 00000000..e6091ec3 --- /dev/null +++ b/web_timeline/i18n/es_CL.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/es_CO.po b/web_timeline/i18n/es_CO.po new file mode 100644 index 00000000..7375a272 --- /dev/null +++ b/web_timeline/i18n/es_CO.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/es_CR.po b/web_timeline/i18n/es_CR.po new file mode 100644 index 00000000..23726092 --- /dev/null +++ b/web_timeline/i18n/es_CR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoy" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Año" diff --git a/web_timeline/i18n/es_DO.po b/web_timeline/i18n/es_DO.po new file mode 100644 index 00000000..671e4d14 --- /dev/null +++ b/web_timeline/i18n/es_DO.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/es_EC.po b/web_timeline/i18n/es_EC.po new file mode 100644 index 00000000..e55ea037 --- /dev/null +++ b/web_timeline/i18n/es_EC.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Año" diff --git a/web_timeline/i18n/es_MX.po b/web_timeline/i18n/es_MX.po new file mode 100644 index 00000000..e60ac8a5 --- /dev/null +++ b/web_timeline/i18n/es_MX.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoy" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Año" diff --git a/web_timeline/i18n/es_PE.po b/web_timeline/i18n/es_PE.po new file mode 100644 index 00000000..023d694f --- /dev/null +++ b/web_timeline/i18n/es_PE.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/es_PY.po b/web_timeline/i18n/es_PY.po new file mode 100644 index 00000000..77992249 --- /dev/null +++ b/web_timeline/i18n/es_PY.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/es_VE.po b/web_timeline/i18n/es_VE.po new file mode 100644 index 00000000..d36e9911 --- /dev/null +++ b/web_timeline/i18n/es_VE.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensajes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoy" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/et.po b/web_timeline/i18n/et.po new file mode 100644 index 00000000..f0ad3a6b --- /dev/null +++ b/web_timeline/i18n/et.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Sõnumid" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Aasta" diff --git a/web_timeline/i18n/eu.po b/web_timeline/i18n/eu.po new file mode 100644 index 00000000..1258e818 --- /dev/null +++ b/web_timeline/i18n/eu.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mezuak" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/fa.po b/web_timeline/i18n/fa.po new file mode 100644 index 00000000..ae08cf86 --- /dev/null +++ b/web_timeline/i18n/fa.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "پیام‌ها" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/fi.po b/web_timeline/i18n/fi.po new file mode 100644 index 00000000..04036ac7 --- /dev/null +++ b/web_timeline/i18n/fi.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Luo" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Viestejä" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Tallenna" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Tänään" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Vuosi" diff --git a/web_timeline/i18n/fr.po b/web_timeline/i18n/fr.po new file mode 100644 index 00000000..90851544 --- /dev/null +++ b/web_timeline/i18n/fr.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# David BEAL , 2016 +# Christophe CHAUVET , 2016 +# dglucose , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: dglucose , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Créer" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Jour" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Messages" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mois" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Sauvegarder" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Aujourd'hui" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Semaine" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Année" diff --git a/web_timeline/i18n/fr_CA.po b/web_timeline/i18n/fr_CA.po new file mode 100644 index 00000000..9765e73c --- /dev/null +++ b/web_timeline/i18n/fr_CA.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Adriana Ierfino , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Adriana Ierfino , 2016\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Année" diff --git a/web_timeline/i18n/fr_CH.po b/web_timeline/i18n/fr_CH.po new file mode 100644 index 00000000..5d03a061 --- /dev/null +++ b/web_timeline/i18n/fr_CH.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Créer" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/gl.po b/web_timeline/i18n/gl.po new file mode 100644 index 00000000..0d128e3a --- /dev/null +++ b/web_timeline/i18n/gl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# César Castro Cruz , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: César Castro Cruz , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Crear" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoxe" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Ano" diff --git a/web_timeline/i18n/he.po b/web_timeline/i18n/he.po new file mode 100644 index 00000000..6768c34d --- /dev/null +++ b/web_timeline/i18n/he.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "הודעות" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/hr.po b/web_timeline/i18n/hr.po new file mode 100644 index 00000000..8e54414e --- /dev/null +++ b/web_timeline/i18n/hr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# Ana-Maria Olujić , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Ana-Maria Olujić , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Kreiraj" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Poruke" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Danas" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Tjedan" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Godina" diff --git a/web_timeline/i18n/hr_HR.po b/web_timeline/i18n/hr_HR.po new file mode 100644 index 00000000..d702f9ab --- /dev/null +++ b/web_timeline/i18n/hr_HR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Poruke" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Danas" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/hu.po b/web_timeline/i18n/hu.po new file mode 100644 index 00000000..a0205434 --- /dev/null +++ b/web_timeline/i18n/hu.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Üzenetek" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Ma" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Év" diff --git a/web_timeline/i18n/id.po b/web_timeline/i18n/id.po new file mode 100644 index 00000000..c29ab425 --- /dev/null +++ b/web_timeline/i18n/id.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Pesan" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/it.po b/web_timeline/i18n/it.po new file mode 100644 index 00000000..85717005 --- /dev/null +++ b/web_timeline/i18n/it.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Paolo Valier , 2016 +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Crea" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Giorno" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "Modifica" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Messaggi" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mese" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Salva" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Oggi" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Settimana" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Anno" diff --git a/web_timeline/i18n/ja.po b/web_timeline/i18n/ja.po new file mode 100644 index 00000000..d8d77af1 --- /dev/null +++ b/web_timeline/i18n/ja.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "メッセージ" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "本日" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "年" diff --git a/web_timeline/i18n/ko.po b/web_timeline/i18n/ko.po new file mode 100644 index 00000000..30a102a8 --- /dev/null +++ b/web_timeline/i18n/ko.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "메시지" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/lt.po b/web_timeline/i18n/lt.po new file mode 100644 index 00000000..3aba9282 --- /dev/null +++ b/web_timeline/i18n/lt.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Pranešimai" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Dabar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Metai" diff --git a/web_timeline/i18n/lv.po b/web_timeline/i18n/lv.po new file mode 100644 index 00000000..2d5c9b3b --- /dev/null +++ b/web_timeline/i18n/lv.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Ziņojumi" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Šodien" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/mk.po b/web_timeline/i18n/mk.po new file mode 100644 index 00000000..c8ec1f0d --- /dev/null +++ b/web_timeline/i18n/mk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Пораки" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Денес" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Година" diff --git a/web_timeline/i18n/mn.po b/web_timeline/i18n/mn.po new file mode 100644 index 00000000..954f30b7 --- /dev/null +++ b/web_timeline/i18n/mn.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Зурвасууд" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Өнөөдөр" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Жил" diff --git a/web_timeline/i18n/nb.po b/web_timeline/i18n/nb.po new file mode 100644 index 00000000..64aa47e0 --- /dev/null +++ b/web_timeline/i18n/nb.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Dag" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Meldinger." + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Måned" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Uke" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "År" diff --git a/web_timeline/i18n/nb_NO.po b/web_timeline/i18n/nb_NO.po new file mode 100644 index 00000000..f32a3f54 --- /dev/null +++ b/web_timeline/i18n/nb_NO.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Imre Kristoffer Eilertsen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Lag" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Meldinger" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/nl.po b/web_timeline/i18n/nl.po new file mode 100644 index 00000000..4484b4bc --- /dev/null +++ b/web_timeline/i18n/nl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# Erwin van der Ploeg , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Erwin van der Ploeg , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Aanmaken" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Dag" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Berichten" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Maand" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Opslaan" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Vandaag" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Week" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Jaar" diff --git a/web_timeline/i18n/nl_BE.po b/web_timeline/i18n/nl_BE.po new file mode 100644 index 00000000..3097cf4a --- /dev/null +++ b/web_timeline/i18n/nl_BE.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Berichten" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Jaar" diff --git a/web_timeline/i18n/pl.po b/web_timeline/i18n/pl.po new file mode 100644 index 00000000..60574be3 --- /dev/null +++ b/web_timeline/i18n/pl.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Wiadomosći" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Dzisiaj" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Rok" diff --git a/web_timeline/i18n/pt.po b/web_timeline/i18n/pt.po new file mode 100644 index 00000000..7e1c5634 --- /dev/null +++ b/web_timeline/i18n/pt.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# Daniel Reis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Daniel Reis , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensagens" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mês" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoje" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Semana" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Ano" diff --git a/web_timeline/i18n/pt_BR.po b/web_timeline/i18n/pt_BR.po new file mode 100644 index 00000000..9cbcc7c4 --- /dev/null +++ b/web_timeline/i18n/pt_BR.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# danimaribeiro , 2016 +# Felipe Lopes , 2016 +# OCA Transbot , 2016 +# Claudio Araujo Santos , 2016 +# Alessandro Martini , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Alessandro Martini , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Criar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Dia" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensagens" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mês" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Salvar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hoje" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Semana" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Ano" diff --git a/web_timeline/i18n/pt_PT.po b/web_timeline/i18n/pt_PT.po new file mode 100644 index 00000000..3088b94b --- /dev/null +++ b/web_timeline/i18n/pt_PT.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Pedro Castro Silva , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Pedro Castro Silva , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mensagens" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mês" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Ano" diff --git a/web_timeline/i18n/ro.po b/web_timeline/i18n/ro.po new file mode 100644 index 00000000..87355462 --- /dev/null +++ b/web_timeline/i18n/ro.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Astazi" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "An" diff --git a/web_timeline/i18n/ru.po b/web_timeline/i18n/ru.po new file mode 100644 index 00000000..9dde9d2d --- /dev/null +++ b/web_timeline/i18n/ru.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Год" diff --git a/web_timeline/i18n/sk.po b/web_timeline/i18n/sk.po new file mode 100644 index 00000000..c08edff9 --- /dev/null +++ b/web_timeline/i18n/sk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Správy" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/sl.po b/web_timeline/i18n/sl.po new file mode 100644 index 00000000..bfd6a15d --- /dev/null +++ b/web_timeline/i18n/sl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# Matjaž Mozetič , 2016 +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "Ste prepričani, da želite izbrisati ta zapis?" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Ustvari" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Dan" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "Urejanje" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Sporočila" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Mesec" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Shrani" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "Časovnica" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "Prikaz časovnice nima določenega atributa 'date_start'." + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Danes" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Teden" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Leto" diff --git a/web_timeline/i18n/sr.po b/web_timeline/i18n/sr.po new file mode 100644 index 00000000..4139f007 --- /dev/null +++ b/web_timeline/i18n/sr.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Poruke" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/sr@latin.po b/web_timeline/i18n/sr@latin.po new file mode 100644 index 00000000..aaf301b1 --- /dev/null +++ b/web_timeline/i18n/sr@latin.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Poruke" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/sv.po b/web_timeline/i18n/sv.po new file mode 100644 index 00000000..4d5ec8d3 --- /dev/null +++ b/web_timeline/i18n/sv.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Meddelanden" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Idag" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "År" diff --git a/web_timeline/i18n/th.po b/web_timeline/i18n/th.po new file mode 100644 index 00000000..63d76bb8 --- /dev/null +++ b/web_timeline/i18n/th.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "ข้อความ" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "ปี" diff --git a/web_timeline/i18n/tr.po b/web_timeline/i18n/tr.po new file mode 100644 index 00000000..152ff60d --- /dev/null +++ b/web_timeline/i18n/tr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "Oluştur" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "Gün" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Mesajlar" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "Ay" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "Kaydet" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Bugün" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "Hafta" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "Yıl" diff --git a/web_timeline/i18n/uk.po b/web_timeline/i18n/uk.po new file mode 100644 index 00000000..3cc573a5 --- /dev/null +++ b/web_timeline/i18n/uk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Повідомлення" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/vi.po b/web_timeline/i18n/vi.po new file mode 100644 index 00000000..679d2db9 --- /dev/null +++ b/web_timeline/i18n/vi.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "Thông điệp" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "Hôm nay" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "" diff --git a/web_timeline/i18n/zh_CN.po b/web_timeline/i18n/zh_CN.po new file mode 100644 index 00000000..bd919262 --- /dev/null +++ b/web_timeline/i18n/zh_CN.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "消息" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "今日" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "年" diff --git a/web_timeline/i18n/zh_TW.po b/web_timeline/i18n/zh_TW.po new file mode 100644 index 00000000..8e00a8b5 --- /dev/null +++ b/web_timeline/i18n/zh_TW.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_timeline +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-06 08:58+0000\n" +"PO-Revision-Date: 2016-12-06 08:58+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:484 +#, python-format +msgid "Are you sure you want to delete this record ?" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:377 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 +#, python-format +msgid "Day" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:426 +#, python-format +msgid "Edit" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:441 +#, python-format +msgid "Messages" +msgstr "訊息" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 +#, python-format +msgid "Month" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:427 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:27 +#, python-format +msgid "Timeline" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/js/web_timeline.js:99 +#, python-format +msgid "Timeline view has not defined 'date_start' attribute." +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 +#, python-format +msgid "Today" +msgstr "今天" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 +#, python-format +msgid "Week" +msgstr "" + +#. module: web_timeline +#. openerp-web +#: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 +#, python-format +msgid "Year" +msgstr "年度" From 7b1ec94b861ca305f5b5239789922cb11261f3c3 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 17 Dec 2016 01:23:54 -0500 Subject: [PATCH 069/103] OCA Transbot updated translations from Transifex --- web_dashboard_tile/i18n/ar.po | 137 +++++++++++++++++---- web_dashboard_tile/i18n/de.po | 137 +++++++++++++++++---- web_dashboard_tile/i18n/es.po | 139 +++++++++++++++++---- web_dashboard_tile/i18n/fi.po | 137 +++++++++++++++++---- web_dashboard_tile/i18n/fr.po | 137 +++++++++++++++++---- web_dashboard_tile/i18n/gl.po | 135 +++++++++++++++++---- web_dashboard_tile/i18n/hr.po | 135 +++++++++++++++++---- web_dashboard_tile/i18n/it.po | 137 +++++++++++++++++---- web_dashboard_tile/i18n/nb.po | 135 +++++++++++++++++---- web_dashboard_tile/i18n/nl.po | 135 +++++++++++++++++---- web_dashboard_tile/i18n/pt.po | 6 +- web_dashboard_tile/i18n/pt_BR.po | 137 +++++++++++++++++---- web_dashboard_tile/i18n/pt_PT.po | 6 +- web_dashboard_tile/i18n/ru.po | 135 +++++++++++++++++---- web_dashboard_tile/i18n/sl.po | 141 ++++++++++++++++++---- web_dashboard_tile/i18n/tr.po | 137 +++++++++++++++++---- web_graph_improved/i18n/pt_PT.po | 38 ++++++ web_widget_x2many_2d_matrix/i18n/pt_PT.po | 26 ++++ 18 files changed, 1650 insertions(+), 340 deletions(-) create mode 100644 web_graph_improved/i18n/pt_PT.po create mode 100644 web_widget_x2many_2d_matrix/i18n/pt_PT.po diff --git a/web_dashboard_tile/i18n/ar.po b/web_dashboard_tile/i18n/ar.po index 22e6abda..3f26ca71 100644 --- a/web_dashboard_tile/i18n/ar.po +++ b/web_dashboard_tile/i18n/ar.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "المعدل" @@ -52,12 +53,8 @@ msgid "Background color" msgstr "لون الخلفية" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -86,6 +83,7 @@ msgid "Dashboard" msgstr "لوحة المعلومات" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -119,7 +117,12 @@ msgid "Error" msgstr "الخطأ" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "الحقل" @@ -136,12 +139,23 @@ msgid "Font color" msgstr "لون الخط" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "الوظيفة" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -150,6 +164,14 @@ msgstr "" msgid "ID" msgstr "المعرف" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -166,20 +188,47 @@ msgid "Last Updated on" msgstr "آخر تحديث في" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "الحد الاعلى" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "القيمة العليا الى '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "متوسط" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "القيمة المتوسطة الى '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "الحد الادنى" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "القيمة الادنى الى '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -191,20 +240,48 @@ msgid "Name" msgstr "الاسم" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "معلومات الحقل الاختياري" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -220,7 +297,8 @@ msgid "Success" msgstr "نجاح" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "المجموع" @@ -244,7 +322,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "القيمة الاجمالية الى '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -253,3 +337,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "المستخدم" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/de.po b/web_dashboard_tile/i18n/de.po index b8ff1483..f3f839ac 100644 --- a/web_dashboard_tile/i18n/de.po +++ b/web_dashboard_tile/i18n/de.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,8 @@ msgid "Active" msgstr "Aktiv" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Durchschnitt" @@ -50,12 +51,8 @@ msgid "Background color" msgstr "Hintergrundfarbe" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -84,6 +81,7 @@ msgid "Dashboard" msgstr "Pinwand" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Pinwand-Kachel" @@ -117,7 +115,12 @@ msgid "Error" msgstr "Fehler" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Feld" @@ -134,12 +137,23 @@ msgid "Font color" msgstr "Schriftfarbe" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Funktion" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -148,6 +162,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -164,20 +186,47 @@ msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maximum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Maximalwert von '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Median" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Medianwert von '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Minimalwert von '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -189,20 +238,48 @@ msgid "Name" msgstr "Bezeichnung" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Optionale Feldinformation" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -218,7 +295,8 @@ msgid "Success" msgstr "Erfolg" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Summe" @@ -242,7 +320,13 @@ msgid "Tile:" msgstr "Kachel:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Gesamtwert von '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -251,3 +335,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Benutzer" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Wert" diff --git a/web_dashboard_tile/i18n/es.po b/web_dashboard_tile/i18n/es.po index 9a24fbe5..2c5b3bd2 100644 --- a/web_dashboard_tile/i18n/es.po +++ b/web_dashboard_tile/i18n/es.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-08 11:55+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-16 00:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,8 @@ msgid "Active" msgstr "Activo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Promedio" @@ -55,12 +56,8 @@ msgid "Background color" msgstr "Color de fondo" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Valor calculado" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Cuenta" @@ -89,6 +86,7 @@ msgid "Dashboard" msgstr "Tablero" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Pieza del tablero" @@ -122,7 +120,12 @@ msgid "Error" msgstr "Error" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Campo" @@ -139,12 +142,23 @@ msgid "Font color" msgstr "Color de texto" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Formato" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Función" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Grupos" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Ayudante" @@ -153,6 +167,14 @@ msgstr "Ayudante" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -169,20 +191,47 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Máximo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valor máximo de \"%s\"" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Mediana" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valor mediano de \"%s\"" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Mínimo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valor mínimo de \"%s\"" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -194,21 +243,49 @@ msgid "Name" msgstr "Nombre" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Información opcional" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "Seleccione por favor un campo del modelo seleccionado." #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." -msgstr "Establezca ambos: 'Campo' y 'Función'" +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 @@ -223,7 +300,8 @@ msgid "Success" msgstr "Éxito" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Suma" @@ -247,7 +325,13 @@ msgid "Tile:" msgstr "Pieza:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Valor total de \"%s\"" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "Características no implementada: búsqueda en el campo activo deshabilitada." @@ -256,3 +340,8 @@ msgstr "Características no implementada: búsqueda en el campo activo deshabili #: field:tile.tile,user_id:0 msgid "User" msgstr "Usuario" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valor" diff --git a/web_dashboard_tile/i18n/fi.po b/web_dashboard_tile/i18n/fi.po index 71e43955..ec57d971 100644 --- a/web_dashboard_tile/i18n/fi.po +++ b/web_dashboard_tile/i18n/fi.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,8 @@ msgid "Active" msgstr "Aktiivinen" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Keskiarvo" @@ -50,12 +51,8 @@ msgid "Background color" msgstr "Taustaväri" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Laskettu arvo" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Määrä" @@ -84,6 +81,7 @@ msgid "Dashboard" msgstr "Työpöytä" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Työpöydän pala" @@ -117,7 +115,12 @@ msgid "Error" msgstr "Virhe" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Kenttä" @@ -134,12 +137,23 @@ msgid "Font color" msgstr "Fontin väri" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Toiminto" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Avustin" @@ -148,6 +162,14 @@ msgstr "Avustin" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -164,20 +186,47 @@ msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimi" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "'%s':n maksimiarvo" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Mediaani" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "'%s':n mediaaniarvo" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimi" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "'%s':n minimiarvo" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -189,20 +238,48 @@ msgid "Name" msgstr "Nimi" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Valinnaiset kentän tiedot" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -218,7 +295,8 @@ msgid "Success" msgstr "Onnistui" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Summa" @@ -242,7 +320,13 @@ msgid "Tile:" msgstr "Pala:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "'%s':n kokonaisarvo" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -251,3 +335,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Käyttäjä" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/fr.po b/web_dashboard_tile/i18n/fr.po index d99a361c..49af59e2 100644 --- a/web_dashboard_tile/i18n/fr.po +++ b/web_dashboard_tile/i18n/fr.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-09 17:18+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-16 16:11+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,8 @@ msgid "Active" msgstr "Actif" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Moyenne" @@ -53,12 +54,8 @@ msgid "Background color" msgstr "Couleur de fond" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Valeur calculée" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Compter" @@ -87,6 +84,7 @@ msgid "Dashboard" msgstr "Tableau de bord" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Indicateur de tableau de bord" @@ -120,7 +118,12 @@ msgid "Error" msgstr "Erreur" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Champ" @@ -137,12 +140,23 @@ msgid "Font color" msgstr "Couleur de la police" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Format" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Fonction" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Groupes" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Assistant" @@ -151,6 +165,14 @@ msgstr "Assistant" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -167,20 +189,47 @@ msgid "Last Updated on" msgstr "Mis à jour le" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maximum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valeur maximale du champ '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Médiane" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valeur médian du champ '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valeur minimale du champ '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -192,20 +241,48 @@ msgid "Name" msgstr "Nom" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Information du champ optionnel" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -221,7 +298,8 @@ msgid "Success" msgstr "Succès" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Somme" @@ -245,7 +323,13 @@ msgid "Tile:" msgstr "Indicateur :" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Somme du champ '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -254,3 +338,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Utilisateur" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valeur" diff --git a/web_dashboard_tile/i18n/gl.po b/web_dashboard_tile/i18n/gl.po index 6a4024b0..acb5e139 100644 --- a/web_dashboard_tile/i18n/gl.po +++ b/web_dashboard_tile/i18n/gl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,6 +150,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,20 +226,48 @@ msgid "Name" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valor" diff --git a/web_dashboard_tile/i18n/hr.po b/web_dashboard_tile/i18n/hr.po index 508f482a..1381405c 100644 --- a/web_dashboard_tile/i18n/hr.po +++ b/web_dashboard_tile/i18n/hr.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "Aktivno" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Grupe" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,6 +150,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "Zadnje ažuriranje" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,20 +226,48 @@ msgid "Name" msgstr "Naziv" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Vrijednost" diff --git a/web_dashboard_tile/i18n/it.po b/web_dashboard_tile/i18n/it.po index 9cabf236..8670a65a 100644 --- a/web_dashboard_tile/i18n/it.po +++ b/web_dashboard_tile/i18n/it.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-08 11:56+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,8 @@ msgid "Active" msgstr "Attivo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Media" @@ -48,12 +49,8 @@ msgid "Background color" msgstr "Colore di sfondo" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -82,6 +79,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -115,7 +113,12 @@ msgid "Error" msgstr "Errore" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Campo" @@ -132,12 +135,23 @@ msgid "Font color" msgstr "Colore del Font" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Formato" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Funzione" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Gruppi" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -146,6 +160,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -162,20 +184,47 @@ msgid "Last Updated on" msgstr "Ultimo aggiornamento il" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Massimo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valore massimo di '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valore mediano di '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valore minimo di '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -187,20 +236,48 @@ msgid "Name" msgstr "Nome" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Informazioni Opzionali Campo" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -216,7 +293,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Somma" @@ -240,7 +318,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Valore totale di '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -249,3 +333,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Utente" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valore" diff --git a/web_dashboard_tile/i18n/nb.po b/web_dashboard_tile/i18n/nb.po index 1754c12a..70872753 100644 --- a/web_dashboard_tile/i18n/nb.po +++ b/web_dashboard_tile/i18n/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "Aktiv" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,6 +150,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "Sist oppdatert" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,20 +226,48 @@ msgid "Name" msgstr "Navn" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Verdi" diff --git a/web_dashboard_tile/i18n/nl.po b/web_dashboard_tile/i18n/nl.po index de2cb837..5942a6c0 100644 --- a/web_dashboard_tile/i18n/nl.po +++ b/web_dashboard_tile/i18n/nl.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-08 11:55+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,8 @@ msgid "Active" msgstr "Actief" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -61,12 +62,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -95,6 +92,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -128,7 +126,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Veld" @@ -145,12 +148,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Formaat" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Groepen" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -159,6 +173,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -175,20 +197,47 @@ msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -200,20 +249,48 @@ msgid "Name" msgstr "Naam" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -229,7 +306,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -253,7 +331,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -262,3 +346,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/pt.po b/web_dashboard_tile/i18n/pt.po index 2b6e05e3..ace71ac4 100644 --- a/web_dashboard_tile/i18n/pt.po +++ b/web_dashboard_tile/i18n/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-12 11:39+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Ativo" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 diff --git a/web_dashboard_tile/i18n/pt_BR.po b/web_dashboard_tile/i18n/pt_BR.po index 79f0cdb8..b6411bfe 100644 --- a/web_dashboard_tile/i18n/pt_BR.po +++ b/web_dashboard_tile/i18n/pt_BR.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-08 11:55+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,8 @@ msgid "Active" msgstr "Ativo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Média" @@ -56,12 +57,8 @@ msgid "Background color" msgstr "Cor de fundo" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -90,6 +87,7 @@ msgid "Dashboard" msgstr "Dashboard" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Dashboard Tile" @@ -123,7 +121,12 @@ msgid "Error" msgstr "Erro" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Campo" @@ -140,12 +143,23 @@ msgid "Font color" msgstr "Cor da fonte" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Função" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -154,6 +168,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -170,20 +192,47 @@ msgid "Last Updated on" msgstr "Última atualização em" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Máximo" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Valor máximo de '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Mediana" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Valor mediano de '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minímo" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Valor mínimo de '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -195,20 +244,48 @@ msgid "Name" msgstr "Nome" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Informação de campos opcionais" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -224,7 +301,8 @@ msgid "Success" msgstr "Sucesso" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Soma" @@ -248,7 +326,13 @@ msgid "Tile:" msgstr "Tile:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Valor total de '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -257,3 +341,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Usuário" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Valor" diff --git a/web_dashboard_tile/i18n/pt_PT.po b/web_dashboard_tile/i18n/pt_PT.po index 04ab914b..c3d86dc1 100644 --- a/web_dashboard_tile/i18n/pt_PT.po +++ b/web_dashboard_tile/i18n/pt_PT.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-12 16:25+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Ativo" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 diff --git a/web_dashboard_tile/i18n/ru.po b/web_dashboard_tile/i18n/ru.po index 8f606ced..cdcc866c 100644 --- a/web_dashboard_tile/i18n/ru.po +++ b/web_dashboard_tile/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Поле" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,6 +150,14 @@ msgstr "" msgid "ID" msgstr "" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,20 +226,48 @@ msgid "Name" msgstr "Название" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Пользователь" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/sl.po b/web_dashboard_tile/i18n/sl.po index 411ea1af..94ecac75 100644 --- a/web_dashboard_tile/i18n/sl.po +++ b/web_dashboard_tile/i18n/sl.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-08 11:55+0000\n" -"Last-Translator: Matjaž Mozetič \n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-16 00:24+0000\n" +"Last-Translator: OCA Transbot \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +42,8 @@ msgid "Active" msgstr "Aktivno" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Povprečje" @@ -52,12 +53,8 @@ msgid "Background color" msgstr "Barva ozadja" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "Obračunana vrednost" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "Števec" @@ -86,6 +83,7 @@ msgid "Dashboard" msgstr "Nadzorna plošča" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Okvir nadzorne plošče" @@ -119,7 +117,12 @@ msgid "Error" msgstr "Napaka" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "Podrobnosti o napaki" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Polje" @@ -136,12 +139,23 @@ msgid "Font color" msgstr "Barva pisave" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "Format" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Funkcija" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Skupine" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "Pomočnik" @@ -150,6 +164,14 @@ msgstr "Pomočnik" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "Če je to polje nastavljeno, lahko ta okvir vidijo le uporabniki te skupine. Upoštevajte, da bo delovalo le za globalne okvirje (torej s poljem 'uporabnik' puščenim praznim)" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -166,20 +188,47 @@ msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "Glavna vrednost" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "Maksimalna vrednost '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "Sredina" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "Srednja vrednost '%s'" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "Minimalna vrednost '%s'" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -191,21 +240,49 @@ msgid "Name" msgstr "Naziv" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Opcijske informacije o polju" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "Število zapisov" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "Izberite polje iz izbranega modela." #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." -msgstr "Nastavite oboje: 'Polje' in 'Funkcija'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "Niz v Python formatu veljaven s str.format()\nnpr: '{:,} kg' da rezultat '1,000 kg' pri vrednosti 1000." + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "Sekundarno polje" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "Sekundarni format" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "Sekundarna funkcija" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "Sekundarni pomočnik" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "Sekundarna vrednost" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 @@ -220,7 +297,8 @@ msgid "Success" msgstr "Uspeh" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Vsota" @@ -244,7 +322,13 @@ msgid "Tile:" msgstr "Okvir:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "Skupna vrednost '%s'" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." @@ -253,3 +337,8 @@ msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno." #: field:tile.tile,user_id:0 msgid "User" msgstr "Uporabnik" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Vrednost" diff --git a/web_dashboard_tile/i18n/tr.po b/web_dashboard_tile/i18n/tr.po index 034abdf1..725c1be8 100644 --- a/web_dashboard_tile/i18n/tr.po +++ b/web_dashboard_tile/i18n/tr.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:57+0000\n" -"PO-Revision-Date: 2016-12-06 08:59+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-10 07:09+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "Ortalama" @@ -47,12 +48,8 @@ msgid "Background color" msgstr "Arkaplan rengi" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -81,6 +78,7 @@ msgid "Dashboard" msgstr "Gösterge panosu" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "Gösterge parçası" @@ -114,7 +112,12 @@ msgid "Error" msgstr "Hata" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "Alan" @@ -131,12 +134,23 @@ msgid "Font color" msgstr "Font rengi" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "Fonksiyon" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "Gruplar" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -145,6 +159,14 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" @@ -161,20 +183,47 @@ msgid "Last Updated on" msgstr "Son güncellendi" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "Maksimum" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "'%s' nin en fazla değeri" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "orta değer" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "'%s' nin orta değeri" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "Minimum" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "'%s' nin en düşük değeri" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -186,20 +235,48 @@ msgid "Name" msgstr "Adı" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" -msgstr "Opsiyonel Alan Bilgileri" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -215,7 +292,8 @@ msgid "Success" msgstr "Başarılı" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "Toplam" @@ -239,7 +317,13 @@ msgid "Tile:" msgstr "Parça:" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "'%s' nin toplam değeri" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -248,3 +332,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "Kullanıcı" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "Değer" diff --git a/web_graph_improved/i18n/pt_PT.po b/web_graph_improved/i18n/pt_PT.po new file mode 100644 index 00000000..cedb3e81 --- /dev/null +++ b/web_graph_improved/i18n/pt_PT.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_widget_x2many_2d_matrix/i18n/pt_PT.po b/web_widget_x2many_2d_matrix/i18n/pt_PT.po new file mode 100644 index 00000000..f06229f9 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/pt_PT.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-10 07:07+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" From fd0b87443812591bf2c495470f3bb96b7c3693d9 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 21 Dec 2016 18:26:51 +0100 Subject: [PATCH 070/103] [ADD] web_x2m_defaults_from_previous --- web_x2m_defaults_from_previous/README.rst | 63 ++++++++++++++++++ web_x2m_defaults_from_previous/__init__.py | 3 + web_x2m_defaults_from_previous/__openerp__.py | 20 ++++++ .../demo/ir_ui_view.xml | 14 ++++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../src/js/web_x2m_defaults_from_previous.js | 41 ++++++++++++ .../views/templates.xml | 10 +++ 7 files changed, 151 insertions(+) create mode 100644 web_x2m_defaults_from_previous/README.rst create mode 100644 web_x2m_defaults_from_previous/__init__.py create mode 100644 web_x2m_defaults_from_previous/__openerp__.py create mode 100644 web_x2m_defaults_from_previous/demo/ir_ui_view.xml create mode 100644 web_x2m_defaults_from_previous/static/description/icon.png create mode 100644 web_x2m_defaults_from_previous/static/src/js/web_x2m_defaults_from_previous.js create mode 100644 web_x2m_defaults_from_previous/views/templates.xml diff --git a/web_x2m_defaults_from_previous/README.rst b/web_x2m_defaults_from_previous/README.rst new file mode 100644 index 00000000..46cad23e --- /dev/null +++ b/web_x2m_defaults_from_previous/README.rst @@ -0,0 +1,63 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============== +x2many defaults +=============== + +This module was written to allow you to use the previous line's input as defaults for the next line you add. + +Usage +===== + +#. on a x2many field, say ``options="{'web_x2m_defaults_from_previous': ['field1', 'field2']}"`` +#. after the first line of input, succeeding lines will have the last input's values as default +#. demo data adds this for the ACL list field in the groups form + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 + +Known issues / Roadmap +====================== + +* many2many fields are not yet supported + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Holger Brunn + +Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list `_ or the `appropriate specialized mailinglist `_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/web_x2m_defaults_from_previous/__init__.py b/web_x2m_defaults_from_previous/__init__.py new file mode 100644 index 00000000..fa85807b --- /dev/null +++ b/web_x2m_defaults_from_previous/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_x2m_defaults_from_previous/__openerp__.py b/web_x2m_defaults_from_previous/__openerp__.py new file mode 100644 index 00000000..5d5a6a48 --- /dev/null +++ b/web_x2m_defaults_from_previous/__openerp__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "x2many defaults", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Hidden/Dependency", + "summary": "Use previous input as default for next line", + "depends": [ + 'web', + ], + "demo": [ + "demo/ir_ui_view.xml", + ], + "data": [ + 'views/templates.xml', + ], +} diff --git a/web_x2m_defaults_from_previous/demo/ir_ui_view.xml b/web_x2m_defaults_from_previous/demo/ir_ui_view.xml new file mode 100644 index 00000000..f0c49d82 --- /dev/null +++ b/web_x2m_defaults_from_previous/demo/ir_ui_view.xml @@ -0,0 +1,14 @@ + + + + + res.groups + + + + {'web_x2m_defaults_from_previous': ['model_id', 'name']} + + + + + diff --git a/web_x2m_defaults_from_previous/static/description/icon.png b/web_x2m_defaults_from_previous/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/web_x2m_defaults_from_previous/static/src/js/web_x2m_defaults_from_previous.js b/web_x2m_defaults_from_previous/static/src/js/web_x2m_defaults_from_previous.js new file mode 100644 index 00000000..2924e474 --- /dev/null +++ b/web_x2m_defaults_from_previous/static/src/js/web_x2m_defaults_from_previous.js @@ -0,0 +1,41 @@ +//-*- coding: utf-8 -*- +//© 2016 Therp BV +//License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +openerp.web_x2m_defaults_from_previous = function(instance) +{ + instance.web.form.FieldOne2Many.include({ + build_context: function() + { + var self = this, + default_fields = + this.options.web_x2m_defaults_from_previous || [], + extra_context = {}, + result = this._super.apply(this, arguments); + if(!this.dataset.cache || !this.dataset.cache.length) + { + return result; + } + _.each(default_fields, function(field_name) + { + var value = self.dataset.cache[ + self.views[0].embedded_view.arch.attrs.editable == 'top' ? + 0 : + self.dataset.cache.length - 1 + ].values[field_name]; + if(_.isArray(value)) + { + value = value[0]; + } + extra_context[ + _.str.sprintf('default_%s', field_name) + ] = value; + }); + if(!_.isEmpty(extra_context)) + { + result.add(extra_context); + } + return result; + }, + }); +}; diff --git a/web_x2m_defaults_from_previous/views/templates.xml b/web_x2m_defaults_from_previous/views/templates.xml new file mode 100644 index 00000000..748e3201 --- /dev/null +++ b/web_x2m_defaults_from_previous/views/templates.xml @@ -0,0 +1,10 @@ + + + + + + From 57288da562c50265f8f54ae3683c64a24ac52beb Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 24 Dec 2016 01:43:22 -0500 Subject: [PATCH 071/103] OCA Transbot updated translations from Transifex --- web_ckeditor4/i18n/hu.po | 38 +++++++++++++++++++++++++++++++++++ web_ckeditor4/i18n/pl.po | 38 +++++++++++++++++++++++++++++++++++ web_dashboard_tile/i18n/it.po | 4 ++-- web_dashboard_tile/i18n/sk.po | 6 +++--- 4 files changed, 81 insertions(+), 5 deletions(-) create mode 100644 web_ckeditor4/i18n/hu.po create mode 100644 web_ckeditor4/i18n/pl.po diff --git a/web_ckeditor4/i18n/hu.po b/web_ckeditor4/i18n/hu.po new file mode 100644 index 00000000..24f1e0fa --- /dev/null +++ b/web_ckeditor4/i18n/hu.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/pl.po b/web_ckeditor4/i18n/pl.po new file mode 100644 index 00000000..96584ba7 --- /dev/null +++ b/web_ckeditor4/i18n/pl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_dashboard_tile/i18n/it.po b/web_dashboard_tile/i18n/it.po index 8670a65a..2b04eb9c 100644 --- a/web_dashboard_tile/i18n/it.po +++ b/web_dashboard_tile/i18n/it.po @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" +"PO-Revision-Date: 2016-12-23 08:32+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -290,7 +290,7 @@ msgstr "Sequenza" #: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 #, python-format msgid "Success" -msgstr "" +msgstr "Riuscito" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 diff --git a/web_dashboard_tile/i18n/sk.po b/web_dashboard_tile/i18n/sk.po index 15a8183d..88ebafb5 100644 --- a/web_dashboard_tile/i18n/sk.po +++ b/web_dashboard_tile/i18n/sk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"POT-Creation-Date: 2016-12-10 07:06+0000\n" +"PO-Revision-Date: 2016-12-22 20:40+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Aktívne" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 From f9eeff0ef31c22eca37a49f1383c3cbeab9a9d17 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 29 Dec 2016 02:34:10 +0100 Subject: [PATCH 072/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 17f4ccbb..321fdd45 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ addon | version | summary [web_widget_radio_tree](web_widget_radio_tree/) | 8.0.1.0.0 | Add radio buttons for records in tree. [web_widget_text_markdown](web_widget_text_markdown/) | 8.0.1.0.0 | web_widget_text_markdown [web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.1.0 | Show list fields as a matrix +[web_x2m_defaults_from_previous](web_x2m_defaults_from_previous/) | 8.0.1.0.0 | Use previous input as default for next line [web_x2m_filter](web_x2m_filter/) | 8.0.1.0.0 | Allows to define filters in x2many list fields Unported addons From 2562b159cf2348ab3b2eec8e4f986c69a7d69644 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 29 Dec 2016 04:42:38 +0100 Subject: [PATCH 073/103] [ADD] setup.py --- .../web_x2m_defaults_from_previous/odoo_addons/__init__.py | 1 + .../odoo_addons/web_x2m_defaults_from_previous | 1 + setup/web_x2m_defaults_from_previous/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_x2m_defaults_from_previous/odoo_addons/__init__.py create mode 120000 setup/web_x2m_defaults_from_previous/odoo_addons/web_x2m_defaults_from_previous create mode 100644 setup/web_x2m_defaults_from_previous/setup.py diff --git a/setup/web_x2m_defaults_from_previous/odoo_addons/__init__.py b/setup/web_x2m_defaults_from_previous/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_x2m_defaults_from_previous/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_x2m_defaults_from_previous/odoo_addons/web_x2m_defaults_from_previous b/setup/web_x2m_defaults_from_previous/odoo_addons/web_x2m_defaults_from_previous new file mode 120000 index 00000000..0da4538c --- /dev/null +++ b/setup/web_x2m_defaults_from_previous/odoo_addons/web_x2m_defaults_from_previous @@ -0,0 +1 @@ +../../../web_x2m_defaults_from_previous \ No newline at end of file diff --git a/setup/web_x2m_defaults_from_previous/setup.py b/setup/web_x2m_defaults_from_previous/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_x2m_defaults_from_previous/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 31dd9eddd922b08b9b0527832032391621d5e0ff Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 31 Dec 2016 04:52:30 -0500 Subject: [PATCH 074/103] OCA Transbot updated translations from Transifex --- help_online/i18n/da.po | 6 +- help_online/i18n/en_AU.po | 236 +++++++++++++ help_online/i18n/es_AR.po | 6 +- help_online/i18n/es_CL.po | 236 +++++++++++++ help_online/i18n/es_CO.po | 6 +- help_online/i18n/es_CR.po | 10 +- help_online/i18n/es_DO.po | 236 +++++++++++++ help_online/i18n/es_PY.po | 6 +- help_online/i18n/eu.po | 6 +- help_online/i18n/fa.po | 6 +- help_online/i18n/fr_FR.po | 236 +++++++++++++ help_online/i18n/he.po | 6 +- help_online/i18n/hi.po | 236 +++++++++++++ help_online/i18n/hr_HR.po | 6 +- help_online/i18n/id.po | 236 +++++++++++++ help_online/i18n/ko.po | 6 +- help_online/i18n/lo.po | 236 +++++++++++++ help_online/i18n/lt_LT.po | 236 +++++++++++++ help_online/i18n/lv.po | 6 +- help_online/i18n/nb_NO.po | 236 +++++++++++++ help_online/i18n/ro.po | 18 +- help_online/i18n/ru.po | 14 +- help_online/i18n/sk.po | 6 +- help_online/i18n/sr.po | 6 +- help_online/i18n/tr.po | 12 +- help_online/i18n/uk.po | 6 +- help_online/i18n/vi_VN.po | 236 +++++++++++++ web_advanced_search_wildcard/i18n/tr.po | 26 ++ web_ckeditor4/i18n/es_CL.po | 38 ++ web_ckeditor4/i18n/es_DO.po | 38 ++ web_ckeditor4/i18n/id.po | 38 ++ web_ckeditor4/i18n/nb_NO.po | 38 ++ web_ckeditor4/i18n/ro.po | 38 ++ web_ckeditor4/i18n/ru.po | 38 ++ web_ckeditor4/i18n/sr.po | 38 ++ web_ckeditor4/i18n/tr.po | 37 +- web_dashboard_tile/i18n/es_CR.po | 10 +- web_dashboard_tile/i18n/fr_CA.po | 16 +- web_dashboard_tile/i18n/lt_LT.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/nb_NO.po | 330 ++++++++++++++++++ web_dashboard_tile/i18n/ro.po | 18 +- web_dashboard_tile/i18n/ru.po | 14 +- web_dashboard_tile/i18n/tr.po | 44 +-- web_dashboard_tile/i18n/vi_VN.po | 330 ++++++++++++++++++ web_easy_switch_company/i18n/am.po | 33 ++ web_easy_switch_company/i18n/el_GR.po | 33 ++ web_easy_switch_company/i18n/fr_FR.po | 33 ++ web_easy_switch_company/i18n/hr_HR.po | 33 ++ web_easy_switch_company/i18n/nb.po | 33 ++ web_easy_switch_company/i18n/nb_NO.po | 33 ++ web_easy_switch_company/i18n/nl.po | 33 ++ web_easy_switch_company/i18n/nl_BE.po | 33 ++ web_easy_switch_company/i18n/ro.po | 33 ++ web_easy_switch_company/i18n/sk.po | 33 ++ web_easy_switch_company/i18n/zh_CN.po | 33 ++ web_favicon/i18n/am.po | 63 ++++ web_favicon/i18n/el_GR.po | 63 ++++ web_favicon/i18n/fr_FR.po | 63 ++++ web_favicon/i18n/hr_HR.po | 63 ++++ web_favicon/i18n/nb.po | 63 ++++ web_favicon/i18n/nb_NO.po | 63 ++++ web_favicon/i18n/nl.po | 63 ++++ web_favicon/i18n/nl_BE.po | 63 ++++ web_favicon/i18n/ro.po | 63 ++++ web_favicon/i18n/sk.po | 63 ++++ web_favicon/i18n/tr.po | 23 +- web_favicon/i18n/zh_CN.po | 63 ++++ web_hideleftmenu/i18n/tr.po | 26 ++ web_m2x_options/i18n/tr.po | 8 +- web_offline_warning/i18n/tr.po | 11 +- web_option_auto_color/i18n/tr.po | 28 ++ web_search_autocomplete_prefetch/i18n/tr.po | 24 ++ web_search_datetime_completion/i18n/tr.po | 26 ++ web_shortcuts/i18n/es_CL.po | 80 +++++ web_shortcuts/i18n/es_CR.po | 8 +- web_shortcuts/i18n/es_DO.po | 80 +++++ web_shortcuts/i18n/fr_CA.po | 80 +++++ web_shortcuts/i18n/id.po | 80 +++++ web_shortcuts/i18n/lt_LT.po | 80 +++++ web_shortcuts/i18n/nb_NO.po | 80 +++++ web_shortcuts/i18n/ro.po | 28 +- web_shortcuts/i18n/ru.po | 38 +- web_shortcuts/i18n/sr.po | 80 +++++ web_shortcuts/i18n/tr.po | 34 +- web_shortcuts/i18n/vi_VN.po | 80 +++++ web_switch_company_warning/i18n/tr.po | 28 +- web_timeline/i18n/tr.po | 8 +- web_translate_dialog/i18n/en_AU.po | 53 +++ web_translate_dialog/i18n/es_AR.po | 53 +++ web_translate_dialog/i18n/es_CL.po | 53 +++ web_translate_dialog/i18n/es_CO.po | 53 +++ web_translate_dialog/i18n/es_DO.po | 53 +++ web_translate_dialog/i18n/eu.po | 53 +++ web_translate_dialog/i18n/fa.po | 53 +++ web_translate_dialog/i18n/fr_FR.po | 53 +++ web_translate_dialog/i18n/he.po | 53 +++ web_translate_dialog/i18n/hi.po | 53 +++ web_translate_dialog/i18n/hr_HR.po | 53 +++ web_translate_dialog/i18n/id.po | 53 +++ web_translate_dialog/i18n/ko.po | 53 +++ web_translate_dialog/i18n/lo.po | 53 +++ web_translate_dialog/i18n/lv.po | 53 +++ web_translate_dialog/i18n/nb_NO.po | 53 +++ web_translate_dialog/i18n/sk.po | 53 +++ web_translate_dialog/i18n/sr.po | 53 +++ web_translate_dialog/i18n/uk.po | 53 +++ web_tree_dynamic_colored_field/i18n/tr.po | 26 ++ web_widget_digitized_signature/i18n/tr.po | 40 +++ .../i18n/tr.po | 41 ++- web_widget_image_download/i18n/tr.po | 26 ++ web_widget_mail_send_odoo/i18n/tr.po | 40 +++ web_widget_one2many_tags/i18n/tr.po | 27 ++ web_widget_pattern/i18n/tr.po | 24 ++ web_x2m_defaults_from_previous/i18n/tr.po | 24 ++ web_x2m_filter/i18n/tr.po | 28 ++ 115 files changed, 7005 insertions(+), 177 deletions(-) create mode 100644 help_online/i18n/en_AU.po create mode 100644 help_online/i18n/es_CL.po create mode 100644 help_online/i18n/es_DO.po create mode 100644 help_online/i18n/fr_FR.po create mode 100644 help_online/i18n/hi.po create mode 100644 help_online/i18n/id.po create mode 100644 help_online/i18n/lo.po create mode 100644 help_online/i18n/lt_LT.po create mode 100644 help_online/i18n/nb_NO.po create mode 100644 help_online/i18n/vi_VN.po create mode 100644 web_advanced_search_wildcard/i18n/tr.po create mode 100644 web_ckeditor4/i18n/es_CL.po create mode 100644 web_ckeditor4/i18n/es_DO.po create mode 100644 web_ckeditor4/i18n/id.po create mode 100644 web_ckeditor4/i18n/nb_NO.po create mode 100644 web_ckeditor4/i18n/ro.po create mode 100644 web_ckeditor4/i18n/ru.po create mode 100644 web_ckeditor4/i18n/sr.po create mode 100644 web_dashboard_tile/i18n/lt_LT.po create mode 100644 web_dashboard_tile/i18n/nb_NO.po create mode 100644 web_dashboard_tile/i18n/vi_VN.po create mode 100644 web_easy_switch_company/i18n/am.po create mode 100644 web_easy_switch_company/i18n/el_GR.po create mode 100644 web_easy_switch_company/i18n/fr_FR.po create mode 100644 web_easy_switch_company/i18n/hr_HR.po create mode 100644 web_easy_switch_company/i18n/nb.po create mode 100644 web_easy_switch_company/i18n/nb_NO.po create mode 100644 web_easy_switch_company/i18n/nl.po create mode 100644 web_easy_switch_company/i18n/nl_BE.po create mode 100644 web_easy_switch_company/i18n/ro.po create mode 100644 web_easy_switch_company/i18n/sk.po create mode 100644 web_easy_switch_company/i18n/zh_CN.po create mode 100644 web_favicon/i18n/am.po create mode 100644 web_favicon/i18n/el_GR.po create mode 100644 web_favicon/i18n/fr_FR.po create mode 100644 web_favicon/i18n/hr_HR.po create mode 100644 web_favicon/i18n/nb.po create mode 100644 web_favicon/i18n/nb_NO.po create mode 100644 web_favicon/i18n/nl.po create mode 100644 web_favicon/i18n/nl_BE.po create mode 100644 web_favicon/i18n/ro.po create mode 100644 web_favicon/i18n/sk.po create mode 100644 web_favicon/i18n/zh_CN.po create mode 100644 web_hideleftmenu/i18n/tr.po create mode 100644 web_option_auto_color/i18n/tr.po create mode 100644 web_search_autocomplete_prefetch/i18n/tr.po create mode 100644 web_search_datetime_completion/i18n/tr.po create mode 100644 web_shortcuts/i18n/es_CL.po create mode 100644 web_shortcuts/i18n/es_DO.po create mode 100644 web_shortcuts/i18n/fr_CA.po create mode 100644 web_shortcuts/i18n/id.po create mode 100644 web_shortcuts/i18n/lt_LT.po create mode 100644 web_shortcuts/i18n/nb_NO.po create mode 100644 web_shortcuts/i18n/sr.po create mode 100644 web_shortcuts/i18n/vi_VN.po create mode 100644 web_translate_dialog/i18n/en_AU.po create mode 100644 web_translate_dialog/i18n/es_AR.po create mode 100644 web_translate_dialog/i18n/es_CL.po create mode 100644 web_translate_dialog/i18n/es_CO.po create mode 100644 web_translate_dialog/i18n/es_DO.po create mode 100644 web_translate_dialog/i18n/eu.po create mode 100644 web_translate_dialog/i18n/fa.po create mode 100644 web_translate_dialog/i18n/fr_FR.po create mode 100644 web_translate_dialog/i18n/he.po create mode 100644 web_translate_dialog/i18n/hi.po create mode 100644 web_translate_dialog/i18n/hr_HR.po create mode 100644 web_translate_dialog/i18n/id.po create mode 100644 web_translate_dialog/i18n/ko.po create mode 100644 web_translate_dialog/i18n/lo.po create mode 100644 web_translate_dialog/i18n/lv.po create mode 100644 web_translate_dialog/i18n/nb_NO.po create mode 100644 web_translate_dialog/i18n/sk.po create mode 100644 web_translate_dialog/i18n/sr.po create mode 100644 web_translate_dialog/i18n/uk.po create mode 100644 web_tree_dynamic_colored_field/i18n/tr.po create mode 100644 web_widget_digitized_signature/i18n/tr.po create mode 100644 web_widget_image_download/i18n/tr.po create mode 100644 web_widget_mail_send_odoo/i18n/tr.po create mode 100644 web_widget_one2many_tags/i18n/tr.po create mode 100644 web_widget_pattern/i18n/tr.po create mode 100644 web_x2m_defaults_from_previous/i18n/tr.po create mode 100644 web_x2m_filter/i18n/tr.po diff --git a/help_online/i18n/da.po b/help_online/i18n/da.po index 1dea7dd0..3e8dafbb 100644 --- a/help_online/i18n/da.po +++ b/help_online/i18n/da.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-22 14:08+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Annuller" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/en_AU.po b/help_online/i18n/en_AU.po new file mode 100644 index 00000000..8601e07c --- /dev/null +++ b/help_online/i18n/en_AU.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-web-8-0/language/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/es_AR.po b/help_online/i18n/es_AR.po index 49618c6c..08d46602 100644 --- a/help_online/i18n/es_AR.po +++ b/help_online/i18n/es_AR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/es_CL.po b/help_online/i18n/es_CL.po new file mode 100644 index 00000000..a3a8fef9 --- /dev/null +++ b/help_online/i18n/es_CL.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "o" diff --git a/help_online/i18n/es_CO.po b/help_online/i18n/es_CO.po index 693fe913..c3dfed99 100644 --- a/help_online/i18n/es_CO.po +++ b/help_online/i18n/es_CO.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/es_CR.po b/help_online/i18n/es_CR.po index 65b824eb..caa2534e 100644 --- a/help_online/i18n/es_CR.po +++ b/help_online/i18n/es_CR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -47,7 +47,7 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 @@ -147,13 +147,13 @@ msgstr "" #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualización por" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualización en" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 diff --git a/help_online/i18n/es_DO.po b/help_online/i18n/es_DO.po new file mode 100644 index 00000000..929e6a40 --- /dev/null +++ b/help_online/i18n/es_DO.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "o" diff --git a/help_online/i18n/es_PY.po b/help_online/i18n/es_PY.po index a274ff0f..bc3fd8e0 100644 --- a/help_online/i18n/es_PY.po +++ b/help_online/i18n/es_PY.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:21+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/eu.po b/help_online/i18n/eu.po index 20afe43e..a4ae2fe2 100644 --- a/help_online/i18n/eu.po +++ b/help_online/i18n/eu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Ezeztatu" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/fa.po b/help_online/i18n/fa.po index 912522fb..65ec02f2 100644 --- a/help_online/i18n/fa.po +++ b/help_online/i18n/fa.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "لغو" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/fr_FR.po b/help_online/i18n/fr_FR.po new file mode 100644 index 00000000..4c08481b --- /dev/null +++ b/help_online/i18n/fr_FR.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:20+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/he.po b/help_online/i18n/he.po index ff59f352..3da7b696 100644 --- a/help_online/i18n/he.po +++ b/help_online/i18n/he.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "בטל" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/hi.po b/help_online/i18n/hi.po new file mode 100644 index 00000000..5125d465 --- /dev/null +++ b/help_online/i18n/hi.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-web-8-0/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "रद्द" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/hr_HR.po b/help_online/i18n/hr_HR.po index 93a5e438..bf8e9f36 100644 --- a/help_online/i18n/hr_HR.po +++ b/help_online/i18n/hr_HR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Otkaži" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/id.po b/help_online/i18n/id.po new file mode 100644 index 00000000..84bc976a --- /dev/null +++ b/help_online/i18n/id.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Batalkan" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "atau" diff --git a/help_online/i18n/ko.po b/help_online/i18n/ko.po index 093efeba..106ab3f1 100644 --- a/help_online/i18n/ko.po +++ b/help_online/i18n/ko.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "취소" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/lo.po b/help_online/i18n/lo.po new file mode 100644 index 00000000..8c1f829b --- /dev/null +++ b/help_online/i18n/lo.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lao (http://www.transifex.com/oca/OCA-web-8-0/language/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/lt_LT.po b/help_online/i18n/lt_LT.po new file mode 100644 index 00000000..fb85133e --- /dev/null +++ b/help_online/i18n/lt_LT.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-web-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/lv.po b/help_online/i18n/lv.po index 923588dd..778a21dc 100644 --- a/help_online/i18n/lv.po +++ b/help_online/i18n/lv.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:48+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Atcelt" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/nb_NO.po b/help_online/i18n/nb_NO.po new file mode 100644 index 00000000..38fedb59 --- /dev/null +++ b/help_online/i18n/nb_NO.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Lukk" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/help_online/i18n/ro.po b/help_online/i18n/ro.po index 37571bfb..818ef2a0 100644 --- a/help_online/i18n/ro.po +++ b/help_online/i18n/ro.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" "MIME-Version: 1.0\n" @@ -47,19 +47,19 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creat de" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creat la" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nume Afişat" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -141,19 +141,19 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Ultima actualizare în" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualizare făcută de" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualizare la" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 diff --git a/help_online/i18n/ru.po b/help_online/i18n/ru.po index fff0ddfc..131a9524 100644 --- a/help_online/i18n/ru.po +++ b/help_online/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -47,13 +47,13 @@ msgstr "" #: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 #: field:import.help.wizard,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Создано" #. module: help_online #: field:export.help.wizard,create_date:0 field:help.online,create_date:0 #: field:import.help.wizard,create_date:0 msgid "Created on" -msgstr "" +msgstr "Создан" #. module: help_online #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 @@ -115,7 +115,7 @@ msgstr "" #: field:export.help.wizard,id:0 field:help.online,id:0 #: field:import.help.wizard,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: help_online #: view:import.help.wizard:help_online.import_help_wizard_view @@ -147,13 +147,13 @@ msgstr "" #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 #: field:import.help.wizard,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Последний раз обновлено" #. module: help_online #: field:export.help.wizard,write_date:0 field:help.online,write_date:0 #: field:import.help.wizard,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Последний раз обновлено" #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:260 diff --git a/help_online/i18n/sk.po b/help_online/i18n/sk.po index ae95bdb5..e6103d71 100644 --- a/help_online/i18n/sk.po +++ b/help_online/i18n/sk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Zrušiť" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/sr.po b/help_online/i18n/sr.po index f055f295..ba86710d 100644 --- a/help_online/i18n/sr.po +++ b/help_online/i18n/sr.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Otkaži" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/tr.po b/help_online/i18n/tr.po index e6ae5192..3e71a1b5 100644 --- a/help_online/i18n/tr.po +++ b/help_online/i18n/tr.po @@ -3,6 +3,7 @@ # * help_online # # Translators: +# Ahmet Altinisik , 2015 # Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015 # Armando Vulcano Junior , 2015 @@ -18,13 +19,14 @@ # Thomas A. Jaeger, 2015 # Yael Terrettaz, 2015 # yterrettaz, 2015 +# yterrettaz, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:26+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 21:59+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +76,7 @@ msgstr "Oluşturuldu" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Görünen İsim" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -156,7 +158,7 @@ msgstr "Online yardımı İçe aktar" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Son değişiklik" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 diff --git a/help_online/i18n/uk.po b/help_online/i18n/uk.po index 6e4efd1c..61728b2c 100644 --- a/help_online/i18n/uk.po +++ b/help_online/i18n/uk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:93 #, python-format msgid "Cancel" -msgstr "" +msgstr "Скасувати" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_online/i18n/vi_VN.po b/help_online/i18n/vi_VN.po new file mode 100644 index 00000000..7f74c5de --- /dev/null +++ b/help_online/i18n/vi_VN.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-web-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "Hủy" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/web_advanced_search_wildcard/i18n/tr.po b/web_advanced_search_wildcard/i18n/tr.po new file mode 100644 index 00000000..bb4d2fe5 --- /dev/null +++ b/web_advanced_search_wildcard/i18n/tr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_advanced_search_wildcard +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:49+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_advanced_search_wildcard +#. openerp-web +#: code:addons/web_advanced_search_wildcard/static/src/js/search.js:4 +#, python-format +msgid "matches" +msgstr "Eşleşmeler" diff --git a/web_ckeditor4/i18n/es_CL.po b/web_ckeditor4/i18n/es_CL.po new file mode 100644 index 00000000..2dff396c --- /dev/null +++ b/web_ckeditor4/i18n/es_CL.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/es_DO.po b/web_ckeditor4/i18n/es_DO.po new file mode 100644 index 00000000..e67f1c83 --- /dev/null +++ b/web_ckeditor4/i18n/es_DO.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/id.po b/web_ckeditor4/i18n/id.po new file mode 100644 index 00000000..b883dd06 --- /dev/null +++ b/web_ckeditor4/i18n/id.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/nb_NO.po b/web_ckeditor4/i18n/nb_NO.po new file mode 100644 index 00000000..da932a51 --- /dev/null +++ b/web_ckeditor4/i18n/nb_NO.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/ro.po b/web_ckeditor4/i18n/ro.po new file mode 100644 index 00000000..9f9a59a8 --- /dev/null +++ b/web_ckeditor4/i18n/ro.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/ru.po b/web_ckeditor4/i18n/ru.po new file mode 100644 index 00000000..43a625a1 --- /dev/null +++ b/web_ckeditor4/i18n/ru.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/sr.po b/web_ckeditor4/i18n/sr.po new file mode 100644 index 00000000..79fb1915 --- /dev/null +++ b/web_ckeditor4/i18n/sr.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_ckeditor4/i18n/tr.po b/web_ckeditor4/i18n/tr.po index 906f0796..56d007dc 100644 --- a/web_ckeditor4/i18n/tr.po +++ b/web_ckeditor4/i18n/tr.po @@ -3,14 +3,33 @@ # * web_ckeditor4 # # Translators: -# Ahmet Altınışık , 2015 +# Accounts-Payable - Alkemics, 2015 +# Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# Chen-Do LU , 2015 +# danimaribeiro , 2016 +# Dimitrios Glentadakis , 2013-2014, 2015-2016 +# Efstathios Iosifidis , 2014 +# FIRST AUTHOR , 2012,2014 +# François Breysse , 2015 +# Giacomo , 2015 +# Guewen Baconnier , 2015 +# Hotellook, 2014 +# Jim Spentzos, 2014 +# Matjaž Mozetič , 2015 +# Maxime Chambreuil , 2015 +# njeudy , 2015 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-08 21:34+0000\n" -"PO-Revision-Date: 2015-12-30 22:16+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:45+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,11 +37,21 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 msgid "ID" msgstr "ID" +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch msgid "Monkeypatches for CKEditor" diff --git a/web_dashboard_tile/i18n/es_CR.po b/web_dashboard_tile/i18n/es_CR.po index f28e653e..a3d97b71 100644 --- a/web_dashboard_tile/i18n/es_CR.po +++ b/web_dashboard_tile/i18n/es_CR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: web_dashboard_tile #: field:tile.tile,create_date:0 @@ -166,12 +166,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualización por" #. module: web_dashboard_tile #: field:tile.tile,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualización en" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view diff --git a/web_dashboard_tile/i18n/fr_CA.po b/web_dashboard_tile/i18n/fr_CA.po index b327ab3d..ab2173fa 100644 --- a/web_dashboard_tile/i18n/fr_CA.po +++ b/web_dashboard_tile/i18n/fr_CA.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 12:24+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -54,12 +54,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Créé par" #. module: web_dashboard_tile #: field:tile.tile,create_date:0 msgid "Created on" -msgstr "" +msgstr "Créé le" #. module: web_dashboard_tile #: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile @@ -88,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Afficher le nom" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -148,7 +148,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" -msgstr "" +msgstr "Identifiant" #. module: web_dashboard_tile #: help:tile.tile,group_ids:0 @@ -166,12 +166,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Dernière mise à jour par" #. module: web_dashboard_tile #: field:tile.tile,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Dernière mise à jour le" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view diff --git a/web_dashboard_tile/i18n/lt_LT.po b/web_dashboard_tile/i18n/lt_LT.po new file mode 100644 index 00000000..276a9136 --- /dev/null +++ b/web_dashboard_tile/i18n/lt_LT.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-web-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/nb_NO.po b/web_dashboard_tile/i18n/nb_NO.po new file mode 100644 index 00000000..b17bdbaa --- /dev/null +++ b/web_dashboard_tile/i18n/nb_NO.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_dashboard_tile/i18n/ro.po b/web_dashboard_tile/i18n/ro.po index 28854482..77722959 100644 --- a/web_dashboard_tile/i18n/ro.po +++ b/web_dashboard_tile/i18n/ro.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:19+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" "MIME-Version: 1.0\n" @@ -54,12 +54,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creat de" #. module: web_dashboard_tile #: field:tile.tile,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creat la" #. module: web_dashboard_tile #: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile @@ -88,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nume Afişat" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -148,7 +148,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: web_dashboard_tile #: help:tile.tile,group_ids:0 @@ -161,17 +161,17 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Ultima actualizare în" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualizare făcută de" #. module: web_dashboard_tile #: field:tile.tile,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualizare la" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view diff --git a/web_dashboard_tile/i18n/ru.po b/web_dashboard_tile/i18n/ru.po index cdcc866c..07ee0978 100644 --- a/web_dashboard_tile/i18n/ru.po +++ b/web_dashboard_tile/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -54,12 +54,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Создано" #. module: web_dashboard_tile #: field:tile.tile,create_date:0 msgid "Created on" -msgstr "" +msgstr "Создан" #. module: web_dashboard_tile #: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile @@ -148,7 +148,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: web_dashboard_tile #: help:tile.tile,group_ids:0 @@ -166,12 +166,12 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Последний раз обновлено" #. module: web_dashboard_tile #: field:tile.tile,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Последний раз обновлено" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view diff --git a/web_dashboard_tile/i18n/tr.po b/web_dashboard_tile/i18n/tr.po index 725c1be8..af43e0af 100644 --- a/web_dashboard_tile/i18n/tr.po +++ b/web_dashboard_tile/i18n/tr.po @@ -3,7 +3,7 @@ # * web_dashboard_tile # # Translators: -# Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015 # Antonio Trueba, 2016 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 21:18+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,7 +34,7 @@ msgstr "Eylem" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Aktif" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 @@ -51,7 +51,7 @@ msgstr "Arkaplan rengi" #: selection:tile.tile,primary_function:0 #: selection:tile.tile,secondary_function:0 msgid "Count" -msgstr "" +msgstr "Say" #. module: web_dashboard_tile #. openerp-web @@ -97,7 +97,7 @@ msgstr "Görünüm" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Görünen İsim" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -114,7 +114,7 @@ msgstr "Hata" #. module: web_dashboard_tile #: field:tile.tile,error:0 msgid "Error Details" -msgstr "" +msgstr "Hata Detayları" #. module: web_dashboard_tile #: field:tile.tile,primary_field_id:0 @@ -136,7 +136,7 @@ msgstr "Font rengi" #. module: web_dashboard_tile #: field:tile.tile,primary_format:0 msgid "Format" -msgstr "" +msgstr "Biçim" #. module: web_dashboard_tile #: field:tile.tile,primary_function:0 @@ -152,7 +152,7 @@ msgstr "Gruplar" #. module: web_dashboard_tile #: field:tile.tile,primary_helper:0 msgid "Helper" -msgstr "" +msgstr "Yardımcı" #. module: web_dashboard_tile #: field:tile.tile,id:0 @@ -165,12 +165,12 @@ msgid "" "If this field is set, only users of this group can view this tile. Please " "note that it will only work for global tiles (that is, when User field is " "left empty)" -msgstr "" +msgstr "Eğer bu alan işaretlenirse, sadece bu grubun kullanıcıları bu paneli görür. Sadece global panellerde çalışır. (yani kullanıcı alanı boş olan paneller)" #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Son değişiklik" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -185,7 +185,7 @@ msgstr "Son güncellendi" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view msgid "Main Value" -msgstr "" +msgstr "Ana Değer" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 @@ -238,46 +238,46 @@ msgstr "Adı" #: code:addons/web_dashboard_tile/models/tile_tile.py:31 #, python-format msgid "Number of records" -msgstr "" +msgstr "Kayıtların Adedi" #. module: web_dashboard_tile #: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." -msgstr "" +msgstr "Seçilmiş modelden bir alan seçin." #. module: web_dashboard_tile #: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 msgid "" "Python Format String valid with str.format()\n" "ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." -msgstr "" +msgstr "Python biçim stringi str.format() fonsiyonu ile\nör:eğer değer 1000 ise. '{:,} Kg' çıktı olarak '1,000 Kg' verir" #. module: web_dashboard_tile #: field:tile.tile,secondary_field_id:0 msgid "Secondary Field" -msgstr "" +msgstr "İkincil Alan" #. module: web_dashboard_tile #: field:tile.tile,secondary_format:0 msgid "Secondary Format" -msgstr "" +msgstr "Akincil Biçim" #. module: web_dashboard_tile #: field:tile.tile,secondary_function:0 msgid "Secondary Function" -msgstr "" +msgstr "İkincil Fonksiyon" #. module: web_dashboard_tile #: field:tile.tile,secondary_helper:0 msgid "Secondary Helper" -msgstr "" +msgstr "İkincil Yardımcı" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view #: field:tile.tile,secondary_value:0 msgid "Secondary Value" -msgstr "" +msgstr "İkincil Değer" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 @@ -326,7 +326,7 @@ msgstr "'%s' nin toplam değeri" #: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." -msgstr "" +msgstr "Uygulanmamış Özellik. Etkin alanı kapalı iken arayın." #. module: web_dashboard_tile #: field:tile.tile,user_id:0 diff --git a/web_dashboard_tile/i18n/vi_VN.po b/web_dashboard_tile/i18n/vi_VN.po new file mode 100644 index 00000000..eeea301b --- /dev/null +++ b/web_dashboard_tile/i18n/vi_VN.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-web-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_easy_switch_company/i18n/am.po b/web_easy_switch_company/i18n/am.po new file mode 100644 index 00000000..4048aa81 --- /dev/null +++ b/web_easy_switch_company/i18n/am.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "ኩባንያዎች" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/el_GR.po b/web_easy_switch_company/i18n/el_GR.po new file mode 100644 index 00000000..cab7af2c --- /dev/null +++ b/web_easy_switch_company/i18n/el_GR.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Εταιρίες" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/fr_FR.po b/web_easy_switch_company/i18n/fr_FR.po new file mode 100644 index 00000000..39b5ee46 --- /dev/null +++ b/web_easy_switch_company/i18n/fr_FR.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/hr_HR.po b/web_easy_switch_company/i18n/hr_HR.po new file mode 100644 index 00000000..e23655c1 --- /dev/null +++ b/web_easy_switch_company/i18n/hr_HR.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/nb.po b/web_easy_switch_company/i18n/nb.po new file mode 100644 index 00000000..05864a36 --- /dev/null +++ b/web_easy_switch_company/i18n/nb.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/nb_NO.po b/web_easy_switch_company/i18n/nb_NO.po new file mode 100644 index 00000000..20b725b9 --- /dev/null +++ b/web_easy_switch_company/i18n/nb_NO.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/nl.po b/web_easy_switch_company/i18n/nl.po new file mode 100644 index 00000000..a1c50e6f --- /dev/null +++ b/web_easy_switch_company/i18n/nl.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/nl_BE.po b/web_easy_switch_company/i18n/nl_BE.po new file mode 100644 index 00000000..3b9b74c3 --- /dev/null +++ b/web_easy_switch_company/i18n/nl_BE.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/ro.po b/web_easy_switch_company/i18n/ro.po new file mode 100644 index 00000000..d0065ea7 --- /dev/null +++ b/web_easy_switch_company/i18n/ro.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Companii" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/sk.po b/web_easy_switch_company/i18n/sk.po new file mode 100644 index 00000000..2f0c68f0 --- /dev/null +++ b/web_easy_switch_company/i18n/sk.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_easy_switch_company/i18n/zh_CN.po b/web_easy_switch_company/i18n/zh_CN.po new file mode 100644 index 00000000..dd926802 --- /dev/null +++ b/web_easy_switch_company/i18n/zh_CN.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_favicon/i18n/am.po b/web_favicon/i18n/am.po new file mode 100644 index 00000000..e9117c9b --- /dev/null +++ b/web_favicon/i18n/am.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "ኩባንያዎች" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/el_GR.po b/web_favicon/i18n/el_GR.po new file mode 100644 index 00000000..0cbbf23a --- /dev/null +++ b/web_favicon/i18n/el_GR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Εταιρίες" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/fr_FR.po b/web_favicon/i18n/fr_FR.po new file mode 100644 index 00000000..e0f30207 --- /dev/null +++ b/web_favicon/i18n/fr_FR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/hr_HR.po b/web_favicon/i18n/hr_HR.po new file mode 100644 index 00000000..4cf0ec21 --- /dev/null +++ b/web_favicon/i18n/hr_HR.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/nb.po b/web_favicon/i18n/nb.po new file mode 100644 index 00000000..2b4b3076 --- /dev/null +++ b/web_favicon/i18n/nb.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/nb_NO.po b/web_favicon/i18n/nb_NO.po new file mode 100644 index 00000000..b4475bfa --- /dev/null +++ b/web_favicon/i18n/nb_NO.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/nl.po b/web_favicon/i18n/nl.po new file mode 100644 index 00000000..0d47dcdb --- /dev/null +++ b/web_favicon/i18n/nl.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/nl_BE.po b/web_favicon/i18n/nl_BE.po new file mode 100644 index 00000000..825ea774 --- /dev/null +++ b/web_favicon/i18n/nl_BE.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/ro.po b/web_favicon/i18n/ro.po new file mode 100644 index 00000000..265c6a30 --- /dev/null +++ b/web_favicon/i18n/ro.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Companii" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/sk.po b/web_favicon/i18n/sk.po new file mode 100644 index 00000000..88341741 --- /dev/null +++ b/web_favicon/i18n/sk.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/tr.po b/web_favicon/i18n/tr.po index 0f8cf023..be9bc308 100644 --- a/web_favicon/i18n/tr.po +++ b/web_favicon/i18n/tr.po @@ -3,13 +3,14 @@ # * web_favicon # # Translators: +# Ahmet Altinisik , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 08:27+0000\n" -"PO-Revision-Date: 2016-04-07 13:51+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:57+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,39 +26,39 @@ msgstr "Şirketler" #. module: web_favicon #: view:res.company:web_favicon.view_company_form msgid "Configuration" -msgstr "" +msgstr "Yapılandırma" #. module: web_favicon #: view:res.company:web_favicon.view_company_form msgid "Favicon" -msgstr "" +msgstr "Favicon" #. module: web_favicon #: field:res.company,favicon_backend:0 msgid "Favicon backend" -msgstr "" +msgstr "Arka taraf Favicon'u" #. module: web_favicon #: field:res.company,favicon_backend_mimetype:0 msgid "Favicon backend mimetype" -msgstr "" +msgstr "Arka taraf Favicon mimetype'ı" #. module: web_favicon #: help:res.company,favicon_backend_mimetype:0 msgid "Set the mimetype of your file." -msgstr "" +msgstr "Dosyanızın tipini ayarlayın" #. module: web_favicon #: selection:res.company,favicon_backend_mimetype:0 msgid "image/gif" -msgstr "" +msgstr "image/gif" #. module: web_favicon #: selection:res.company,favicon_backend_mimetype:0 msgid "image/png" -msgstr "" +msgstr "image/png" #. module: web_favicon #: selection:res.company,favicon_backend_mimetype:0 msgid "image/x-icon" -msgstr "" +msgstr "image/x-icon" diff --git a/web_favicon/i18n/zh_CN.po b/web_favicon/i18n/zh_CN.po new file mode 100644 index 00000000..56113a38 --- /dev/null +++ b/web_favicon/i18n/zh_CN.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_hideleftmenu/i18n/tr.po b/web_hideleftmenu/i18n/tr.po new file mode 100644 index 00000000..7f560f80 --- /dev/null +++ b/web_hideleftmenu/i18n/tr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_hideleftmenu +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:58+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_hideleftmenu +#. openerp-web +#: code:addons/web_hideleftmenu/static/src/xml/lib.xml:7 +#, python-format +msgid "Hide/Show Menu" +msgstr "Menüyü Gizle/Göster" diff --git a/web_m2x_options/i18n/tr.po b/web_m2x_options/i18n/tr.po index 0cc462b8..e855e94a 100644 --- a/web_m2x_options/i18n/tr.po +++ b/web_m2x_options/i18n/tr.po @@ -3,7 +3,7 @@ # * web_m2x_options # # Translators: -# Ahmet Altinisik , 2015 +# Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015-2016 # Ahmet Altinisik , 2015 # Antonio Trueba, 2016 @@ -44,8 +44,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:59+0000\n" "Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" @@ -73,7 +73,7 @@ msgstr "Oluştur ve düzenle..." #. module: web_m2x_options #: field:ir.model,disable_quick_create:0 msgid "Disable quick create" -msgstr "" +msgstr "Hızlı oluşturmayı kapat" #. module: web_m2x_options #: model:ir.model,name:web_m2x_options.model_ir_model diff --git a/web_offline_warning/i18n/tr.po b/web_offline_warning/i18n/tr.po index e3aa3217..b196981e 100644 --- a/web_offline_warning/i18n/tr.po +++ b/web_offline_warning/i18n/tr.po @@ -3,13 +3,14 @@ # * web_offline_warning # # Translators: +# Ahmet Altinisik , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" -"PO-Revision-Date: 2016-06-12 22:45+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:48+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +30,11 @@ msgstr "Taman" #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:23 #, python-format msgid "The server cannot be reached. You are probably offline." -msgstr "" +msgstr "Sunucuya ulaşılamıyor. Muhtemelen bağlantı koptu." #. module: web_offline_warning #. openerp-web #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:18 #, python-format msgid "Warning" -msgstr "" +msgstr "Uyarı" diff --git a/web_option_auto_color/i18n/tr.po b/web_option_auto_color/i18n/tr.po new file mode 100644 index 00000000..7b8e2b47 --- /dev/null +++ b/web_option_auto_color/i18n/tr.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_option_auto_color +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 21:01+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_option_auto_color +#. openerp-web +#: code:addons/web_option_auto_color/static/src/xml/templates.xml:5 +#, python-format +msgid "" +"column.autocolor == '1' and view.auto_color_cell_style(render_cell(record, " +"column), column)" +msgstr "column.autocolor == '1' and view.auto_color_cell_style(render_cell(record, column), column)" diff --git a/web_search_autocomplete_prefetch/i18n/tr.po b/web_search_autocomplete_prefetch/i18n/tr.po new file mode 100644 index 00000000..70d4615a --- /dev/null +++ b/web_search_autocomplete_prefetch/i18n/tr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_search_autocomplete_prefetch +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-29 03:45+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_search_autocomplete_prefetch +#: view:ir.ui.view:web_search_autocomplete_prefetch.view_view_search_autocomplete +msgid "{'web_search_autocomplete_prefetch.disable': true}" +msgstr "{'web_search_autocomplete_prefetch.disable': true}" diff --git a/web_search_datetime_completion/i18n/tr.po b/web_search_datetime_completion/i18n/tr.po new file mode 100644 index 00000000..d5ac52a5 --- /dev/null +++ b/web_search_datetime_completion/i18n/tr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_search_datetime_completion +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 21:00+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_search_datetime_completion +#. openerp-web +#: code:addons/web_search_datetime_completion/static/src/js/web_search_datetime_completion.js:60 +#, python-format +msgid "Search %(field)s at: %(value)s" +msgstr "%(value)s değerini %(field)s: alanında ara" diff --git a/web_shortcuts/i18n/es_CL.po b/web_shortcuts/i18n/es_CL.po new file mode 100644 index 00000000..671421c8 --- /dev/null +++ b/web_shortcuts/i18n/es_CL.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/es_CR.po b/web_shortcuts/i18n/es_CR.po index 9769b958..bfd03804 100644 --- a/web_shortcuts/i18n/es_CR.po +++ b/web_shortcuts/i18n/es_CR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" "PO-Revision-Date: 2015-11-07 11:20+0000\n" "Last-Translator: <>\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" @@ -27,7 +27,7 @@ msgstr "" #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: web_shortcuts #: field:web.shortcut,create_date:0 @@ -52,12 +52,12 @@ msgstr "" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualización por" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualización en" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/es_DO.po b/web_shortcuts/i18n/es_DO.po new file mode 100644 index 00000000..d917383e --- /dev/null +++ b/web_shortcuts/i18n/es_DO.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/fr_CA.po b/web_shortcuts/i18n/fr_CA.po new file mode 100644 index 00000000..67a1c37c --- /dev/null +++ b/web_shortcuts/i18n/fr_CA.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/id.po b/web_shortcuts/i18n/id.po new file mode 100644 index 00000000..2f4606c6 --- /dev/null +++ b/web_shortcuts/i18n/id.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/lt_LT.po b/web_shortcuts/i18n/lt_LT.po new file mode 100644 index 00000000..efced44d --- /dev/null +++ b/web_shortcuts/i18n/lt_LT.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-web-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/nb_NO.po b/web_shortcuts/i18n/nb_NO.po new file mode 100644 index 00000000..ff65987a --- /dev/null +++ b/web_shortcuts/i18n/nb_NO.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/ro.po b/web_shortcuts/i18n/ro.po index bc06532a..66f4e144 100644 --- a/web_shortcuts/i18n/ro.po +++ b/web_shortcuts/i18n/ro.po @@ -3,13 +3,17 @@ # * web_shortcuts # # Translators: +# Carles Antoli , 2015 +# danimaribeiro , 2016 # FIRST AUTHOR , 2012 +# Guewen Baconnier , 2015 +# Matjaž Mozetič , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" "MIME-Version: 1.0\n" @@ -28,27 +32,37 @@ msgstr "Adauga / Sterge Shortcut..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creat de" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creat la" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" -msgstr "" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualizare făcută de" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualizare la" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/ru.po b/web_shortcuts/i18n/ru.po index 2bb7800a..3cd07013 100644 --- a/web_shortcuts/i18n/ru.po +++ b/web_shortcuts/i18n/ru.po @@ -3,13 +3,29 @@ # * web_shortcuts # # Translators: -# FIRST AUTHOR , 2012 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012,2014 +# Giacomo , 2015 +# Hotellook, 2014 +# Isabelle RICHARD , 2015 +# Jarmo Kortetjärvi , 2016 +# Lixon Jean-Yves , 2016 +# Matjaž Mozetič , 2015 +# Mohamed HABOU , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,27 +44,37 @@ msgstr "Добавить / Удалить ярлык..." #. module: web_shortcuts #: field:web.shortcut,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Создано" #. module: web_shortcuts #: field:web.shortcut,create_date:0 msgid "Created on" +msgstr "Создан" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" msgstr "" #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" msgstr "" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Последний раз обновлено" #. module: web_shortcuts #: field:web.shortcut,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Последний раз обновлено" #. module: web_shortcuts #: field:web.shortcut,menu_id:0 diff --git a/web_shortcuts/i18n/sr.po b/web_shortcuts/i18n/sr.po new file mode 100644 index 00000000..18a4edfd --- /dev/null +++ b/web_shortcuts/i18n/sr.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_shortcuts/i18n/tr.po b/web_shortcuts/i18n/tr.po index 33a97b02..ef40980e 100644 --- a/web_shortcuts/i18n/tr.po +++ b/web_shortcuts/i18n/tr.po @@ -3,16 +3,28 @@ # * web_shortcuts # # Translators: -# Ahmet Altınışık , 2015-2016 -# Ahmet Altınışık , 2015 -# FIRST AUTHOR , 2013 +# Ahmet Altinisik , 2015-2016 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2011-2014 +# Florian Hatat, 2015 +# Giacomo , 2015 +# Matjaž Mozetič , 2015 +# Mohamed HABOU , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-10 07:31+0000\n" -"PO-Revision-Date: 2016-01-31 11:39+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 20:46+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +49,21 @@ msgstr "Oluşturan" msgid "Created on" msgstr "Oluşturuldu" +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + #. module: web_shortcuts #: field:web.shortcut,id:0 msgid "ID" msgstr "ID" +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + #. module: web_shortcuts #: field:web.shortcut,write_uid:0 msgid "Last Updated by" diff --git a/web_shortcuts/i18n/vi_VN.po b/web_shortcuts/i18n/vi_VN.po new file mode 100644 index 00000000..c566687b --- /dev/null +++ b/web_shortcuts/i18n/vi_VN.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-web-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_switch_company_warning/i18n/tr.po b/web_switch_company_warning/i18n/tr.po index af4f0241..06fe9adb 100644 --- a/web_switch_company_warning/i18n/tr.po +++ b/web_switch_company_warning/i18n/tr.po @@ -3,15 +3,31 @@ # * web_switch_company_warning # # Translators: -# Ahmet Altınışık , 2015 -# Ahmet Altınışık , 2015 +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2015-2016 +# Alejandro Santana , 2015 +# Ahmet Altinisik , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# Bole , 2015 +# FIRST AUTHOR , 2010,2012-2013 +# Gustavo Lepri , 2015 +# Jarmo Kortetjärvi , 2016 +# John Toro , 2015 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Thomas A. Jaeger, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:12+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2016-12-30 21:15+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +47,7 @@ msgstr "Yenile" #: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:5 #, python-format msgid "You switched to a different company or user with another tab or window" -msgstr "" +msgstr "Başka bir pencerede ya da sekmede farklı bir şirkete geçiş yaptınız." #. module: web_switch_company_warning #. openerp-web diff --git a/web_timeline/i18n/tr.po b/web_timeline/i18n/tr.po index 152ff60d..1fd0aaee 100644 --- a/web_timeline/i18n/tr.po +++ b/web_timeline/i18n/tr.po @@ -24,7 +24,7 @@ msgstr "" #: code:addons/web_timeline/static/src/js/web_timeline.js:484 #, python-format msgid "Are you sure you want to delete this record ?" -msgstr "" +msgstr "Bu kaydı silmek istediğinizden emin misiniz ?" #. module: web_timeline #. openerp-web @@ -45,7 +45,7 @@ msgstr "Gün" #: code:addons/web_timeline/static/src/js/web_timeline.js:426 #, python-format msgid "Edit" -msgstr "" +msgstr "Düzenle" #. module: web_timeline #. openerp-web @@ -73,14 +73,14 @@ msgstr "Kaydet" #: code:addons/web_timeline/static/src/js/web_timeline.js:27 #, python-format msgid "Timeline" -msgstr "" +msgstr "Zaman çizelgesi" #. module: web_timeline #. openerp-web #: code:addons/web_timeline/static/src/js/web_timeline.js:99 #, python-format msgid "Timeline view has not defined 'date_start' attribute." -msgstr "" +msgstr "Zaman çizelgesi görünümünün 'date_start' özelliği tanımlamamış." #. module: web_timeline #. openerp-web diff --git a/web_translate_dialog/i18n/en_AU.po b/web_translate_dialog/i18n/en_AU.po new file mode 100644 index 00000000..0bcb7978 --- /dev/null +++ b/web_translate_dialog/i18n/en_AU.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-web-8-0/language/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_AR.po b/web_translate_dialog/i18n/es_AR.po new file mode 100644 index 00000000..d47cc9b7 --- /dev/null +++ b/web_translate_dialog/i18n/es_AR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_CL.po b/web_translate_dialog/i18n/es_CL.po new file mode 100644 index 00000000..8faf1c6e --- /dev/null +++ b/web_translate_dialog/i18n/es_CL.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_CO.po b/web_translate_dialog/i18n/es_CO.po new file mode 100644 index 00000000..37758127 --- /dev/null +++ b/web_translate_dialog/i18n/es_CO.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/es_DO.po b/web_translate_dialog/i18n/es_DO.po new file mode 100644 index 00000000..bdcd2ba6 --- /dev/null +++ b/web_translate_dialog/i18n/es_DO.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/eu.po b/web_translate_dialog/i18n/eu.po new file mode 100644 index 00000000..c2f79871 --- /dev/null +++ b/web_translate_dialog/i18n/eu.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/fa.po b/web_translate_dialog/i18n/fa.po new file mode 100644 index 00000000..f64fc234 --- /dev/null +++ b/web_translate_dialog/i18n/fa.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "لغو" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/fr_FR.po b/web_translate_dialog/i18n/fr_FR.po new file mode 100644 index 00000000..a24f5716 --- /dev/null +++ b/web_translate_dialog/i18n/fr_FR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/he.po b/web_translate_dialog/i18n/he.po new file mode 100644 index 00000000..2c3011c3 --- /dev/null +++ b/web_translate_dialog/i18n/he.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "בטל" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/hi.po b/web_translate_dialog/i18n/hi.po new file mode 100644 index 00000000..52bc8b51 --- /dev/null +++ b/web_translate_dialog/i18n/hi.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-web-8-0/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "रद्द" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/hr_HR.po b/web_translate_dialog/i18n/hr_HR.po new file mode 100644 index 00000000..70256346 --- /dev/null +++ b/web_translate_dialog/i18n/hr_HR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/id.po b/web_translate_dialog/i18n/id.po new file mode 100644 index 00000000..c911b4ba --- /dev/null +++ b/web_translate_dialog/i18n/id.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Batalkan" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/ko.po b/web_translate_dialog/i18n/ko.po new file mode 100644 index 00000000..7c09cd20 --- /dev/null +++ b/web_translate_dialog/i18n/ko.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "취소" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/lo.po b/web_translate_dialog/i18n/lo.po new file mode 100644 index 00000000..ea30e2cd --- /dev/null +++ b/web_translate_dialog/i18n/lo.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lao (http://www.transifex.com/oca/OCA-web-8-0/language/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/lv.po b/web_translate_dialog/i18n/lv.po new file mode 100644 index 00000000..34f4eea4 --- /dev/null +++ b/web_translate_dialog/i18n/lv.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Atcelt" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/nb_NO.po b/web_translate_dialog/i18n/nb_NO.po new file mode 100644 index 00000000..9b3e0f3e --- /dev/null +++ b/web_translate_dialog/i18n/nb_NO.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Lukk" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/sk.po b/web_translate_dialog/i18n/sk.po new file mode 100644 index 00000000..bc3a0b6a --- /dev/null +++ b/web_translate_dialog/i18n/sk.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Zrušiť" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/sr.po b/web_translate_dialog/i18n/sr.po new file mode 100644 index 00000000..e59b05ca --- /dev/null +++ b/web_translate_dialog/i18n/sr.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_translate_dialog/i18n/uk.po b/web_translate_dialog/i18n/uk.po new file mode 100644 index 00000000..435c1938 --- /dev/null +++ b/web_translate_dialog/i18n/uk.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "Скасувати" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_tree_dynamic_colored_field/i18n/tr.po b/web_tree_dynamic_colored_field/i18n/tr.po new file mode 100644 index 00000000..5885fbfb --- /dev/null +++ b/web_tree_dynamic_colored_field/i18n/tr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_tree_dynamic_colored_field +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-29 03:46+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_tree_dynamic_colored_field +#. openerp-web +#: code:addons/web_tree_dynamic_colored_field/static/src/xml/web_tree_dynamic_colored_field.xml:7 +#, python-format +msgid "columns.fct_colorize(record, column)" +msgstr "columns.fct_colorize(record, column)" diff --git a/web_widget_digitized_signature/i18n/tr.po b/web_widget_digitized_signature/i18n/tr.po new file mode 100644 index 00000000..e19bf35f --- /dev/null +++ b/web_widget_digitized_signature/i18n/tr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-30 21:12+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/xml/digital_sign.xml:6 +#, python-format +msgid "Clear" +msgstr "Temizle" + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Could not display the selected image." +msgstr "Seçili resmi gösteremiyor." + +#. module: web_widget_digitized_signature +#. openerp-web +#: code:addons/web_widget_digitized_signature/static/src/js/digital_sign.js:115 +#, python-format +msgid "Image" +msgstr "Resim" diff --git a/web_widget_digitized_signature_user/i18n/tr.po b/web_widget_digitized_signature_user/i18n/tr.po index 93fdadb2..f55fa117 100644 --- a/web_widget_digitized_signature_user/i18n/tr.po +++ b/web_widget_digitized_signature_user/i18n/tr.po @@ -3,13 +3,46 @@ # * web_widget_digitized_signature_user # # Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Chul Park , 2015 +# danimaribeiro , 2016 +# David10000 , 2014 +# FIRST AUTHOR , 2010,2012-2014 +# Giacomo , 2015 +# Giedrius Slavinskas , 2012 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# Hotellook, 2014 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015-2016 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pope, 2014 +# Rudolf Schnapka , 2016 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-02-26 02:05+0000\n" -"PO-Revision-Date: 2016-02-25 15:13+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-30 21:09+0000\n" +"Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +53,7 @@ msgstr "" #. module: web_widget_digitized_signature_user #: field:res.users,signature_image:0 msgid "Signature" -msgstr "" +msgstr "İmza" #. module: web_widget_digitized_signature_user #: model:ir.model,name:web_widget_digitized_signature_user.model_res_users diff --git a/web_widget_image_download/i18n/tr.po b/web_widget_image_download/i18n/tr.po new file mode 100644 index 00000000..028a7251 --- /dev/null +++ b/web_widget_image_download/i18n/tr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_image_download +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-29 03:46+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_widget_image_download +#. openerp-web +#: code:addons/web_widget_image_download/static/src/xml/web_widget_image_download.xml:9 +#, python-format +msgid "Download" +msgstr "İndir" diff --git a/web_widget_mail_send_odoo/i18n/tr.po b/web_widget_mail_send_odoo/i18n/tr.po new file mode 100644 index 00000000..82d0dc14 --- /dev/null +++ b/web_widget_mail_send_odoo/i18n/tr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_mail_send_odoo +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-30 21:09+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 +#, python-format +msgid "Can't send email to invalid e-mail address" +msgstr "Geçersiz eposta adresine e-posta gönderilemez" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:50 +#, python-format +msgid "E-mail Error" +msgstr "E-posta Hatası" + +#. module: web_widget_mail_send_odoo +#. openerp-web +#: code:addons/web_widget_mail_send_odoo/static/src/js/web_widget_mail_send_odoo.js:93 +#, python-format +msgid "Please complete partner's information." +msgstr "Lütfen iş ortağının bilgilerini tamamlayın." diff --git a/web_widget_one2many_tags/i18n/tr.po b/web_widget_one2many_tags/i18n/tr.po new file mode 100644 index 00000000..bb49a423 --- /dev/null +++ b/web_widget_one2many_tags/i18n/tr.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_one2many_tags +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-30 21:10+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_widget_one2many_tags +#. openerp-web +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 +#, python-format +msgid "New record" +msgstr "Yeni kayıt" diff --git a/web_widget_pattern/i18n/tr.po b/web_widget_pattern/i18n/tr.po new file mode 100644 index 00000000..00698feb --- /dev/null +++ b/web_widget_pattern/i18n/tr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_pattern +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-29 03:46+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_widget_pattern +#: view:res.partner:web_widget_pattern.view_partner_form +msgid "{'pattern': '[\\S]+@[\\S]+'}" +msgstr "{'pattern': '[\\S]+@[\\S]+'}" diff --git a/web_x2m_defaults_from_previous/i18n/tr.po b/web_x2m_defaults_from_previous/i18n/tr.po new file mode 100644 index 00000000..eb0eb717 --- /dev/null +++ b/web_x2m_defaults_from_previous/i18n/tr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2m_defaults_from_previous +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-29 03:46+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_x2m_defaults_from_previous +#: view:res.groups:web_x2m_defaults_from_previous.view_groups_form +msgid "{'web_x2m_defaults_from_previous': ['model_id', 'name']}" +msgstr "{'web_x2m_defaults_from_previous': ['model_id', 'name']}" diff --git a/web_x2m_filter/i18n/tr.po b/web_x2m_filter/i18n/tr.po new file mode 100644 index 00000000..cd46820d --- /dev/null +++ b/web_x2m_filter/i18n/tr.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2m_filter +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:46+0000\n" +"PO-Revision-Date: 2016-12-29 03:46+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_x2m_filter +#: view:res.groups:web_x2m_filter.view_groups_form +msgid "" +"{'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', " +"3)], 'default': True}]}" +msgstr "" +"{'web_x2m_filter': [{'name': 'Sadece Yöneticiler', 'domain': [('groups_id', " +"'=', 3)], 'default': True}]}" From 1897a83ab3e4cece365ab460791c56c51f35f082 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 7 Jan 2017 03:30:17 -0500 Subject: [PATCH 075/103] OCA Transbot updated translations from Transifex --- help_online/i18n/tr_TR.po | 236 +++++++++++++ web_ckeditor4/i18n/tr_TR.po | 38 ++ web_dashboard_tile/i18n/tr_TR.po | 330 ++++++++++++++++++ web_easy_switch_company/i18n/tr_TR.po | 33 ++ web_export_view/i18n/tr_TR.po | 46 +++ web_m2x_options/i18n/tr_TR.po | 52 +++ web_shortcuts/i18n/tr_TR.po | 80 +++++ web_translate_dialog/i18n/tr_TR.po | 53 +++ .../i18n/tr_TR.po | 28 ++ 9 files changed, 896 insertions(+) create mode 100644 help_online/i18n/tr_TR.po create mode 100644 web_ckeditor4/i18n/tr_TR.po create mode 100644 web_dashboard_tile/i18n/tr_TR.po create mode 100644 web_easy_switch_company/i18n/tr_TR.po create mode 100644 web_export_view/i18n/tr_TR.po create mode 100644 web_m2x_options/i18n/tr_TR.po create mode 100644 web_shortcuts/i18n/tr_TR.po create mode 100644 web_translate_dialog/i18n/tr_TR.po create mode 100644 web_widget_digitized_signature_user/i18n/tr_TR.po diff --git a/help_online/i18n/tr_TR.po b/help_online/i18n/tr_TR.po new file mode 100644 index 00000000..d51e89d2 --- /dev/null +++ b/help_online/i18n/tr_TR.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:10+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "İptal et" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "Onayla" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "ya da " diff --git a/web_ckeditor4/i18n/tr_TR.po b/web_ckeditor4/i18n/tr_TR.po new file mode 100644 index 00000000..06864909 --- /dev/null +++ b/web_ckeditor4/i18n/tr_TR.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:10+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_dashboard_tile/i18n/tr_TR.po b/web_dashboard_tile/i18n/tr_TR.po new file mode 100644 index 00000000..8760f088 --- /dev/null +++ b/web_dashboard_tile/i18n/tr_TR.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:10+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "Eylem" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "Etkin" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "Alan" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "Hata" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "Tip" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "Ad" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "Sıra" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "Kullanıcı" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_easy_switch_company/i18n/tr_TR.po b/web_easy_switch_company/i18n/tr_TR.po new file mode 100644 index 00000000..98568d49 --- /dev/null +++ b/web_easy_switch_company/i18n/tr_TR.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:10+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "Kullanıcılar" diff --git a/web_export_view/i18n/tr_TR.po b/web_export_view/i18n/tr_TR.po new file mode 100644 index 00000000..7ea38015 --- /dev/null +++ b/web_export_view/i18n/tr_TR.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_export_view +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:10+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:8 +#, python-format +msgid "Excel" +msgstr "" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:6 +#, python-format +msgid "Export Current View" +msgstr "" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/js/web_export_view.js:84 +#, python-format +msgid "False" +msgstr "" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/js/web_export_view.js:81 +#, python-format +msgid "True" +msgstr "Doğru" diff --git a/web_m2x_options/i18n/tr_TR.po b/web_m2x_options/i18n/tr_TR.po new file mode 100644 index 00000000..8097b558 --- /dev/null +++ b/web_m2x_options/i18n/tr_TR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:11+0000\n" +"PO-Revision-Date: 2017-01-03 06:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Tipler" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_shortcuts/i18n/tr_TR.po b/web_shortcuts/i18n/tr_TR.po new file mode 100644 index 00000000..487a1097 --- /dev/null +++ b/web_shortcuts/i18n/tr_TR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:11+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr "" diff --git a/web_translate_dialog/i18n/tr_TR.po b/web_translate_dialog/i18n/tr_TR.po new file mode 100644 index 00000000..9cb3fe94 --- /dev/null +++ b/web_translate_dialog/i18n/tr_TR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_translate_dialog +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:11+0000\n" +"PO-Revision-Date: 2015-11-07 11:21+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:30 +#, python-format +msgid "Cancel" +msgstr "İptal et" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:7 +#, python-format +msgid "Field" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/xml/base.xml:29 +#, python-format +msgid "Save" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:15 +#, python-format +msgid "Translate" +msgstr "" + +#. module: web_translate_dialog +#. openerp-web +#: code:addons/web_translate_dialog/static/src/js/web_translate_dialog.js:37 +#, python-format +msgid "Translations" +msgstr "" diff --git a/web_widget_digitized_signature_user/i18n/tr_TR.po b/web_widget_digitized_signature_user/i18n/tr_TR.po new file mode 100644 index 00000000..93679eb2 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/tr_TR.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:11+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Kullanıcılar" From 8d64930a706de9eb1ecf4c0f6a0009bc69dc1d8e Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 14 Jan 2017 04:31:00 -0500 Subject: [PATCH 076/103] OCA Transbot updated translations from Transifex --- help_online/i18n/ca.po | 8 +- web_ckeditor4/i18n/ca.po | 6 +- web_ckeditor4/i18n/vi_VN.po | 38 +++++ web_dashboard_tile/i18n/bs.po | 6 +- web_dashboard_tile/i18n/ca.po | 141 ++++++++++++++---- web_dashboard_tile/i18n/cs.po | 6 +- web_dashboard_tile/i18n/en_GB.po | 6 +- web_dashboard_tile/i18n/es_CR.po | 6 +- web_dashboard_tile/i18n/es_EC.po | 6 +- web_dashboard_tile/i18n/es_MX.po | 6 +- web_dashboard_tile/i18n/es_VE.po | 6 +- web_dashboard_tile/i18n/et.po | 6 +- web_dashboard_tile/i18n/gl.po | 8 +- web_dashboard_tile/i18n/hr.po | 8 +- web_dashboard_tile/i18n/hu.po | 6 +- web_dashboard_tile/i18n/ja.po | 6 +- web_dashboard_tile/i18n/lt.po | 6 +- web_dashboard_tile/i18n/lv.po | 6 +- web_dashboard_tile/i18n/mk.po | 6 +- web_dashboard_tile/i18n/mn.po | 6 +- web_dashboard_tile/i18n/nb.po | 6 +- web_dashboard_tile/i18n/nl.po | 8 +- web_dashboard_tile/i18n/nl_BE.po | 6 +- web_dashboard_tile/i18n/pl.po | 6 +- web_dashboard_tile/i18n/pt.po | 8 +- web_dashboard_tile/i18n/pt_PT.po | 6 +- web_dashboard_tile/i18n/ro.po | 8 +- web_dashboard_tile/i18n/ru.po | 6 +- web_dashboard_tile/i18n/sr@latin.po | 6 +- web_dashboard_tile/i18n/sv.po | 6 +- web_dashboard_tile/i18n/th.po | 6 +- web_dashboard_tile/i18n/vi.po | 6 +- web_dashboard_tile/i18n/zh_CN.po | 6 +- web_dashboard_tile/i18n/zh_TW.po | 6 +- web_easy_switch_company/i18n/el_GR.po | 4 +- web_easy_switch_company/i18n/es_ES.po | 33 ++++ web_easy_switch_company/i18n/hr.po | 33 ++++ web_easy_switch_company/i18n/hr_HR.po | 4 +- web_easy_switch_company/i18n/nl.po | 4 +- web_easy_switch_company/i18n/zh_CN.po | 4 +- web_favicon/i18n/es_ES.po | 63 ++++++++ web_favicon/i18n/hr.po | 63 ++++++++ web_shortcuts/i18n/ca.po | 6 +- .../i18n/el_GR.po | 28 ++++ .../i18n/es_ES.po | 28 ++++ .../i18n/hr.po | 28 ++++ .../i18n/hr_HR.po | 28 ++++ .../i18n/nl.po | 28 ++++ .../i18n/zh_CN.po | 28 ++++ web_x2m_defaults_from_previous/i18n/sl.po | 24 +++ 50 files changed, 650 insertions(+), 139 deletions(-) create mode 100644 web_ckeditor4/i18n/vi_VN.po create mode 100644 web_easy_switch_company/i18n/es_ES.po create mode 100644 web_easy_switch_company/i18n/hr.po create mode 100644 web_favicon/i18n/es_ES.po create mode 100644 web_favicon/i18n/hr.po create mode 100644 web_widget_digitized_signature_user/i18n/el_GR.po create mode 100644 web_widget_digitized_signature_user/i18n/es_ES.po create mode 100644 web_widget_digitized_signature_user/i18n/hr.po create mode 100644 web_widget_digitized_signature_user/i18n/hr_HR.po create mode 100644 web_widget_digitized_signature_user/i18n/nl.po create mode 100644 web_widget_digitized_signature_user/i18n/zh_CN.po create mode 100644 web_x2m_defaults_from_previous/i18n/sl.po diff --git a/help_online/i18n/ca.po b/help_online/i18n/ca.po index af668aee..1b53f7ec 100644 --- a/help_online/i18n/ca.po +++ b/help_online/i18n/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"POT-Creation-Date: 2017-01-07 08:32+0000\n" +"PO-Revision-Date: 2017-01-13 09:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Creat el" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Veure el nom" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -141,7 +141,7 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Darrera modificació el" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 diff --git a/web_ckeditor4/i18n/ca.po b/web_ckeditor4/i18n/ca.po index f37d6ca1..25ec2c3f 100644 --- a/web_ckeditor4/i18n/ca.po +++ b/web_ckeditor4/i18n/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2017-01-07 08:32+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Veure el nom" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Darrera modificació el" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_ckeditor4/i18n/vi_VN.po b/web_ckeditor4/i18n/vi_VN.po new file mode 100644 index 00000000..92f0a101 --- /dev/null +++ b/web_ckeditor4/i18n/vi_VN.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:32+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-web-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_dashboard_tile/i18n/bs.po b/web_dashboard_tile/i18n/bs.po index 49da0759..dd078cfc 100644 --- a/web_dashboard_tile/i18n/bs.po +++ b/web_dashboard_tile/i18n/bs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:23+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Korisnik" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/ca.po b/web_dashboard_tile/i18n/ca.po index 30ec5bcb..02a607bb 100644 --- a/web_dashboard_tile/i18n/ca.po +++ b/web_dashboard_tile/i18n/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-09-09 12:25+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -90,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Veure el nom" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -102,10 +100,15 @@ msgstr "" #: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 #, python-format msgid "Error" +msgstr "Error" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,10 +150,18 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Darrera modificació el" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "Darrera Actualització el" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,26 +226,54 @@ msgid "Name" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seqüència" #. module: web_dashboard_tile #. openerp-web @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -238,4 +322,9 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" +msgstr "Usuari" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" msgstr "" diff --git a/web_dashboard_tile/i18n/cs.po b/web_dashboard_tile/i18n/cs.po index 53277035..9188d3e5 100644 --- a/web_dashboard_tile/i18n/cs.po +++ b/web_dashboard_tile/i18n/cs.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Uživatel" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/en_GB.po b/web_dashboard_tile/i18n/en_GB.po index 3f45eb17..cf270613 100644 --- a/web_dashboard_tile/i18n/en_GB.po +++ b/web_dashboard_tile/i18n/en_GB.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-11 15:38+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "User" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/es_CR.po b/web_dashboard_tile/i18n/es_CR.po index a3d97b71..e13d5e9d 100644 --- a/web_dashboard_tile/i18n/es_CR.po +++ b/web_dashboard_tile/i18n/es_CR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:23+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/es_EC.po b/web_dashboard_tile/i18n/es_EC.po index 8b61695b..2be0c2bc 100644 --- a/web_dashboard_tile/i18n/es_EC.po +++ b/web_dashboard_tile/i18n/es_EC.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:29+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/es_MX.po b/web_dashboard_tile/i18n/es_MX.po index 11b5c7d3..ea7d01b2 100644 --- a/web_dashboard_tile/i18n/es_MX.po +++ b/web_dashboard_tile/i18n/es_MX.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:29+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/es_VE.po b/web_dashboard_tile/i18n/es_VE.po index 0580768d..49262228 100644 --- a/web_dashboard_tile/i18n/es_VE.po +++ b/web_dashboard_tile/i18n/es_VE.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:30+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/et.po b/web_dashboard_tile/i18n/et.po index e6be9032..65e62dc8 100644 --- a/web_dashboard_tile/i18n/et.po +++ b/web_dashboard_tile/i18n/et.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Kasutaja" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/gl.po b/web_dashboard_tile/i18n/gl.po index acb5e139..ca6f680e 100644 --- a/web_dashboard_tile/i18n/gl.po +++ b/web_dashboard_tile/i18n/gl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:28+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" "MIME-Version: 1.0\n" @@ -273,7 +273,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Secuencia" #. module: web_dashboard_tile #. openerp-web @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/hr.po b/web_dashboard_tile/i18n/hr.po index 1381405c..f8bbc32d 100644 --- a/web_dashboard_tile/i18n/hr.po +++ b/web_dashboard_tile/i18n/hr.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-11 15:38+0000\n" +"Last-Translator: Bole \n" "Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Korisnik" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/hu.po b/web_dashboard_tile/i18n/hu.po index e592297e..d47ce1a0 100644 --- a/web_dashboard_tile/i18n/hu.po +++ b/web_dashboard_tile/i18n/hu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:32+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Felhasználó" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/ja.po b/web_dashboard_tile/i18n/ja.po index 0031dab0..1e203c52 100644 --- a/web_dashboard_tile/i18n/ja.po +++ b/web_dashboard_tile/i18n/ja.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:32+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "ユーザ" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/lt.po b/web_dashboard_tile/i18n/lt.po index a5cc54be..a445bca9 100644 --- a/web_dashboard_tile/i18n/lt.po +++ b/web_dashboard_tile/i18n/lt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/lv.po b/web_dashboard_tile/i18n/lv.po index 8566c7ce..6f67bd3d 100644 --- a/web_dashboard_tile/i18n/lv.po +++ b/web_dashboard_tile/i18n/lv.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-11 15:37+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Lietotājs" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/mk.po b/web_dashboard_tile/i18n/mk.po index 9d997bac..fac68276 100644 --- a/web_dashboard_tile/i18n/mk.po +++ b/web_dashboard_tile/i18n/mk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:32+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Корисник" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/mn.po b/web_dashboard_tile/i18n/mn.po index 7e57c085..9584383f 100644 --- a/web_dashboard_tile/i18n/mn.po +++ b/web_dashboard_tile/i18n/mn.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:32+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Хэрэглэгч" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/nb.po b/web_dashboard_tile/i18n/nb.po index 70872753..5aac39ac 100644 --- a/web_dashboard_tile/i18n/nb.po +++ b/web_dashboard_tile/i18n/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:28+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Bruker" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/nl.po b/web_dashboard_tile/i18n/nl.po index 5942a6c0..9489e7b4 100644 --- a/web_dashboard_tile/i18n/nl.po +++ b/web_dashboard_tile/i18n/nl.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-10 07:09+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:28+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Reeks" #. module: web_dashboard_tile #. openerp-web @@ -345,7 +345,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Gebruiker" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/nl_BE.po b/web_dashboard_tile/i18n/nl_BE.po index 8411e4ac..c7c3804e 100644 --- a/web_dashboard_tile/i18n/nl_BE.po +++ b/web_dashboard_tile/i18n/nl_BE.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Gebruiker" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/pl.po b/web_dashboard_tile/i18n/pl.po index 3381b096..cfcd7198 100644 --- a/web_dashboard_tile/i18n/pl.po +++ b/web_dashboard_tile/i18n/pl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:33+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Użytkownik" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/pt.po b/web_dashboard_tile/i18n/pt.po index ace71ac4..89e6070a 100644 --- a/web_dashboard_tile/i18n/pt.po +++ b/web_dashboard_tile/i18n/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-12 11:39+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" "MIME-Version: 1.0\n" @@ -273,7 +273,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sequência" #. module: web_dashboard_tile #. openerp-web @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Utilizador" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/pt_PT.po b/web_dashboard_tile/i18n/pt_PT.po index c3d86dc1..666796d5 100644 --- a/web_dashboard_tile/i18n/pt_PT.po +++ b/web_dashboard_tile/i18n/pt_PT.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-10 07:06+0000\n" -"PO-Revision-Date: 2016-12-12 16:25+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Utilizador" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/ro.po b/web_dashboard_tile/i18n/ro.po index 77722959..97bb4d56 100644 --- a/web_dashboard_tile/i18n/ro.po +++ b/web_dashboard_tile/i18n/ro.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-11 15:37+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" "MIME-Version: 1.0\n" @@ -273,7 +273,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Secventa" #. module: web_dashboard_tile #. openerp-web @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Utilizator" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/ru.po b/web_dashboard_tile/i18n/ru.po index 07ee0978..24a2b033 100644 --- a/web_dashboard_tile/i18n/ru.po +++ b/web_dashboard_tile/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -273,7 +273,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Последовательность" #. module: web_dashboard_tile #. openerp-web diff --git a/web_dashboard_tile/i18n/sr@latin.po b/web_dashboard_tile/i18n/sr@latin.po index fee13e1d..efa6f2ef 100644 --- a/web_dashboard_tile/i18n/sr@latin.po +++ b/web_dashboard_tile/i18n/sr@latin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:29+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Korisnik" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/sv.po b/web_dashboard_tile/i18n/sv.po index eb1ab01f..9bc595f5 100644 --- a/web_dashboard_tile/i18n/sv.po +++ b/web_dashboard_tile/i18n/sv.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:30+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Användare" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/th.po b/web_dashboard_tile/i18n/th.po index e82da848..d3ebf2f6 100644 --- a/web_dashboard_tile/i18n/th.po +++ b/web_dashboard_tile/i18n/th.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-11 15:37+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "ผู้ใช้" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/vi.po b/web_dashboard_tile/i18n/vi.po index 65c0e72e..a2810f9c 100644 --- a/web_dashboard_tile/i18n/vi.po +++ b/web_dashboard_tile/i18n/vi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:23+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "Người sử dụng" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/zh_CN.po b/web_dashboard_tile/i18n/zh_CN.po index e791de3b..8bbd878c 100644 --- a/web_dashboard_tile/i18n/zh_CN.po +++ b/web_dashboard_tile/i18n/zh_CN.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:31+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "用户" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_dashboard_tile/i18n/zh_TW.po b/web_dashboard_tile/i18n/zh_TW.po index 35a2d19c..19fb043d 100644 --- a/web_dashboard_tile/i18n/zh_TW.po +++ b/web_dashboard_tile/i18n/zh_TW.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -322,7 +322,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,user_id:0 msgid "User" -msgstr "" +msgstr "使用者" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 diff --git a/web_easy_switch_company/i18n/el_GR.po b/web_easy_switch_company/i18n/el_GR.po index cab7af2c..9e7efee7 100644 --- a/web_easy_switch_company/i18n/el_GR.po +++ b/web_easy_switch_company/i18n/el_GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" @@ -30,4 +30,4 @@ msgstr "" #. module: web_easy_switch_company #: model:ir.model,name:web_easy_switch_company.model_res_users msgid "Users" -msgstr "" +msgstr "Χρήστες" diff --git a/web_easy_switch_company/i18n/es_ES.po b/web_easy_switch_company/i18n/es_ES.po new file mode 100644 index 00000000..af46cf10 --- /dev/null +++ b/web_easy_switch_company/i18n/es_ES.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/web_easy_switch_company/i18n/hr.po b/web_easy_switch_company/i18n/hr.po new file mode 100644 index 00000000..d7190227 --- /dev/null +++ b/web_easy_switch_company/i18n/hr.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/web_easy_switch_company/i18n/hr_HR.po b/web_easy_switch_company/i18n/hr_HR.po index e23655c1..ae59fa8e 100644 --- a/web_easy_switch_company/i18n/hr_HR.po +++ b/web_easy_switch_company/i18n/hr_HR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" @@ -30,4 +30,4 @@ msgstr "" #. module: web_easy_switch_company #: model:ir.model,name:web_easy_switch_company.model_res_users msgid "Users" -msgstr "" +msgstr "Korisnici" diff --git a/web_easy_switch_company/i18n/nl.po b/web_easy_switch_company/i18n/nl.po index a1c50e6f..4d76ecd0 100644 --- a/web_easy_switch_company/i18n/nl.po +++ b/web_easy_switch_company/i18n/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" @@ -30,4 +30,4 @@ msgstr "" #. module: web_easy_switch_company #: model:ir.model,name:web_easy_switch_company.model_res_users msgid "Users" -msgstr "" +msgstr "Gebruikers" diff --git a/web_easy_switch_company/i18n/zh_CN.po b/web_easy_switch_company/i18n/zh_CN.po index dd926802..001e668d 100644 --- a/web_easy_switch_company/i18n/zh_CN.po +++ b/web_easy_switch_company/i18n/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" @@ -30,4 +30,4 @@ msgstr "" #. module: web_easy_switch_company #: model:ir.model,name:web_easy_switch_company.model_res_users msgid "Users" -msgstr "" +msgstr "用户" diff --git a/web_favicon/i18n/es_ES.po b/web_favicon/i18n/es_ES.po new file mode 100644 index 00000000..41ef6b2c --- /dev/null +++ b/web_favicon/i18n/es_ES.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/hr.po b/web_favicon/i18n/hr.po new file mode 100644 index 00000000..9ab299e7 --- /dev/null +++ b/web_favicon/i18n/hr.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_shortcuts/i18n/ca.po b/web_shortcuts/i18n/ca.po index d425ed67..60c2f1ad 100644 --- a/web_shortcuts/i18n/ca.po +++ b/web_shortcuts/i18n/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" "PO-Revision-Date: 2015-11-07 11:20+0000\n" "Last-Translator: <>\n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" @@ -37,7 +37,7 @@ msgstr "Creat el" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Veure el nom" #. module: web_shortcuts #: field:web.shortcut,id:0 @@ -47,7 +47,7 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Darrera modificació el" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 diff --git a/web_widget_digitized_signature_user/i18n/el_GR.po b/web_widget_digitized_signature_user/i18n/el_GR.po new file mode 100644 index 00000000..ab419a93 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/el_GR.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Χρήστες" diff --git a/web_widget_digitized_signature_user/i18n/es_ES.po b/web_widget_digitized_signature_user/i18n/es_ES.po new file mode 100644 index 00000000..0c4b3b37 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/es_ES.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/web_widget_digitized_signature_user/i18n/hr.po b/web_widget_digitized_signature_user/i18n/hr.po new file mode 100644 index 00000000..b46a4664 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/hr.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/web_widget_digitized_signature_user/i18n/hr_HR.po b/web_widget_digitized_signature_user/i18n/hr_HR.po new file mode 100644 index 00000000..0016c8f3 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/hr_HR.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/web_widget_digitized_signature_user/i18n/nl.po b/web_widget_digitized_signature_user/i18n/nl.po new file mode 100644 index 00000000..d14b3aa1 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/nl.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Gebruikers" diff --git a/web_widget_digitized_signature_user/i18n/zh_CN.po b/web_widget_digitized_signature_user/i18n/zh_CN.po new file mode 100644 index 00000000..20409f63 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/zh_CN.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "用户" diff --git a/web_x2m_defaults_from_previous/i18n/sl.po b/web_x2m_defaults_from_previous/i18n/sl.po new file mode 100644 index 00000000..5b8478f4 --- /dev/null +++ b/web_x2m_defaults_from_previous/i18n/sl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2m_defaults_from_previous +# +# Translators: +# Matjaž Mozetič , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 08:33+0000\n" +"PO-Revision-Date: 2017-01-07 08:33+0000\n" +"Last-Translator: Matjaž Mozetič , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_x2m_defaults_from_previous +#: view:res.groups:web_x2m_defaults_from_previous.view_groups_form +msgid "{'web_x2m_defaults_from_previous': ['model_id', 'name']}" +msgstr "{'web_x2m_defaults_from_previous': ['model_id', 'name']}" From e5fffe3f86b36f6b9c56ab9393a9c83e969de91e Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 21 Jan 2017 03:38:44 -0500 Subject: [PATCH 077/103] OCA Transbot updated translations from Transifex --- web_dashboard_tile/i18n/ca.po | 10 +++--- web_easy_switch_company/i18n/ca.po | 33 +++++++++++++++++++ web_translate_dialog/i18n/ca.po | 4 +-- .../i18n/ca.po | 28 ++++++++++++++++ 4 files changed, 68 insertions(+), 7 deletions(-) create mode 100644 web_easy_switch_company/i18n/ca.po create mode 100644 web_widget_digitized_signature_user/i18n/ca.po diff --git a/web_dashboard_tile/i18n/ca.po b/web_dashboard_tile/i18n/ca.po index 02a607bb..2d038bcd 100644 --- a/web_dashboard_tile/i18n/ca.po +++ b/web_dashboard_tile/i18n/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-07 08:33+0000\n" -"PO-Revision-Date: 2017-01-13 09:22+0000\n" +"POT-Creation-Date: 2017-01-14 09:35+0000\n" +"PO-Revision-Date: 2017-01-17 19:17+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,active:0 msgid "Active" -msgstr "" +msgstr "Actiu" #. module: web_dashboard_tile #: selection:tile.tile,primary_function:0 @@ -110,7 +110,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,primary_field_id:0 msgid "Field" -msgstr "" +msgstr "Camp" #. module: web_dashboard_tile #. openerp-web @@ -223,7 +223,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,name:0 msgid "Name" -msgstr "" +msgstr "Nom" #. module: web_dashboard_tile #: code:addons/web_dashboard_tile/models/tile_tile.py:31 diff --git a/web_easy_switch_company/i18n/ca.po b/web_easy_switch_company/i18n/ca.po new file mode 100644 index 00000000..32cedb55 --- /dev/null +++ b/web_easy_switch_company/i18n/ca.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 09:35+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "Usuaris" diff --git a/web_translate_dialog/i18n/ca.po b/web_translate_dialog/i18n/ca.po index a674d1ca..a90f53a0 100644 --- a/web_translate_dialog/i18n/ca.po +++ b/web_translate_dialog/i18n/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2017-01-14 09:35+0000\n" "PO-Revision-Date: 2015-11-07 11:21+0000\n" "Last-Translator: <>\n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" @@ -29,7 +29,7 @@ msgstr "Cancel·la" #: code:addons/web_translate_dialog/static/src/xml/base.xml:7 #, python-format msgid "Field" -msgstr "" +msgstr "Camp" #. module: web_translate_dialog #. openerp-web diff --git a/web_widget_digitized_signature_user/i18n/ca.po b/web_widget_digitized_signature_user/i18n/ca.po new file mode 100644 index 00000000..a8355541 --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/ca.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 09:36+0000\n" +"PO-Revision-Date: 2016-02-25 15:13+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "Usuaris" From b1a35bc991159346805026fee7cc5bab3acdd313 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 4 Feb 2017 03:26:02 -0500 Subject: [PATCH 078/103] OCA Transbot updated translations from Transifex --- help_online/i18n/nl.po | 11 +++++---- web_ir_actions_act_window_message/i18n/nl.po | 25 ++++++++++++++++++++ 2 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 web_ir_actions_act_window_message/i18n/nl.po diff --git a/help_online/i18n/nl.po b/help_online/i18n/nl.po index 5a401d24..390dfaec 100644 --- a/help_online/i18n/nl.po +++ b/help_online/i18n/nl.po @@ -3,13 +3,14 @@ # * help_online # # Translators: +# wilcobergacker , 2017 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:57+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2017-01-21 08:51+0000\n" +"PO-Revision-Date: 2017-02-01 11:20+0000\n" +"Last-Translator: wilcobergacker \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,14 +29,14 @@ msgstr "Annuleren" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "Close" -msgstr "" +msgstr "Sluiten" #. module: help_online #. openerp-web #: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" -msgstr "" +msgstr "Bevestigen" #. module: help_online #: code:addons/help_online/models/help_online.py:57 diff --git a/web_ir_actions_act_window_message/i18n/nl.po b/web_ir_actions_act_window_message/i18n/nl.po new file mode 100644 index 00000000..67049ccf --- /dev/null +++ b/web_ir_actions_act_window_message/i18n/nl.po @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ir_actions_act_window_message +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 08:52+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ir_actions_act_window_message +#. openerp-web +#: code:addons/web_ir_actions_act_window_message/static/src/js/web_ir_actions_act_window_message.js:34 +#, python-format +msgid "Close" +msgstr "Sluiten" From 2048d0c45784cd18f968cd1ab1d1757ec8ab997c Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 18 Feb 2017 03:45:53 -0500 Subject: [PATCH 079/103] OCA Transbot updated translations from Transifex --- help_online/i18n/es_ES.po | 8 +- web_ckeditor4/i18n/es_ES.po | 6 +- web_dashboard_tile/i18n/es_ES.po | 139 +++++++++++++++++++++++++------ web_m2x_options/i18n/es_ES.po | 52 ++++++++++++ web_offline_warning/i18n/it.po | 4 +- web_shortcuts/i18n/es_ES.po | 6 +- 6 files changed, 178 insertions(+), 37 deletions(-) create mode 100644 web_m2x_options/i18n/es_ES.po diff --git a/help_online/i18n/es_ES.po b/help_online/i18n/es_ES.po index 43b13e96..ab6601bc 100644 --- a/help_online/i18n/es_ES.po +++ b/help_online/i18n/es_ES.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-22 16:27+0000\n" +"POT-Creation-Date: 2017-02-04 08:28+0000\n" +"PO-Revision-Date: 2017-02-16 15:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Creado en" #: field:export.help.wizard,display_name:0 field:help.online,display_name:0 #: field:import.help.wizard,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre para mostrar" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view @@ -141,7 +141,7 @@ msgstr "" #: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 #: field:import.help.wizard,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: help_online #: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 diff --git a/web_ckeditor4/i18n/es_ES.po b/web_ckeditor4/i18n/es_ES.po index 03c4fc96..aca00efd 100644 --- a/web_ckeditor4/i18n/es_ES.po +++ b/web_ckeditor4/i18n/es_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre para mostrar" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,id:0 @@ -30,7 +30,7 @@ msgstr "ID" #. module: web_ckeditor4 #: field:ckeditor.monkeypatch,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: web_ckeditor4 #: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch diff --git a/web_dashboard_tile/i18n/es_ES.po b/web_dashboard_tile/i18n/es_ES.po index 8a229368..84ff9d55 100644 --- a/web_dashboard_tile/i18n/es_ES.po +++ b/web_dashboard_tile/i18n/es_ES.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" -"PO-Revision-Date: 2016-08-30 01:11+0000\n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-16 15:55+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,8 @@ msgid "Active" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Average" msgstr "" @@ -38,12 +39,8 @@ msgid "Background color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,computed_value:0 -msgid "Computed value" -msgstr "" - -#. module: web_dashboard_tile -#: field:tile.tile,count:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Count" msgstr "" @@ -72,6 +69,7 @@ msgid "Dashboard" msgstr "" #. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile #: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile msgid "Dashboard Tile" msgstr "" @@ -90,7 +88,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre para mostrar" #. module: web_dashboard_tile #: field:tile.tile,domain:0 @@ -105,7 +103,12 @@ msgid "Error" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_id:0 +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 msgid "Field" msgstr "" @@ -122,12 +125,23 @@ msgid "Font color" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,field_function:0 +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 msgid "Function" msgstr "" #. module: web_dashboard_tile -#: field:tile.tile,helper:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 msgid "Helper" msgstr "" @@ -136,10 +150,18 @@ msgstr "" msgid "ID" msgstr "ID" +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: web_dashboard_tile #: field:tile.tile,write_uid:0 @@ -152,20 +174,47 @@ msgid "Last Updated on" msgstr "Última actualización en" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Maximum" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Median" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Minimum" msgstr "" +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" @@ -177,20 +226,48 @@ msgid "Name" msgstr "" #. module: web_dashboard_tile -#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view -msgid "Optional Field Informations" +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:142 +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 #, python-format msgid "Please select a field from the selected model." msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:150 -#, python-format -msgid "Please set both: 'Field' and 'Function'." +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" msgstr "" #. module: web_dashboard_tile @@ -206,7 +283,8 @@ msgid "Success" msgstr "" #. module: web_dashboard_tile -#: selection:tile.tile,field_function:0 +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 msgid "Sum" msgstr "" @@ -230,7 +308,13 @@ msgid "Tile:" msgstr "" #. module: web_dashboard_tile -#: code:addons/web_dashboard_tile/models/tile_tile.py:123 +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 #, python-format msgid "Unimplemented Feature. Search on Active field disabled." msgstr "" @@ -239,3 +323,8 @@ msgstr "" #: field:tile.tile,user_id:0 msgid "User" msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_m2x_options/i18n/es_ES.po b/web_m2x_options/i18n/es_ES.po new file mode 100644 index 00000000..42356158 --- /dev/null +++ b/web_m2x_options/i18n/es_ES.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-16 15:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_offline_warning/i18n/it.po b/web_offline_warning/i18n/it.po index a9d53023..c303027d 100644 --- a/web_offline_warning/i18n/it.po +++ b/web_offline_warning/i18n/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 00:46+0000\n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" "PO-Revision-Date: 2016-06-12 22:45+0000\n" "Last-Translator: <>\n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" @@ -36,4 +36,4 @@ msgstr "" #: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:18 #, python-format msgid "Warning" -msgstr "" +msgstr "Warning" diff --git a/web_shortcuts/i18n/es_ES.po b/web_shortcuts/i18n/es_ES.po index 51d2f0f5..bb537ff0 100644 --- a/web_shortcuts/i18n/es_ES.po +++ b/web_shortcuts/i18n/es_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 12:06+0000\n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" "PO-Revision-Date: 2015-11-07 11:20+0000\n" "Last-Translator: <>\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n" @@ -37,7 +37,7 @@ msgstr "Creado en" #. module: web_shortcuts #: field:web.shortcut,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre para mostrar" #. module: web_shortcuts #: field:web.shortcut,id:0 @@ -47,7 +47,7 @@ msgstr "ID" #. module: web_shortcuts #: field:web.shortcut,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: web_shortcuts #: field:web.shortcut,write_uid:0 From c91d4b375707269209b950addfb6125709998a8f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 25 Feb 2017 03:40:21 -0500 Subject: [PATCH 080/103] OCA Transbot updated translations from Transifex --- help_online/i18n/eu.po | 13 ++-- help_popup/i18n/eu.po | 65 +++++++++++++++++++ web_advanced_search_x2x/i18n/eu.po | 46 +++++++++++++ web_dashboard_tile/i18n/eu.po | 15 +++-- web_easy_switch_company/i18n/eu.po | 33 ++++++++++ web_export_view/i18n/eu.po | 47 ++++++++++++++ web_favicon/i18n/eu.po | 64 ++++++++++++++++++ web_ir_actions_act_window_message/i18n/eu.po | 25 +++++++ web_m2x_options/i18n/eu.po | 53 +++++++++++++++ web_offline_warning/i18n/eu.po | 39 +++++++++++ web_timeline/i18n/eu.po | 17 ++--- web_translate_dialog/i18n/eu.po | 9 +-- .../i18n/eu.po | 29 +++++++++ .../i18n/eu.po | 33 ++++++++++ web_widget_pattern/i18n/eu.po | 24 +++++++ web_x2m_defaults_from_previous/i18n/eu.po | 24 +++++++ web_x2m_filter/i18n/eu.po | 28 ++++++++ 17 files changed, 539 insertions(+), 25 deletions(-) create mode 100644 help_popup/i18n/eu.po create mode 100644 web_advanced_search_x2x/i18n/eu.po create mode 100644 web_easy_switch_company/i18n/eu.po create mode 100644 web_export_view/i18n/eu.po create mode 100644 web_favicon/i18n/eu.po create mode 100644 web_ir_actions_act_window_message/i18n/eu.po create mode 100644 web_m2x_options/i18n/eu.po create mode 100644 web_offline_warning/i18n/eu.po create mode 100644 web_widget_digitized_signature_user/i18n/eu.po create mode 100644 web_widget_many2many_tags_multi_selection/i18n/eu.po create mode 100644 web_widget_pattern/i18n/eu.po create mode 100644 web_x2m_defaults_from_previous/i18n/eu.po create mode 100644 web_x2m_filter/i18n/eu.po diff --git a/help_online/i18n/eu.po b/help_online/i18n/eu.po index a4ae2fe2..dbd65e83 100644 --- a/help_online/i18n/eu.po +++ b/help_online/i18n/eu.po @@ -3,13 +3,14 @@ # * help_online # # Translators: +# Esther Martín Menéndez , 2017 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2016-12-27 08:26+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2017-02-23 15:58+0000\n" +"Last-Translator: Esther Martín Menéndez \n" "Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Ezeztatu" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "Close" -msgstr "" +msgstr "Itxi" #. module: help_online #. openerp-web @@ -172,7 +173,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:98 #, python-format msgid "Ok" -msgstr "" +msgstr "Ok" #. module: help_online #. openerp-web @@ -227,7 +228,7 @@ msgstr "" #. module: help_online #: field:export.help.wizard,data:0 msgid "XML" -msgstr "" +msgstr "XML" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view diff --git a/help_popup/i18n/eu.po b/help_popup/i18n/eu.po new file mode 100644 index 00000000..044790e1 --- /dev/null +++ b/help_popup/i18n/eu.po @@ -0,0 +1,65 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_popup +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2017-02-23 07:59+0000\n" +"Last-Translator: Esther Martín Menéndez \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_popup +#. openerp-web +#: code:addons/help_popup/static/src/xml/popup_help.xml:5 +#, python-format +msgid " " +msgstr " " + +#. module: help_popup +#: field:ir.actions.act_window,advanced_help:0 +msgid "Advanced Help" +msgstr "" + +#. module: help_popup +#: model:ir.actions.report.xml,name:help_popup.report_help_popup +msgid "Contextual Help" +msgstr "" + +#. module: help_popup +#: field:ir.actions.act_window,enduser_help:0 +msgid "End User Help" +msgstr "" + +#. module: help_popup +#: view:website:help_popup.tpl_help +msgid "Help from Odoo" +msgstr "" + +#. module: help_popup +#: view:website:help_popup.tpl_help +msgid "Help from developer" +msgstr "" + +#. module: help_popup +#: help:ir.actions.act_window,advanced_help:0 +msgid "" +"Use this field to add custom content for documentation purpose\n" +"mainly by developers" +msgstr "" + +#. module: help_popup +#: help:ir.actions.act_window,enduser_help:0 +msgid "" +"Use this field to add custom content for documentation purpose\n" +"mainly by power users " +msgstr "" diff --git a/web_advanced_search_x2x/i18n/eu.po b/web_advanced_search_x2x/i18n/eu.po new file mode 100644 index 00000000..1cd62f64 --- /dev/null +++ b/web_advanced_search_x2x/i18n/eu.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_advanced_search_x2x +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/xml/web_advanced_search_x2x.xml:8 +#, python-format +msgid "Search" +msgstr "Bilatu" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:235 +#, python-format +msgid "Use criteria" +msgstr "" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:172 +#, python-format +msgid "invalid search domain" +msgstr "" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:47 +#, python-format +msgid "is in selection" +msgstr "" diff --git a/web_dashboard_tile/i18n/eu.po b/web_dashboard_tile/i18n/eu.po index 084fdb31..fded9a18 100644 --- a/web_dashboard_tile/i18n/eu.po +++ b/web_dashboard_tile/i18n/eu.po @@ -3,13 +3,14 @@ # * web_dashboard_tile # # Translators: +# Esther Martín Menéndez , 2017 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-19 17:14+0000\n" -"Last-Translator: OCA Transbot \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2017-02-23 15:58+0000\n" +"Last-Translator: Esther Martín Menéndez \n" "Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +101,7 @@ msgstr "" #: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 #, python-format msgid "Error" -msgstr "" +msgstr "Errorea" #. module: web_dashboard_tile #: field:tile.tile,error:0 @@ -218,7 +219,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,model_id:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: web_dashboard_tile #: field:tile.tile,name:0 @@ -286,7 +287,7 @@ msgstr "" #: selection:tile.tile,primary_function:0 #: selection:tile.tile,secondary_function:0 msgid "Sum" -msgstr "" +msgstr "Sum" #. module: web_dashboard_tile #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view @@ -327,4 +328,4 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,primary_value:0 msgid "Value" -msgstr "" +msgstr "Balioa" diff --git a/web_easy_switch_company/i18n/eu.po b/web_easy_switch_company/i18n/eu.po new file mode 100644 index 00000000..815f514d --- /dev/null +++ b/web_easy_switch_company/i18n/eu.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_easy_switch_company +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_company +msgid "Companies" +msgstr "Enpresak" + +#. module: web_easy_switch_company +#: field:res.company,logo_topbar:0 +msgid "Logo displayed in the switch company menu" +msgstr "" + +#. module: web_easy_switch_company +#: model:ir.model,name:web_easy_switch_company.model_res_users +msgid "Users" +msgstr "" diff --git a/web_export_view/i18n/eu.po b/web_export_view/i18n/eu.po new file mode 100644 index 00000000..ca37a719 --- /dev/null +++ b/web_export_view/i18n/eu.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_export_view +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2017-02-23 07:59+0000\n" +"Last-Translator: Esther Martín Menéndez \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:8 +#, python-format +msgid "Excel" +msgstr "Excel" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:6 +#, python-format +msgid "Export Current View" +msgstr "" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/js/web_export_view.js:84 +#, python-format +msgid "False" +msgstr "False" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/js/web_export_view.js:81 +#, python-format +msgid "True" +msgstr "True" diff --git a/web_favicon/i18n/eu.po b/web_favicon/i18n/eu.po new file mode 100644 index 00000000..d1e765af --- /dev/null +++ b/web_favicon/i18n/eu.po @@ -0,0 +1,64 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:00+0000\n" +"PO-Revision-Date: 2017-02-23 07:56+0000\n" +"Last-Translator: Esther Martín Menéndez \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Enpresak" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "Konfigurazioa" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "Favicon" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "image/gif" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "image/png" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "image/x-icon" diff --git a/web_ir_actions_act_window_message/i18n/eu.po b/web_ir_actions_act_window_message/i18n/eu.po new file mode 100644 index 00000000..5ff5a28f --- /dev/null +++ b/web_ir_actions_act_window_message/i18n/eu.po @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ir_actions_act_window_message +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:01+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ir_actions_act_window_message +#. openerp-web +#: code:addons/web_ir_actions_act_window_message/static/src/js/web_ir_actions_act_window_message.js:34 +#, python-format +msgid "Close" +msgstr "Itxi" diff --git a/web_m2x_options/i18n/eu.po b/web_m2x_options/i18n/eu.po new file mode 100644 index 00000000..94e676e6 --- /dev/null +++ b/web_m2x_options/i18n/eu.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:01+0000\n" +"PO-Revision-Date: 2017-02-23 15:55+0000\n" +"Last-Translator: Esther Martín Menéndez \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Models" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "Bilatu Gehiago..." diff --git a/web_offline_warning/i18n/eu.po b/web_offline_warning/i18n/eu.po new file mode 100644 index 00000000..9dcd2f67 --- /dev/null +++ b/web_offline_warning/i18n/eu.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_offline_warning +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 09:01+0000\n" +"PO-Revision-Date: 2016-06-12 22:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_offline_warning +#. openerp-web +#: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:20 +#, python-format +msgid "Ok" +msgstr "Ok" + +#. module: web_offline_warning +#. openerp-web +#: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:23 +#, python-format +msgid "The server cannot be reached. You are probably offline." +msgstr "" + +#. module: web_offline_warning +#. openerp-web +#: code:addons/web_offline_warning/static/src/js/web_offline_warning.js:18 +#, python-format +msgid "Warning" +msgstr "Kontuz" diff --git a/web_timeline/i18n/eu.po b/web_timeline/i18n/eu.po index 1258e818..88c6657d 100644 --- a/web_timeline/i18n/eu.po +++ b/web_timeline/i18n/eu.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Esther Martín Menéndez , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-06 08:58+0000\n" "PO-Revision-Date: 2016-12-06 08:58+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,14 +38,14 @@ msgstr "" #: code:addons/web_timeline/static/src/xml/web_timeline.xml:8 #, python-format msgid "Day" -msgstr "" +msgstr "Eguna" #. module: web_timeline #. openerp-web #: code:addons/web_timeline/static/src/js/web_timeline.js:426 #, python-format msgid "Edit" -msgstr "" +msgstr "Editatu" #. module: web_timeline #. openerp-web @@ -58,14 +59,14 @@ msgstr "Mezuak" #: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 #, python-format msgid "Month" -msgstr "" +msgstr "Hilabete" #. module: web_timeline #. openerp-web #: code:addons/web_timeline/static/src/js/web_timeline.js:427 #, python-format msgid "Save" -msgstr "" +msgstr "Gorde" #. module: web_timeline #. openerp-web @@ -86,18 +87,18 @@ msgstr "" #: code:addons/web_timeline/static/src/xml/web_timeline.xml:5 #, python-format msgid "Today" -msgstr "" +msgstr "Gaur" #. module: web_timeline #. openerp-web #: code:addons/web_timeline/static/src/xml/web_timeline.xml:9 #, python-format msgid "Week" -msgstr "" +msgstr "Astea" #. module: web_timeline #. openerp-web #: code:addons/web_timeline/static/src/xml/web_timeline.xml:11 #, python-format msgid "Year" -msgstr "" +msgstr "Urtea" diff --git a/web_translate_dialog/i18n/eu.po b/web_translate_dialog/i18n/eu.po index c2f79871..498bb94e 100644 --- a/web_translate_dialog/i18n/eu.po +++ b/web_translate_dialog/i18n/eu.po @@ -3,13 +3,14 @@ # * web_translate_dialog # # Translators: +# Esther Martín Menéndez , 2017 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2015-11-07 11:21+0000\n" -"Last-Translator: <>\n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-23 07:59+0000\n" +"Last-Translator: Esther Martín Menéndez \n" "Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +37,7 @@ msgstr "" #: code:addons/web_translate_dialog/static/src/xml/base.xml:29 #, python-format msgid "Save" -msgstr "" +msgstr "Gorde" #. module: web_translate_dialog #. openerp-web diff --git a/web_widget_digitized_signature_user/i18n/eu.po b/web_widget_digitized_signature_user/i18n/eu.po new file mode 100644 index 00000000..c583116d --- /dev/null +++ b/web_widget_digitized_signature_user/i18n/eu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_digitized_signature_user +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-23 07:59+0000\n" +"Last-Translator: Esther Martín Menéndez \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_digitized_signature_user +#: field:res.users,signature_image:0 +msgid "Signature" +msgstr "Sinadura" + +#. module: web_widget_digitized_signature_user +#: model:ir.model,name:web_widget_digitized_signature_user.model_res_users +msgid "Users" +msgstr "" diff --git a/web_widget_many2many_tags_multi_selection/i18n/eu.po b/web_widget_many2many_tags_multi_selection/i18n/eu.po new file mode 100644 index 00000000..25ea70a2 --- /dev/null +++ b/web_widget_many2many_tags_multi_selection/i18n/eu.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_many2many_tags_multi_selection +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-23 07:59+0000\n" +"Last-Translator: Esther Martín Menéndez \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_many2many_tags_multi_selection +#. openerp-web +#: code:addons/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js:20 +#, python-format +msgid "Create: " +msgstr "" + +#. module: web_widget_many2many_tags_multi_selection +#. openerp-web +#: code:addons/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js:20 +#, python-format +msgid "Search: " +msgstr "Bilatu:" diff --git a/web_widget_pattern/i18n/eu.po b/web_widget_pattern/i18n/eu.po new file mode 100644 index 00000000..305a85d6 --- /dev/null +++ b/web_widget_pattern/i18n/eu.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_pattern +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-04 08:29+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_pattern +#: view:res.partner:web_widget_pattern.view_partner_form +msgid "{'pattern': '[\\S]+@[\\S]+'}" +msgstr "{'pattern': '[\\S]+@[\\S]+'}" diff --git a/web_x2m_defaults_from_previous/i18n/eu.po b/web_x2m_defaults_from_previous/i18n/eu.po new file mode 100644 index 00000000..820d7345 --- /dev/null +++ b/web_x2m_defaults_from_previous/i18n/eu.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2m_defaults_from_previous +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-04 08:29+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_x2m_defaults_from_previous +#: view:res.groups:web_x2m_defaults_from_previous.view_groups_form +msgid "{'web_x2m_defaults_from_previous': ['model_id', 'name']}" +msgstr "{'web_x2m_defaults_from_previous': ['model_id', 'name']}" diff --git a/web_x2m_filter/i18n/eu.po b/web_x2m_filter/i18n/eu.po new file mode 100644 index 00000000..2eb4a808 --- /dev/null +++ b/web_x2m_filter/i18n/eu.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2m_filter +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-04 08:29+0000\n" +"PO-Revision-Date: 2017-02-04 08:29+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_x2m_filter +#: view:res.groups:web_x2m_filter.view_groups_form +msgid "" +"{'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', " +"3)], 'default': True}]}" +msgstr "" +"{'web_x2m_filter': [{'name': 'Only admins', 'domain': [('groups_id', '=', " +"3)], 'default': True}]}" From 0eb044ad984d5e22a6610323ef213f66d48046b1 Mon Sep 17 00:00:00 2001 From: Dennis Sluijk Date: Sun, 26 Feb 2017 20:17:14 +0100 Subject: [PATCH 081/103] [8.0][MIG][web_x2many_delete_all] Backport 10.0 -> 8.0 (#486) --- web_x2many_delete_all/README.rst | 58 +++++++++++++++++ web_x2many_delete_all/__init__.py | 3 + web_x2many_delete_all/__openerp__.py | 26 ++++++++ .../static/src/css/web_x2many_delete_all.css | 13 ++++ .../static/src/js/web_x2many_delete_all.js | 62 +++++++++++++++++++ .../static/src/xml/web_x2many_delete_all.xml | 16 +++++ web_x2many_delete_all/templates/assets.xml | 16 +++++ 7 files changed, 194 insertions(+) create mode 100644 web_x2many_delete_all/README.rst create mode 100644 web_x2many_delete_all/__init__.py create mode 100644 web_x2many_delete_all/__openerp__.py create mode 100644 web_x2many_delete_all/static/src/css/web_x2many_delete_all.css create mode 100644 web_x2many_delete_all/static/src/js/web_x2many_delete_all.js create mode 100644 web_x2many_delete_all/static/src/xml/web_x2many_delete_all.xml create mode 100644 web_x2many_delete_all/templates/assets.xml diff --git a/web_x2many_delete_all/README.rst b/web_x2many_delete_all/README.rst new file mode 100644 index 00000000..aa9a6c5d --- /dev/null +++ b/web_x2many_delete_all/README.rst @@ -0,0 +1,58 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +======================== +X2many Delete All Button +======================== + +Adds a button to Many2many and One2many fields that removes all linked records. + +Configuration +============= + +No configuration is needed. + +Usage +===== + +To use this module, you need to: + +#. Go to any Many2many or One2many field; +#. click 'Edit'; +#. click the top most trash can button. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Dennis Sluijk + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. \ No newline at end of file diff --git a/web_x2many_delete_all/__init__.py b/web_x2many_delete_all/__init__.py new file mode 100644 index 00000000..3bf7ea73 --- /dev/null +++ b/web_x2many_delete_all/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Onestein () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_x2many_delete_all/__openerp__.py b/web_x2many_delete_all/__openerp__.py new file mode 100644 index 00000000..efc2bbe2 --- /dev/null +++ b/web_x2many_delete_all/__openerp__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# © 2016 Onestein () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'X2many Delete All Button', + 'summary': """ + Adds a button to x2many fields that removes all linked records + """, + 'version': '8.0.1.0.0', + 'category': 'Web', + 'author': 'Onestein,Odoo Community Association (OCA)', + 'website': 'http://www.onestein.eu', + 'license': 'AGPL-3', + 'depends': [ + 'web', + ], + 'data': [ + 'templates/assets.xml' + ], + 'qweb': [ + 'static/src/xml/web_x2many_delete_all.xml' + ], + 'installable': True, + 'application': False, +} diff --git a/web_x2many_delete_all/static/src/css/web_x2many_delete_all.css b/web_x2many_delete_all/static/src/css/web_x2many_delete_all.css new file mode 100644 index 00000000..a6e4183d --- /dev/null +++ b/web_x2many_delete_all/static/src/css/web_x2many_delete_all.css @@ -0,0 +1,13 @@ +/* Copyright 2016 Onestein + * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ + +div.oe_list th.oe_list_record_delete, +div.oe_list th.oe_list_record_delete > button { + cursor: pointer; +} + +div.oe_list th.oe_list_record_delete > button { + border: none; + background: transparent; + padding: 0; +} diff --git a/web_x2many_delete_all/static/src/js/web_x2many_delete_all.js b/web_x2many_delete_all/static/src/js/web_x2many_delete_all.js new file mode 100644 index 00000000..6f5e7e4c --- /dev/null +++ b/web_x2many_delete_all/static/src/js/web_x2many_delete_all.js @@ -0,0 +1,62 @@ +/* Copyright 2016 Onestein + * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ + +openerp.web_x2many_delete_all = function(instance) { +"use strict"; + + instance.web.form.FieldMany2Many.include({ + events: { + 'click th.oe_list_record_delete': 'btn_delete_all_clicked' + }, + initialize_content: function() { + var self = this; + var res = this._super.apply(this, arguments); + this.is_loaded.then(function() { + self.toggle_btn_delete_all(); + }); + return res; + }, + toggle_btn_delete_all: function() { + if(this.get('effective_readonly')) { + this.$('th.oe_list_record_delete > button').addClass('hidden'); + } else { + this.$('th.oe_list_record_delete > button').removeClass('hidden'); + } + }, + btn_delete_all_clicked: function() { + if(this.get('effective_readonly')) return; + this.delete_all(); + }, + delete_all: function() { + this.list_view.do_delete(this.dataset.ids); + } + }); + + instance.web.form.FieldOne2Many.include({ + events: { + 'click th.oe_list_record_delete': 'btn_delete_all_clicked' + }, + reload_current_view: function() { + var self = this; + var res = this._super.apply(this, arguments); + res.then(function() { + self.toggle_btn_delete_all(); + }); + return res; + }, + toggle_btn_delete_all: function() { + if(this.get('effective_readonly')) { + this.$('th.oe_list_record_delete > button').addClass('hidden'); + } else { + this.$('th.oe_list_record_delete > button').removeClass('hidden'); + } + }, + btn_delete_all_clicked: function() { + if(this.get('effective_readonly')) return; + this.delete_all(); + }, + delete_all: function() { + this.viewmanager.views.list.controller.do_delete(this.dataset.ids); + } + }); +} diff --git a/web_x2many_delete_all/static/src/xml/web_x2many_delete_all.xml b/web_x2many_delete_all/static/src/xml/web_x2many_delete_all.xml new file mode 100644 index 00000000..28c5a8d5 --- /dev/null +++ b/web_x2many_delete_all/static/src/xml/web_x2many_delete_all.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/web_x2many_delete_all/templates/assets.xml b/web_x2many_delete_all/templates/assets.xml new file mode 100644 index 00000000..69e305f6 --- /dev/null +++ b/web_x2many_delete_all/templates/assets.xml @@ -0,0 +1,16 @@ + + + + + + + + From 8dc1dff7fdf811fe592569e7163a3c3fbed63568 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 21 Mar 2017 02:37:15 +0100 Subject: [PATCH 088/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c313efb8..5e278d68 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ addon | version | summary [web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.1.0 | Show list fields as a matrix [web_x2m_defaults_from_previous](web_x2m_defaults_from_previous/) | 8.0.1.0.0 | Use previous input as default for next line [web_x2m_filter](web_x2m_filter/) | 8.0.1.0.0 | Allows to define filters in x2many list fields +[web_x2many_add_button_position](web_x2many_add_button_position/) | 8.0.1.0.0 | Configurable position for the 'Add an Item' button [web_x2many_delete_all](web_x2many_delete_all/) | 8.0.1.0.0 | Adds a button to x2many fields that removes all linked records Unported addons From a3883b07f34b170aaf3e6a8ca895d6007f38e5fa Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 21 Mar 2017 04:47:44 +0100 Subject: [PATCH 089/103] [ADD] setup.py --- .../web_x2many_add_button_position/odoo_addons/__init__.py | 1 + .../odoo_addons/web_x2many_add_button_position | 1 + setup/web_x2many_add_button_position/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_x2many_add_button_position/odoo_addons/__init__.py create mode 120000 setup/web_x2many_add_button_position/odoo_addons/web_x2many_add_button_position create mode 100644 setup/web_x2many_add_button_position/setup.py diff --git a/setup/web_x2many_add_button_position/odoo_addons/__init__.py b/setup/web_x2many_add_button_position/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_x2many_add_button_position/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_x2many_add_button_position/odoo_addons/web_x2many_add_button_position b/setup/web_x2many_add_button_position/odoo_addons/web_x2many_add_button_position new file mode 120000 index 00000000..c5dc850f --- /dev/null +++ b/setup/web_x2many_add_button_position/odoo_addons/web_x2many_add_button_position @@ -0,0 +1 @@ +../../../web_x2many_add_button_position \ No newline at end of file diff --git a/setup/web_x2many_add_button_position/setup.py b/setup/web_x2many_add_button_position/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_x2many_add_button_position/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 5603f775dd3354a1951d15e9105745c8b3b25d38 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sat, 25 Mar 2017 09:41:11 +0100 Subject: [PATCH 090/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5e278d68..a716e931 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ This project aims to deal with modules related to the webclient of Odoo. You'll - Generally add clientside functionality [//]: # (addons) + Available addons ---------------- addon | version | summary From a83a0102d3bdc4fae0d9789520b0802197ecd88d Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 28 Mar 2017 02:48:14 +0200 Subject: [PATCH 091/103] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a716e931..8f8d019d 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ addon | version | summary [web_x2many_add_button_position](web_x2many_add_button_position/) | 8.0.1.0.0 | Configurable position for the 'Add an Item' button [web_x2many_delete_all](web_x2many_delete_all/) | 8.0.1.0.0 | Adds a button to x2many fields that removes all linked records + Unported addons --------------- addon | version | summary From f851728d0f73620208ca540fa8ab50b8155c9e72 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 1 May 2017 18:53:56 +0200 Subject: [PATCH 092/103] [ADD] search only a few milliseconds after a keypress --- .../src/js/web_search_autocomplete_prefetch.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js index 1ff401ef..4ae89e9f 100644 --- a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js +++ b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js @@ -84,6 +84,7 @@ openerp.web_search_autocomplete_prefetch = function(instance) }); instance.web.search.AutoComplete.include({ + keypress_timeout: 200, select_item: function() { if(!this.current_result) @@ -92,5 +93,18 @@ openerp.web_search_autocomplete_prefetch = function(instance) } return this._super.apply(this, arguments); }, + initiate_search: function(query) + { + var self = this, + _super = this._super, + last_timeout = null; + this.last_timeout = last_timeout = window.setTimeout(function() + { + if(self.last_timeout == last_timeout) + { + _super.apply(self, [query]); + } + }, this.keypress_timeout) + }, }); } From 66c70fffbe5d5a8ffc1a1a75493b36794b01658c Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 1 May 2017 19:11:22 +0200 Subject: [PATCH 093/103] [IMP] slightly higher timeout --- .../static/src/js/web_search_autocomplete_prefetch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js index 4ae89e9f..99556afa 100644 --- a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js +++ b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js @@ -84,7 +84,7 @@ openerp.web_search_autocomplete_prefetch = function(instance) }); instance.web.search.AutoComplete.include({ - keypress_timeout: 200, + keypress_timeout: 350, select_item: function() { if(!this.current_result) From d4ee6d8fbabde6ba522a01f4e563d9b66b4ce982 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 2 May 2017 03:21:54 +0200 Subject: [PATCH 094/103] OCA Transbot updated translations from Transifex --- help_online/i18n/ca.po | 6 +- help_online/i18n/zh_CN.po | 6 +- web_dashboard_tile/i18n/ca.po | 10 +-- web_easy_switch_company/i18n/ca.po | 4 +- web_export_view/i18n/nl.po | 16 ++++- web_favicon/i18n/ca.po | 63 +++++++++++++++++++ web_favicon/i18n/de.po | 4 +- web_graph_improved/i18n/es_BO.po | 38 +++++++++++ web_graph_improved/i18n/es_CL.po | 38 +++++++++++ web_graph_improved/i18n/es_DO.po | 38 +++++++++++ web_graph_improved/i18n/es_PY.po | 38 +++++++++++ web_graph_improved/i18n/et.po | 38 +++++++++++ web_graph_improved/i18n/fa.po | 38 +++++++++++ web_graph_improved/i18n/gl.po | 38 +++++++++++ web_graph_improved/i18n/hu.po | 38 +++++++++++ web_graph_improved/i18n/id.po | 38 +++++++++++ web_graph_improved/i18n/ko.po | 38 +++++++++++ web_graph_improved/i18n/nl.po | 38 +++++++++++ web_graph_improved/i18n/pt.po | 38 +++++++++++ web_graph_improved/i18n/ro.po | 38 +++++++++++ web_graph_improved/i18n/ru.po | 38 +++++++++++ web_graph_improved/i18n/sr.po | 38 +++++++++++ .../i18n/zh_CN.po | 25 ++++++++ web_m2x_options/i18n/ca.po | 52 +++++++++++++++ web_m2x_options/i18n/nl.po | 53 ++++++++++++++++ web_widget_one2many_tags/i18n/nl.po | 27 ++++++++ web_widget_x2many_2d_matrix/i18n/es_BO.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/es_CL.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/es_DO.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/es_PY.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/et.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/gl.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/hu.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/id.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/ko.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/nl.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/pt.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/ro.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/ru.po | 26 ++++++++ web_widget_x2many_2d_matrix/i18n/sr.po | 26 ++++++++ 40 files changed, 1182 insertions(+), 18 deletions(-) create mode 100644 web_favicon/i18n/ca.po create mode 100644 web_graph_improved/i18n/es_BO.po create mode 100644 web_graph_improved/i18n/es_CL.po create mode 100644 web_graph_improved/i18n/es_DO.po create mode 100644 web_graph_improved/i18n/es_PY.po create mode 100644 web_graph_improved/i18n/et.po create mode 100644 web_graph_improved/i18n/fa.po create mode 100644 web_graph_improved/i18n/gl.po create mode 100644 web_graph_improved/i18n/hu.po create mode 100644 web_graph_improved/i18n/id.po create mode 100644 web_graph_improved/i18n/ko.po create mode 100644 web_graph_improved/i18n/nl.po create mode 100644 web_graph_improved/i18n/pt.po create mode 100644 web_graph_improved/i18n/ro.po create mode 100644 web_graph_improved/i18n/ru.po create mode 100644 web_graph_improved/i18n/sr.po create mode 100644 web_ir_actions_act_window_message/i18n/zh_CN.po create mode 100644 web_m2x_options/i18n/ca.po create mode 100644 web_m2x_options/i18n/nl.po create mode 100644 web_widget_one2many_tags/i18n/nl.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_BO.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_CL.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_DO.po create mode 100644 web_widget_x2many_2d_matrix/i18n/es_PY.po create mode 100644 web_widget_x2many_2d_matrix/i18n/et.po create mode 100644 web_widget_x2many_2d_matrix/i18n/gl.po create mode 100644 web_widget_x2many_2d_matrix/i18n/hu.po create mode 100644 web_widget_x2many_2d_matrix/i18n/id.po create mode 100644 web_widget_x2many_2d_matrix/i18n/ko.po create mode 100644 web_widget_x2many_2d_matrix/i18n/nl.po create mode 100644 web_widget_x2many_2d_matrix/i18n/pt.po create mode 100644 web_widget_x2many_2d_matrix/i18n/ro.po create mode 100644 web_widget_x2many_2d_matrix/i18n/ru.po create mode 100644 web_widget_x2many_2d_matrix/i18n/sr.po diff --git a/help_online/i18n/ca.po b/help_online/i18n/ca.po index 1b53f7ec..5233a689 100644 --- a/help_online/i18n/ca.po +++ b/help_online/i18n/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-07 08:32+0000\n" -"PO-Revision-Date: 2017-01-13 09:22+0000\n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2017-04-21 09:34+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" "MIME-Version: 1.0\n" @@ -64,7 +64,7 @@ msgstr "Veure el nom" #. module: help_online #: view:export.help.wizard:help_online.export_help_wizard_view msgid "Export" -msgstr "" +msgstr "Exportar " #. module: help_online #: code:addons/help_online/models/export_help_wizard.py:267 diff --git a/help_online/i18n/zh_CN.po b/help_online/i18n/zh_CN.po index c6313ad0..7c2f3e69 100644 --- a/help_online/i18n/zh_CN.po +++ b/help_online/i18n/zh_CN.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2017-04-19 01:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "取消" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "Close" -msgstr "" +msgstr "关闭" #. module: help_online #. openerp-web diff --git a/web_dashboard_tile/i18n/ca.po b/web_dashboard_tile/i18n/ca.po index 2d038bcd..a1eb480c 100644 --- a/web_dashboard_tile/i18n/ca.po +++ b/web_dashboard_tile/i18n/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-14 09:35+0000\n" -"PO-Revision-Date: 2017-01-17 19:17+0000\n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2017-03-30 17:07+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,action_id:0 msgid "Action" -msgstr "" +msgstr "Acció" #. module: web_dashboard_tile #: field:tile.tile,active:0 @@ -127,7 +127,7 @@ msgstr "" #. module: web_dashboard_tile #: field:tile.tile,primary_format:0 msgid "Format" -msgstr "" +msgstr "Format" #. module: web_dashboard_tile #: field:tile.tile,primary_function:0 @@ -138,7 +138,7 @@ msgstr "" #: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view #: field:tile.tile,group_ids:0 msgid "Groups" -msgstr "" +msgstr "Grups" #. module: web_dashboard_tile #: field:tile.tile,primary_helper:0 diff --git a/web_easy_switch_company/i18n/ca.po b/web_easy_switch_company/i18n/ca.po index 32cedb55..2e6cc7f0 100644 --- a/web_easy_switch_company/i18n/ca.po +++ b/web_easy_switch_company/i18n/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-14 09:35+0000\n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" "PO-Revision-Date: 2015-11-07 11:19+0000\n" "Last-Translator: <>\n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" @@ -20,7 +20,7 @@ msgstr "" #. module: web_easy_switch_company #: model:ir.model,name:web_easy_switch_company.model_res_company msgid "Companies" -msgstr "" +msgstr "Empreses" #. module: web_easy_switch_company #: field:res.company,logo_topbar:0 diff --git a/web_export_view/i18n/nl.po b/web_export_view/i18n/nl.po index 6945f589..72cdb0f6 100644 --- a/web_export_view/i18n/nl.po +++ b/web_export_view/i18n/nl.po @@ -3,12 +3,22 @@ # * web_export_view # # Translators: +# Ahmet Altinisik , 2015-2016 +# Antonio Trueba, 2016 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# Jarmo Kortetjärvi , 2016 +# Jesús Alan Ramos Rodríguez , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2016 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-23 13:46+0000\n" -"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2017-04-18 11:02+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" "MIME-Version: 1.0\n" @@ -43,4 +53,4 @@ msgstr "" #: code:addons/web_export_view/static/src/js/web_export_view.js:81 #, python-format msgid "True" -msgstr "" +msgstr "Waar" diff --git a/web_favicon/i18n/ca.po b/web_favicon/i18n/ca.po new file mode 100644 index 00000000..d5e27180 --- /dev/null +++ b/web_favicon/i18n/ca.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_favicon +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2016-04-07 13:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_favicon +#: model:ir.model,name:web_favicon.model_res_company +msgid "Companies" +msgstr "Empreses" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Configuration" +msgstr "" + +#. module: web_favicon +#: view:res.company:web_favicon.view_company_form +msgid "Favicon" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend:0 +msgid "Favicon backend" +msgstr "" + +#. module: web_favicon +#: field:res.company,favicon_backend_mimetype:0 +msgid "Favicon backend mimetype" +msgstr "" + +#. module: web_favicon +#: help:res.company,favicon_backend_mimetype:0 +msgid "Set the mimetype of your file." +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/gif" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/png" +msgstr "" + +#. module: web_favicon +#: selection:res.company,favicon_backend_mimetype:0 +msgid "image/x-icon" +msgstr "" diff --git a/web_favicon/i18n/de.po b/web_favicon/i18n/de.po index fdd4c8ae..fca6ee73 100644 --- a/web_favicon/i18n/de.po +++ b/web_favicon/i18n/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 08:27+0000\n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" "PO-Revision-Date: 2016-04-07 13:51+0000\n" "Last-Translator: <>\n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" @@ -25,7 +25,7 @@ msgstr "Unternehmen" #. module: web_favicon #: view:res.company:web_favicon.view_company_form msgid "Configuration" -msgstr "" +msgstr "Konfiguration" #. module: web_favicon #: view:res.company:web_favicon.view_company_form diff --git a/web_graph_improved/i18n/es_BO.po b/web_graph_improved/i18n/es_BO.po new file mode 100644 index 00000000..80406f90 --- /dev/null +++ b/web_graph_improved/i18n/es_BO.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Bolivia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_BO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_CL.po b/web_graph_improved/i18n/es_CL.po new file mode 100644 index 00000000..06f665a5 --- /dev/null +++ b/web_graph_improved/i18n/es_CL.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_DO.po b/web_graph_improved/i18n/es_DO.po new file mode 100644 index 00000000..f5d6f3de --- /dev/null +++ b/web_graph_improved/i18n/es_DO.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/es_PY.po b/web_graph_improved/i18n/es_PY.po new file mode 100644 index 00000000..c8e94801 --- /dev/null +++ b/web_graph_improved/i18n/es_PY.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/et.po b/web_graph_improved/i18n/et.po new file mode 100644 index 00000000..b327a692 --- /dev/null +++ b/web_graph_improved/i18n/et.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Kokku" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/fa.po b/web_graph_improved/i18n/fa.po new file mode 100644 index 00000000..f15a8358 --- /dev/null +++ b/web_graph_improved/i18n/fa.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "جمع کل" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/gl.po b/web_graph_improved/i18n/gl.po new file mode 100644 index 00000000..097e4fa1 --- /dev/null +++ b/web_graph_improved/i18n/gl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/hu.po b/web_graph_improved/i18n/hu.po new file mode 100644 index 00000000..bd940f5f --- /dev/null +++ b/web_graph_improved/i18n/hu.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Összesen" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/id.po b/web_graph_improved/i18n/id.po new file mode 100644 index 00000000..5e1bc865 --- /dev/null +++ b/web_graph_improved/i18n/id.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/ko.po b/web_graph_improved/i18n/ko.po new file mode 100644 index 00000000..1bbc0087 --- /dev/null +++ b/web_graph_improved/i18n/ko.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "총계" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/nl.po b/web_graph_improved/i18n/nl.po new file mode 100644 index 00000000..c9d448ca --- /dev/null +++ b/web_graph_improved/i18n/nl.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Totaal" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/pt.po b/web_graph_improved/i18n/pt.po new file mode 100644 index 00000000..76505ecf --- /dev/null +++ b/web_graph_improved/i18n/pt.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/ro.po b/web_graph_improved/i18n/ro.po new file mode 100644 index 00000000..ef3af9e9 --- /dev/null +++ b/web_graph_improved/i18n/ro.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Total" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/ru.po b/web_graph_improved/i18n/ru.po new file mode 100644 index 00000000..69e74493 --- /dev/null +++ b/web_graph_improved/i18n/ru.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Всего" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_graph_improved/i18n/sr.po b/web_graph_improved/i18n/sr.po new file mode 100644 index 00000000..61f7e865 --- /dev/null +++ b/web_graph_improved/i18n/sr.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_graph_improved +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:21+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:13 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:14 +#, python-format +msgid "Total" +msgstr "Ukupno" + +#. module: web_graph_improved +#. openerp-web +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:30 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:40 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:44 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:49 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:54 +#: code:addons/web_graph_improved/static/src/js/web_graph_improved.js:57 +#, python-format +msgid "Undefined" +msgstr "" diff --git a/web_ir_actions_act_window_message/i18n/zh_CN.po b/web_ir_actions_act_window_message/i18n/zh_CN.po new file mode 100644 index 00000000..f566add4 --- /dev/null +++ b/web_ir_actions_act_window_message/i18n/zh_CN.po @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ir_actions_act_window_message +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_ir_actions_act_window_message +#. openerp-web +#: code:addons/web_ir_actions_act_window_message/static/src/js/web_ir_actions_act_window_message.js:34 +#, python-format +msgid "Close" +msgstr "关闭" diff --git a/web_m2x_options/i18n/ca.po b/web_m2x_options/i18n/ca.po new file mode 100644 index 00000000..ca3f0143 --- /dev/null +++ b/web_m2x_options/i18n/ca.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2017-03-21 09:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "" + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Models " + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "" diff --git a/web_m2x_options/i18n/nl.po b/web_m2x_options/i18n/nl.po new file mode 100644 index 00000000..2ffafa69 --- /dev/null +++ b/web_m2x_options/i18n/nl.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_m2x_options +# +# Translators: +# lfreeke , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2017-04-18 10:43+0000\n" +"Last-Translator: lfreeke \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:206 +#: code:addons/web_m2x_options/static/src/js/form.js:354 +#, python-format +msgid "Create \"%s\"" +msgstr "Aanmaken \" %s\"" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:232 +#: code:addons/web_m2x_options/static/src/js/form.js:380 +#, python-format +msgid "Create and Edit..." +msgstr "Aanmaken en Bewerken..." + +#. module: web_m2x_options +#: field:ir.model,disable_quick_create:0 +msgid "Disable quick create" +msgstr "Schakel snel aanmaken uit" + +#. module: web_m2x_options +#: model:ir.model,name:web_m2x_options.model_ir_model +msgid "Models" +msgstr "Modellen" + +#. module: web_m2x_options +#. openerp-web +#: code:addons/web_m2x_options/static/src/js/form.js:167 +#: code:addons/web_m2x_options/static/src/js/form.js:324 +#, python-format +msgid "Search More..." +msgstr "Zoek meer..." diff --git a/web_widget_one2many_tags/i18n/nl.po b/web_widget_one2many_tags/i18n/nl.po new file mode 100644 index 00000000..630b1eda --- /dev/null +++ b/web_widget_one2many_tags/i18n/nl.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_one2many_tags +# +# Translators: +# lfreeke , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2017-04-18 10:50+0000\n" +"Last-Translator: lfreeke \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_one2many_tags +#. openerp-web +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:121 +#: code:addons/web_widget_one2many_tags/static/src/js/web_widget_one2many_tags.js:202 +#, python-format +msgid "New record" +msgstr "Nieuw record" diff --git a/web_widget_x2many_2d_matrix/i18n/es_BO.po b/web_widget_x2many_2d_matrix/i18n/es_BO.po new file mode 100644 index 00000000..b2a16de8 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_BO.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Bolivia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_BO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_CL.po b/web_widget_x2many_2d_matrix/i18n/es_CL.po new file mode 100644 index 00000000..5de6dab9 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_CL.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_DO.po b/web_widget_x2many_2d_matrix/i18n/es_DO.po new file mode 100644 index 00000000..edd5a2ad --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_DO.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/es_PY.po b/web_widget_x2many_2d_matrix/i18n/es_PY.po new file mode 100644 index 00000000..07359a2c --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/es_PY.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/et.po b/web_widget_x2many_2d_matrix/i18n/et.po new file mode 100644 index 00000000..b70ecdc4 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/et.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Kokku" diff --git a/web_widget_x2many_2d_matrix/i18n/gl.po b/web_widget_x2many_2d_matrix/i18n/gl.po new file mode 100644 index 00000000..155285bf --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/gl.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/hu.po b/web_widget_x2many_2d_matrix/i18n/hu.po new file mode 100644 index 00000000..c37c6338 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/hu.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Összesen" diff --git a/web_widget_x2many_2d_matrix/i18n/id.po b/web_widget_x2many_2d_matrix/i18n/id.po new file mode 100644 index 00000000..6e0f3fc5 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/id.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/ko.po b/web_widget_x2many_2d_matrix/i18n/ko.po new file mode 100644 index 00000000..aa7fa3fa --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/ko.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "총계" diff --git a/web_widget_x2many_2d_matrix/i18n/nl.po b/web_widget_x2many_2d_matrix/i18n/nl.po new file mode 100644 index 00000000..01d14e4c --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/nl.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Totaal" diff --git a/web_widget_x2many_2d_matrix/i18n/pt.po b/web_widget_x2many_2d_matrix/i18n/pt.po new file mode 100644 index 00000000..b97455aa --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/pt.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/ro.po b/web_widget_x2many_2d_matrix/i18n/ro.po new file mode 100644 index 00000000..648f7a60 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/ro.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Total" diff --git a/web_widget_x2many_2d_matrix/i18n/ru.po b/web_widget_x2many_2d_matrix/i18n/ru.po new file mode 100644 index 00000000..9fef7b67 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/ru.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Всего" diff --git a/web_widget_x2many_2d_matrix/i18n/sr.po b/web_widget_x2many_2d_matrix/i18n/sr.po new file mode 100644 index 00000000..a5e2f215 --- /dev/null +++ b/web_widget_x2many_2d_matrix/i18n/sr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_x2many_2d_matrix +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"PO-Revision-Date: 2015-11-07 11:22+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_widget_x2many_2d_matrix +#. openerp-web +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:11 +#: code:addons/web_widget_x2many_2d_matrix/static/src/xml/web_widget_x2many_2d_matrix.xml:28 +#, python-format +msgid "Total" +msgstr "Ukupno" From 08b3b724f042f3269b0ba60ce6ca343fd3e26a58 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Fri, 5 May 2017 12:05:02 +0200 Subject: [PATCH 095/103] [ADD] make prefetch timeout configurable --- web_search_autocomplete_prefetch/README.rst | 9 +++++++-- .../src/js/web_search_autocomplete_prefetch.js | 17 +++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/web_search_autocomplete_prefetch/README.rst b/web_search_autocomplete_prefetch/README.rst index e8f8af57..88b25800 100644 --- a/web_search_autocomplete_prefetch/README.rst +++ b/web_search_autocomplete_prefetch/README.rst @@ -12,7 +12,6 @@ term in the background and only offers an option if this search has a result. Usage ===== -* go to ... .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/162/8.0 @@ -26,11 +25,17 @@ Known issues / Roadmap * some searches (especially via function fields) can be very heavy on the server. - To disable prefetching on a per field basis, set the option `web_search_autocomplete_prefetch.disable`:: + options="{'web_search_autocomplete_prefetch.disable': true}" + on your field in the search view. +* by default, the addon triggers a search 350 milliseconds after the last key + pess. If you want a different timeout, set the parameter + ``web_search_autocomplete_prefetch.keypress_timeout`` to the amount of + milliseconds you need as timeout. + Bug Tracker =========== diff --git a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js index 99556afa..1d34dde5 100644 --- a/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js +++ b/web_search_autocomplete_prefetch/static/src/js/web_search_autocomplete_prefetch.js @@ -85,6 +85,23 @@ openerp.web_search_autocomplete_prefetch = function(instance) instance.web.search.AutoComplete.include({ keypress_timeout: 350, + start: function() + { + var self = this; + return jQuery.when( + this._super.apply(this, arguments), + new instance.web.Model('ir.config_parameter').call( + 'get_param', + [ + 'web_search_autocomplete_prefetch.keypress_timeout', + this.keypress_timeout + ] + ).then(function(keypress_timeout) + { + self.keypress_timeout = parseInt(keypress_timeout); + }) + ); + }, select_item: function() { if(!this.current_result) From 9b15b39609a535eba29517ee94c80c6d0647d86f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 13 May 2017 11:47:11 +0200 Subject: [PATCH 096/103] OCA Transbot updated translations from Transifex --- help_online/i18n/fr_CH.po | 6 ++--- help_online/i18n/ru.po | 6 ++--- .../i18n/fr_CH.po | 25 +++++++++++++++++++ web_timeline/i18n/fi.po | 2 +- 4 files changed, 32 insertions(+), 7 deletions(-) create mode 100644 web_ir_actions_act_window_message/i18n/fr_CH.po diff --git a/help_online/i18n/fr_CH.po b/help_online/i18n/fr_CH.po index ce5fce46..d6a41664 100644 --- a/help_online/i18n/fr_CH.po +++ b/help_online/i18n/fr_CH.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-29 19:38+0000\n" -"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"POT-Creation-Date: 2017-05-02 01:43+0000\n" +"PO-Revision-Date: 2017-05-11 14:15+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "Annuler" #: view:export.help.wizard:help_online.export_help_wizard_view #: view:import.help.wizard:help_online.import_help_wizard_view msgid "Close" -msgstr "" +msgstr "Fermer" #. module: help_online #. openerp-web diff --git a/help_online/i18n/ru.po b/help_online/i18n/ru.po index 131a9524..30b78c70 100644 --- a/help_online/i18n/ru.po +++ b/help_online/i18n/ru.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"POT-Creation-Date: 2017-05-02 01:43+0000\n" +"PO-Revision-Date: 2017-05-11 14:11+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" #: code:addons/help_online/static/src/js/help_online.js:91 #, python-format msgid "Confirm" -msgstr "" +msgstr "Изменить" #. module: help_online #: code:addons/help_online/models/help_online.py:57 diff --git a/web_ir_actions_act_window_message/i18n/fr_CH.po b/web_ir_actions_act_window_message/i18n/fr_CH.po new file mode 100644 index 00000000..85f0e40c --- /dev/null +++ b/web_ir_actions_act_window_message/i18n/fr_CH.po @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ir_actions_act_window_message +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-02 01:44+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_ir_actions_act_window_message +#. openerp-web +#: code:addons/web_ir_actions_act_window_message/static/src/js/web_ir_actions_act_window_message.js:34 +#, python-format +msgid "Close" +msgstr "Fermer" diff --git a/web_timeline/i18n/fi.po b/web_timeline/i18n/fi.po index 04036ac7..88eb9a8c 100644 --- a/web_timeline/i18n/fi.po +++ b/web_timeline/i18n/fi.po @@ -59,7 +59,7 @@ msgstr "Viestejä" #: code:addons/web_timeline/static/src/xml/web_timeline.xml:10 #, python-format msgid "Month" -msgstr "" +msgstr "Kuukausi" #. module: web_timeline #. openerp-web From d681856f0dbe2b313033c0fb3e51d5dc37bc3557 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 20 May 2017 11:47:03 +0200 Subject: [PATCH 097/103] OCA Transbot updated translations from Transifex --- web_advanced_search_x2x/i18n/da.po | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 web_advanced_search_x2x/i18n/da.po diff --git a/web_advanced_search_x2x/i18n/da.po b/web_advanced_search_x2x/i18n/da.po new file mode 100644 index 00000000..739977b5 --- /dev/null +++ b/web_advanced_search_x2x/i18n/da.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_advanced_search_x2x +# +# Translators: +# Hans Henrik Gabelgaard , 2017 +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-13 10:01+0000\n" +"PO-Revision-Date: 2017-05-18 05:30+0000\n" +"Last-Translator: Hans Henrik Gabelgaard \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/xml/web_advanced_search_x2x.xml:8 +#, python-format +msgid "Search" +msgstr "Søg" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:235 +#, python-format +msgid "Use criteria" +msgstr "Anvend kriterie" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:172 +#, python-format +msgid "invalid search domain" +msgstr "Ugyldigt søgedomæne" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:47 +#, python-format +msgid "is in selection" +msgstr "er i udvælgelse" From b03164db9027875494d94a72211d6343b1d056c0 Mon Sep 17 00:00:00 2001 From: Hpar Date: Tue, 30 May 2017 12:31:05 +0200 Subject: [PATCH 098/103] [IMP] web_m2x_options: Perf issue #615 (#641) * fix unecessary calls Do check_access_rights and disable_quick_create calls only once per field. Closes #615 --- web_m2x_options/static/src/js/form.js | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/web_m2x_options/static/src/js/form.js b/web_m2x_options/static/src/js/form.js index 1d0d5502..ad49ce92 100644 --- a/web_m2x_options/static/src/js/form.js +++ b/web_m2x_options/static/src/js/form.js @@ -70,7 +70,7 @@ openerp.web_m2x_options = function (instance) { if (_.isUndefined(this.view)) return this._super.apply(this, arguments); if (!_.isUndefined(this.view.ir_options['web_m2x_options.limit'])) { - this.limit = parseInt(this.view.ir_options['web_m2x_options.limit']); + this.limit = parseInt(this.view.ir_options['web_m2x_options.limit'],10); } if (typeof this.options.limit === 'number') { @@ -98,24 +98,25 @@ openerp.web_m2x_options = function (instance) { 'ilike', this.limit + 1, self.build_context())); - var create_rights; - if (!(self.options && (self.options.no_create || self.options.no_create_edit))) { - // check quick create options - var target_model = this.field.relation - create_rights = new instance.web.Model('ir.model'). + this.create_rights = this.create_rights || (function () { + //call check_access_rights once + var target_model = self.field.relation + if (self.options.no_create || self.options.no_create_edit) + return $.when(false); + + return new instance.web.Model('ir.model'). query(['disable_quick_create']). filter([['model', '=', target_model]]). first(). then(function(result){ if(result.disable_quick_create) return $.when(false); - else - return new instance.web.Model(target_model).call( - "check_access_rights", ["create", false]); + return new instance.web.Model(target_model).call( + "check_access_rights", ["create", false]); }); - } + })(); - $.when(search_result, create_rights).then(function (data, can_create) { + $.when(search_result, this.create_rights).then(function (data, can_create) { self.can_create = can_create; // for ``.show_error_displayer()`` self.last_search = data; @@ -291,7 +292,7 @@ openerp.web_m2x_options = function (instance) { // returned. if (!_.isUndefined(this.view.ir_options['web_m2x_options.limit'])) { - this.limit = parseInt(this.view.ir_options['web_m2x_options.limit']); + this.limit = parseInt(this.view.ir_options['web_m2x_options.limit'], 10); } if (typeof this.options.limit === 'number') { @@ -401,7 +402,7 @@ openerp.web_m2x_options = function (instance) { .css('cursor', 'pointer') .click(function(e) { - var id = parseInt(jQuery(this).attr('data-id')); + var id = parseInt(jQuery(this).attr('data-id'), 10); self.do_action({ type: 'ir.actions.act_window', res_model: self.field.relation, From 79cd7dc7e3b9beb50a673294eaf5c502e2f5b732 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Fri, 28 Apr 2017 15:07:21 +0200 Subject: [PATCH 099/103] [FIX] we need to parse the parameter to an int --- .../static/src/js/web_menu_navbar_needaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js b/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js index dcb26826..783fce3e 100644 --- a/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js +++ b/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js @@ -36,7 +36,7 @@ openerp.web_menu_navbar_needaction = function(instance) }, refresh_navbar_needaction: function(timeout) { - if(timeout) + if(parseInt(timeout)) { setTimeout(this.proxy(this.refresh_navbar_needaction), timeout, timeout); } From 848d1ef49357506a278cee76695ec61ba8cb0ba4 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Tue, 30 May 2017 16:39:52 +0200 Subject: [PATCH 100/103] Explicit radix According to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt#Parameters, we should always specify the radix. --- .../static/src/js/web_menu_navbar_needaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js b/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js index 783fce3e..0db8a2c8 100644 --- a/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js +++ b/web_menu_navbar_needaction/static/src/js/web_menu_navbar_needaction.js @@ -36,7 +36,7 @@ openerp.web_menu_navbar_needaction = function(instance) }, refresh_navbar_needaction: function(timeout) { - if(parseInt(timeout)) + if(parseInt(timeout, 10)) { setTimeout(this.proxy(this.refresh_navbar_needaction), timeout, timeout); } From eb68abad88e11a8184f3f12b9bcbc8dcd318dc3e Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 3 Jun 2017 12:47:11 +0200 Subject: [PATCH 101/103] OCA Transbot updated translations from Transifex --- web_m2x_options/i18n/ar.po | 14 +++++++------- web_m2x_options/i18n/de.po | 16 ++++++++-------- web_m2x_options/i18n/es.po | 18 +++++++++--------- web_m2x_options/i18n/eu.po | 16 ++++++++-------- web_m2x_options/i18n/fi.po | 16 ++++++++-------- web_m2x_options/i18n/fr.po | 16 ++++++++-------- web_m2x_options/i18n/it.po | 16 ++++++++-------- web_m2x_options/i18n/nl.po | 15 ++++++++------- web_m2x_options/i18n/pt_BR.po | 16 ++++++++-------- web_m2x_options/i18n/sl.po | 20 ++++++++++---------- web_m2x_options/i18n/tr.po | 18 +++++++++--------- 11 files changed, 91 insertions(+), 90 deletions(-) diff --git a/web_m2x_options/i18n/ar.po b/web_m2x_options/i18n/ar.po index 5a019bcd..3a1c2743 100644 --- a/web_m2x_options/i18n/ar.po +++ b/web_m2x_options/i18n/ar.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" "PO-Revision-Date: 2016-09-15 23:07+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n" @@ -32,16 +32,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "إنشاء \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "إنشاء وتحرير ..." @@ -58,8 +58,8 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "البحث عن المزيد ..." diff --git a/web_m2x_options/i18n/de.po b/web_m2x_options/i18n/de.po index 672e2f3e..0a5fe395 100644 --- a/web_m2x_options/i18n/de.po +++ b/web_m2x_options/i18n/de.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:52+0000\n" "Last-Translator: Rudolf Schnapka \n" "Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n" "MIME-Version: 1.0\n" @@ -35,16 +35,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Anlegen \"%s" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Anlegen und Bearbeiten" @@ -61,8 +61,8 @@ msgstr "Datenmodelle" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Suche weitere..." diff --git a/web_m2x_options/i18n/es.po b/web_m2x_options/i18n/es.po index 616adf16..26416a00 100644 --- a/web_m2x_options/i18n/es.po +++ b/web_m2x_options/i18n/es.po @@ -12,7 +12,7 @@ # Jarmo Kortetjärvi , 2016 # jeon , 2014 # Jong-Dae Park , 2013,2015 -# Kevin Min , 2015 +# Gu Hong Min , 2015 # Kunwoo Kim , 2015 # LEE SI HYEONG , 2014 # Matjaž Mozetič , 2015 @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-10-15 01:57+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:49+0000\n" "Last-Translator: Pedro M. Baeza \n" "Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n" "MIME-Version: 1.0\n" @@ -40,16 +40,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Crear \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Crear y editar..." @@ -66,8 +66,8 @@ msgstr "Modelos" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Buscar más..." diff --git a/web_m2x_options/i18n/eu.po b/web_m2x_options/i18n/eu.po index 94e676e6..b0418346 100644 --- a/web_m2x_options/i18n/eu.po +++ b/web_m2x_options/i18n/eu.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-18 09:01+0000\n" -"PO-Revision-Date: 2017-02-23 15:55+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:51+0000\n" "Last-Translator: Esther Martín Menéndez \n" "Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,16 +20,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "" @@ -46,8 +46,8 @@ msgstr "Models" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Bilatu Gehiago..." diff --git a/web_m2x_options/i18n/fi.po b/web_m2x_options/i18n/fi.po index ed252176..8b95c063 100644 --- a/web_m2x_options/i18n/fi.po +++ b/web_m2x_options/i18n/fi.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-30 12:31+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:52+0000\n" "Last-Translator: Jarmo Kortetjärvi \n" "Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n" "MIME-Version: 1.0\n" @@ -35,16 +35,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Luo \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Luo ja muokkaa..." @@ -61,8 +61,8 @@ msgstr "Mallit" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Hae lisää..." diff --git a/web_m2x_options/i18n/fr.po b/web_m2x_options/i18n/fr.po index 7f78a198..ef771471 100644 --- a/web_m2x_options/i18n/fr.po +++ b/web_m2x_options/i18n/fr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:51+0000\n" "Last-Translator: Christophe CHAUVET \n" "Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n" "MIME-Version: 1.0\n" @@ -20,16 +20,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Creer \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Créer et modifier..." @@ -46,8 +46,8 @@ msgstr "Modèles" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Rechercher plus..." diff --git a/web_m2x_options/i18n/it.po b/web_m2x_options/i18n/it.po index 64abab9b..81de8275 100644 --- a/web_m2x_options/i18n/it.po +++ b/web_m2x_options/i18n/it.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:49+0000\n" "Last-Translator: Paolo Valier\n" "Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n" "MIME-Version: 1.0\n" @@ -35,16 +35,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Crea \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Crea e Modifica..." @@ -61,8 +61,8 @@ msgstr "Modelli" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Cerca altro..." diff --git a/web_m2x_options/i18n/nl.po b/web_m2x_options/i18n/nl.po index 2ffafa69..2f29d697 100644 --- a/web_m2x_options/i18n/nl.po +++ b/web_m2x_options/i18n/nl.po @@ -4,11 +4,12 @@ # # Translators: # lfreeke , 2017 +# lfreeke , 2017 msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-28 10:22+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" "PO-Revision-Date: 2017-04-18 10:43+0000\n" "Last-Translator: lfreeke \n" "Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n" @@ -20,16 +21,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Aanmaken \" %s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Aanmaken en Bewerken..." @@ -46,8 +47,8 @@ msgstr "Modellen" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Zoek meer..." diff --git a/web_m2x_options/i18n/pt_BR.po b/web_m2x_options/i18n/pt_BR.po index eb8fb2da..2b22f29c 100644 --- a/web_m2x_options/i18n/pt_BR.po +++ b/web_m2x_options/i18n/pt_BR.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-15 23:07+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:50+0000\n" "Last-Translator: danimaribeiro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -33,16 +33,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Criar \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Criar e editar.." @@ -59,8 +59,8 @@ msgstr "Modelos" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Buscar mais..." diff --git a/web_m2x_options/i18n/sl.po b/web_m2x_options/i18n/sl.po index c42946b7..508e3f33 100644 --- a/web_m2x_options/i18n/sl.po +++ b/web_m2x_options/i18n/sl.po @@ -14,8 +14,8 @@ # Jarmo Kortetjärvi , 2016 # Jesús Alan Ramos Rodríguez , 2015 # Jesús Alan Ramos Rodríguez , 2015 -# Lixon Jean-Yves , 2016 -# Lixon Jean-Yves , 2016 +# Lixon Jean-Yves , 2016 +# Lixon Jean-Yves , 2016 # Matjaž Mozetič , 2015-2016 # Paolo Valier, 2016 # Pedro Castro Silva , 2015 @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-26 01:59+0000\n" -"PO-Revision-Date: 2016-09-16 12:33+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:52+0000\n" "Last-Translator: Matjaž Mozetič \n" "Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n" "MIME-Version: 1.0\n" @@ -36,16 +36,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Ustvari \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Ustvari in urejaj..." @@ -62,8 +62,8 @@ msgstr "Modeli" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Poišči več..." diff --git a/web_m2x_options/i18n/tr.po b/web_m2x_options/i18n/tr.po index e855e94a..3a1e455a 100644 --- a/web_m2x_options/i18n/tr.po +++ b/web_m2x_options/i18n/tr.po @@ -23,7 +23,7 @@ # jeon , 2014 # JiyeonLee , 2014 # Jong-Dae Park , 2013 -# Kevin Min , 2015 +# Gu Hong Min , 2015 # KimKyudong , 2014 # kmooc , 2015 # mariana1201 , 2014 @@ -44,8 +44,8 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-29 03:45+0000\n" -"PO-Revision-Date: 2016-12-30 20:59+0000\n" +"POT-Creation-Date: 2017-05-30 18:00+0000\n" +"PO-Revision-Date: 2017-03-13 12:48+0000\n" "Last-Translator: Ahmet Altinisik \n" "Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n" "MIME-Version: 1.0\n" @@ -56,16 +56,16 @@ msgstr "" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:206 -#: code:addons/web_m2x_options/static/src/js/form.js:354 +#: code:addons/web_m2x_options/static/src/js/form.js:207 +#: code:addons/web_m2x_options/static/src/js/form.js:355 #, python-format msgid "Create \"%s\"" msgstr "Oluştur \"%s\"" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:232 -#: code:addons/web_m2x_options/static/src/js/form.js:380 +#: code:addons/web_m2x_options/static/src/js/form.js:233 +#: code:addons/web_m2x_options/static/src/js/form.js:381 #, python-format msgid "Create and Edit..." msgstr "Oluştur ve düzenle..." @@ -82,8 +82,8 @@ msgstr "Modeller" #. module: web_m2x_options #. openerp-web -#: code:addons/web_m2x_options/static/src/js/form.js:167 -#: code:addons/web_m2x_options/static/src/js/form.js:324 +#: code:addons/web_m2x_options/static/src/js/form.js:168 +#: code:addons/web_m2x_options/static/src/js/form.js:325 #, python-format msgid "Search More..." msgstr "Daha Fazla..." From 1f84f00dd1f1052133de52700981a1406050d733 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 10 Jun 2017 12:48:59 +0200 Subject: [PATCH 102/103] OCA Transbot updated translations from Transifex --- web_advanced_search_x2x/i18n/ca.po | 46 ++++++++++++++++++++++++++++++ web_timeline/i18n/ca.po | 5 ++-- web_translate_dialog/i18n/ca.po | 4 +-- 3 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 web_advanced_search_x2x/i18n/ca.po diff --git a/web_advanced_search_x2x/i18n/ca.po b/web_advanced_search_x2x/i18n/ca.po new file mode 100644 index 00000000..5fae85d6 --- /dev/null +++ b/web_advanced_search_x2x/i18n/ca.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_advanced_search_x2x +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-08 19:00+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/xml/web_advanced_search_x2x.xml:8 +#, python-format +msgid "Search" +msgstr "Cercar" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:235 +#, python-format +msgid "Use criteria" +msgstr "" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:172 +#, python-format +msgid "invalid search domain" +msgstr "" + +#. module: web_advanced_search_x2x +#. openerp-web +#: code:addons/web_advanced_search_x2x/static/src/js/web_advanced_search_x2x.js:47 +#, python-format +msgid "is in selection" +msgstr "" diff --git a/web_timeline/i18n/ca.po b/web_timeline/i18n/ca.po index fc27b4be..ee0350e3 100644 --- a/web_timeline/i18n/ca.po +++ b/web_timeline/i18n/ca.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Marc Tormo i Bochaca , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-06 08:58+0000\n" "PO-Revision-Date: 2016-12-06 08:58+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,7 +66,7 @@ msgstr "Mes" #: code:addons/web_timeline/static/src/js/web_timeline.js:427 #, python-format msgid "Save" -msgstr "" +msgstr "Desar" #. module: web_timeline #. openerp-web diff --git a/web_translate_dialog/i18n/ca.po b/web_translate_dialog/i18n/ca.po index a90f53a0..d6f696e0 100644 --- a/web_translate_dialog/i18n/ca.po +++ b/web_translate_dialog/i18n/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: web (8.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-14 09:35+0000\n" +"POT-Creation-Date: 2017-06-08 19:01+0000\n" "PO-Revision-Date: 2015-11-07 11:21+0000\n" "Last-Translator: <>\n" "Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n" @@ -36,7 +36,7 @@ msgstr "Camp" #: code:addons/web_translate_dialog/static/src/xml/base.xml:29 #, python-format msgid "Save" -msgstr "" +msgstr "Desar" #. module: web_translate_dialog #. openerp-web From e29706572e95addc40afc1d4d5c46360130357d5 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 1 Jul 2017 13:28:34 +0200 Subject: [PATCH 103/103] OCA Transbot updated translations from Transifex --- help_online/i18n/nl_NL.po | 236 ++++++++++++++++++++++ web_ckeditor4/i18n/nl_NL.po | 38 ++++ web_dashboard_tile/i18n/nl_NL.po | 330 +++++++++++++++++++++++++++++++ web_shortcuts/i18n/nl_NL.po | 80 ++++++++ 4 files changed, 684 insertions(+) create mode 100644 help_online/i18n/nl_NL.po create mode 100644 web_ckeditor4/i18n/nl_NL.po create mode 100644 web_dashboard_tile/i18n/nl_NL.po create mode 100644 web_shortcuts/i18n/nl_NL.po diff --git a/help_online/i18n/nl_NL.po b/help_online/i18n/nl_NL.po new file mode 100644 index 00000000..55551462 --- /dev/null +++ b/help_online/i18n/nl_NL.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * help_online +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 11:36+0000\n" +"PO-Revision-Date: 2017-06-30 08:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:93 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Close" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:91 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:57 +#, python-format +msgid "Create Help page for %s" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0 +#: field:import.help.wizard,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,create_date:0 field:help.online,create_date:0 +#: field:import.help.wizard,create_date:0 +msgid "Created on" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,display_name:0 field:help.online,display_name:0 +#: field:import.help.wizard,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:267 +#: model:ir.actions.act_window,name:help_online.action_export_help_wizard +#, python-format +msgid "Export Help" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "Export Help Data" +msgstr "" + +#. module: help_online +#: model:ir.model,name:help_online.model_export_help_wizard +#: model:ir.ui.menu,name:help_online.menu_help_export +msgid "Export Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,export_filename:0 +msgid "Export XML Filename" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help +#: model:ir.ui.menu,name:help_online.menu_help_main +msgid "Help Online" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:52 +#, python-format +msgid "Help on %s" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_reader +msgid "Help reader" +msgstr "" + +#. module: help_online +#: model:res.groups,name:help_online.help_online_group_writer +msgid "Help writer" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,id:0 field:help.online,id:0 +#: field:import.help.wizard,id:0 +msgid "ID" +msgstr "ID" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_import_help_wizard +msgid "Import Help" +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "Import Help Data" +msgstr "" + +#. module: help_online +#: model:ir.ui.menu,name:help_online.menu_help_import +msgid "Import Help Online" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0 +#: field:import.help.wizard,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: help_online +#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0 +#: field:import.help.wizard,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,write_date:0 field:help.online,write_date:0 +#: field:import.help.wizard,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:260 +#, python-format +msgid "No data to export !" +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/help_online.py:33 +#, python-format +msgid "No page prefix parameter specified !" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:98 +#, python-format +msgid "Ok" +msgstr "" + +#. module: help_online +#. openerp-web +#: code:addons/help_online/static/src/js/help_online.js:117 +#, python-format +msgid "Page does not exist. Do you want to create?" +msgstr "" + +#. module: help_online +#: field:import.help.wizard,source_file:0 +msgid "Source File" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +msgid "" +"This wizard allow you to export all QWeb views\n" +" related to help online. The result will be an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "" +"This wizard allow you to import QWeb views\n" +" related to help online. The required file format is an Odoo\n" +" data xml file." +msgstr "" + +#. module: help_online +#: code:addons/help_online/models/export_help_wizard.py:297 +#, python-format +msgid "Unable to write autobackup file in given directory: %s" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_search +msgid "Website Page" +msgstr "" + +#. module: help_online +#: view:ir.ui.view:help_online.view_view_form +msgid "Website Page?" +msgstr "" + +#. module: help_online +#: model:ir.actions.act_window,name:help_online.action_website_pages +#: model:ir.ui.menu,name:help_online.menu_help_pages +msgid "Website Pages" +msgstr "" + +#. module: help_online +#: field:export.help.wizard,data:0 +msgid "XML" +msgstr "" + +#. module: help_online +#: view:export.help.wizard:help_online.export_help_wizard_view +#: view:import.help.wizard:help_online.import_help_wizard_view +msgid "or" +msgstr "" diff --git a/web_ckeditor4/i18n/nl_NL.po b/web_ckeditor4/i18n/nl_NL.po new file mode 100644 index 00000000..c68417b2 --- /dev/null +++ b/web_ckeditor4/i18n/nl_NL.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ckeditor4 +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 11:37+0000\n" +"PO-Revision-Date: 2015-11-07 11:19+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_ckeditor4 +#: field:ckeditor.monkeypatch,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: web_ckeditor4 +#: model:ir.model,name:web_ckeditor4.model_ckeditor_monkeypatch +msgid "Monkeypatches for CKEditor" +msgstr "" diff --git a/web_dashboard_tile/i18n/nl_NL.po b/web_dashboard_tile/i18n/nl_NL.po new file mode 100644 index 00000000..02b7ac06 --- /dev/null +++ b/web_dashboard_tile/i18n/nl_NL.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_dashboard_tile +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 11:37+0000\n" +"PO-Revision-Date: 2017-06-30 08:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_dashboard_tile +#: field:tile.tile,action_id:0 +msgid "Action" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,active:0 +msgid "Active" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Average" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,background_color:0 +msgid "Background color" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Count" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8 +#, python-format +msgid "Create" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile +#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile +#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard +msgid "Dashboard" +msgstr "" + +#. module: web_dashboard_tile +#: model:ir.model,name:web_dashboard_tile.model_tile_tile +#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile +msgid "Dashboard Tile" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view +msgid "Dashboard tiles" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Display" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: web_dashboard_tile +#: field:tile.tile,domain:0 +msgid "Domain" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Error" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,error:0 +msgid "Error Details" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_field_id:0 +msgid "Field" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56 +#, python-format +msgid "Filter name is required." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,font_color:0 +msgid "Font color" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_format:0 +msgid "Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_function:0 +msgid "Function" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,group_ids:0 +msgid "Groups" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_helper:0 +msgid "Helper" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_dashboard_tile +#: help:tile.tile,group_ids:0 +msgid "" +"If this field is set, only users of this group can view this tile. Please " +"note that it will only work for global tiles (that is, when User field is " +"left empty)" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: web_dashboard_tile +#: field:tile.tile,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Main Value" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Maximum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:39 +#, python-format +msgid "Maximum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Median" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:51 +#, python-format +msgid "Median value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Minimum" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:35 +#: code:addons/web_dashboard_tile/models/tile_tile.py:47 +#, python-format +msgid "Minimum value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,model_id:0 +msgid "Model" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,name:0 +msgid "Name" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:31 +#, python-format +msgid "Number of records" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:239 +#, python-format +msgid "Please select a field from the selected model." +msgstr "" + +#. module: web_dashboard_tile +#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0 +msgid "" +"Python Format String valid with str.format()\n" +"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_field_id:0 +msgid "Secondary Field" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_format:0 +msgid "Secondary Format" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_function:0 +msgid "Secondary Function" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,secondary_helper:0 +msgid "Secondary Helper" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +#: field:tile.tile,secondary_value:0 +msgid "Secondary Value" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Success" +msgstr "" + +#. module: web_dashboard_tile +#: selection:tile.tile,primary_function:0 +#: selection:tile.tile,secondary_function:0 +msgid "Sum" +msgstr "" + +#. module: web_dashboard_tile +#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view +msgid "Technical Informations" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95 +#, python-format +msgid "Tile is created" +msgstr "" + +#. module: web_dashboard_tile +#. openerp-web +#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6 +#, python-format +msgid "Tile:" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:43 +#, python-format +msgid "Total value of '%s'" +msgstr "" + +#. module: web_dashboard_tile +#: code:addons/web_dashboard_tile/models/tile_tile.py:215 +#, python-format +msgid "Unimplemented Feature. Search on Active field disabled." +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,user_id:0 +msgid "User" +msgstr "" + +#. module: web_dashboard_tile +#: field:tile.tile,primary_value:0 +msgid "Value" +msgstr "" diff --git a/web_shortcuts/i18n/nl_NL.po b/web_shortcuts/i18n/nl_NL.po new file mode 100644 index 00000000..775dd44e --- /dev/null +++ b/web_shortcuts/i18n/nl_NL.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_shortcuts +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: web (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 11:38+0000\n" +"PO-Revision-Date: 2015-11-07 11:20+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_shortcuts +#. openerp-web +#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:24 +#, python-format +msgid "Add / Remove Shortcut..." +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,create_date:0 +msgid "Created on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: web_shortcuts +#: field:web.shortcut,id:0 +msgid "ID" +msgstr "ID" + +#. module: web_shortcuts +#: field:web.shortcut,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: web_shortcuts +#: field:web.shortcut,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,menu_id:0 +msgid "Menu id" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: web_shortcuts +#: sql_constraint:web.shortcut:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: web_shortcuts +#: field:web.shortcut,user_id:0 +msgid "User Ref." +msgstr ""