From ac68afda065fb53f3ff10ccab72da0551bff639e Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 16 May 2016 11:24:48 +0200 Subject: [PATCH 01/51] [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 bdb3b582a43868c84e7759231160ff72895d58f2 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Thu, 17 Nov 2016 11:20:01 +0100 Subject: [PATCH 02/51] [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 03/51] [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 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 +# 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 04/51] [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 05/51] [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 06/51] [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 07/51] [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 08/51] 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 09/51] 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 10/51] 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 11/51] 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 12/51] [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 13/51] 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 14/51] [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 15/51] [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 16/51] 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 17/51] 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 18/51] 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 19/51] 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 20/51] 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 21/51] 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 22/51] 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 23/51] [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 30/51] [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 31/51] [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 32/51] [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 33/51] [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 34/51] [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 35/51] [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 36/51] 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 37/51] [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 38/51] 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 39/51] 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 40/51] [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 41/51] [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 42/51] 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 43/51] 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 44/51] 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 45/51] 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 "" From 1e0714e008665dedf5048d768b33fc150207412a Mon Sep 17 00:00:00 2001 From: Renzo Meister Date: Fri, 28 Jul 2017 15:24:26 +0200 Subject: [PATCH 46/51] [8.0][FIX] help_online: XMLRPC Call problem To allow import of online help from XMLRPC a return value is required --- help_online/models/import_help_wizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/help_online/models/import_help_wizard.py b/help_online/models/import_help_wizard.py index bb071784..9af737a4 100644 --- a/help_online/models/import_help_wizard.py +++ b/help_online/models/import_help_wizard.py @@ -47,3 +47,4 @@ class ImportHelpWizard(models.TransientModel): mode='init', noupdate=False, report=None) + return True From 5bf9cb23ac1a4898617d1c1d9f30d39900eef0d8 Mon Sep 17 00:00:00 2001 From: George Daramouskas Date: Tue, 10 Oct 2017 17:20:50 +0200 Subject: [PATCH 47/51] [ADD] Adds module web_fixed_header --- web_form_sticky_header/README.rst | 62 ++++++++++++++++++ web_form_sticky_header/__init__.py | 3 + web_form_sticky_header/__openerp__.py | 19 ++++++ .../images/fixed_header.png | Bin 0 -> 75915 bytes .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/src/css/sticky_header.css | 8 +++ web_form_sticky_header/views/templates.xml | 10 +++ 7 files changed, 102 insertions(+) create mode 100644 web_form_sticky_header/README.rst create mode 100644 web_form_sticky_header/__init__.py create mode 100644 web_form_sticky_header/__openerp__.py create mode 100644 web_form_sticky_header/images/fixed_header.png create mode 100644 web_form_sticky_header/static/description/icon.png create mode 100644 web_form_sticky_header/static/src/css/sticky_header.css create mode 100644 web_form_sticky_header/views/templates.xml diff --git a/web_form_sticky_header/README.rst b/web_form_sticky_header/README.rst new file mode 100644 index 00000000..327e2ef1 --- /dev/null +++ b/web_form_sticky_header/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 + +================ +Web Fixed Header +================ + +This module was written to extend the functionality of forms to support fixed +position headers and allow you to be able to see the buttons available +to a formview while you scroll. + +Installation +============ + +To install this module, you need to: + +Go to Apps -> Find the module and install + + +.. 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 +------------ + +* George Daramouskas + +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_form_sticky_header/__init__.py b/web_form_sticky_header/__init__.py new file mode 100644 index 00000000..5603d45c --- /dev/null +++ b/web_form_sticky_header/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2017 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/web_form_sticky_header/__openerp__.py b/web_form_sticky_header/__openerp__.py new file mode 100644 index 00000000..99a3378c --- /dev/null +++ b/web_form_sticky_header/__openerp__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# © 2017 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Web Fixed Header", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Usability", + "summary": "", + "depends": [ + "web" + ], + "data": [ + 'views/templates.xml', + ], + "installable": True, + "application": False, +} diff --git a/web_form_sticky_header/images/fixed_header.png b/web_form_sticky_header/images/fixed_header.png new file mode 100644 index 0000000000000000000000000000000000000000..60d25a6c6815417023023346775a675ef31caa88 GIT binary patch literal 75915 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 literal 0 HcmV?d00001 diff --git a/web_form_sticky_header/static/description/icon.png b/web_form_sticky_header/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_form_sticky_header/static/src/css/sticky_header.css b/web_form_sticky_header/static/src/css/sticky_header.css new file mode 100644 index 00000000..51b2a887 --- /dev/null +++ b/web_form_sticky_header/static/src/css/sticky_header.css @@ -0,0 +1,8 @@ +.oe_form header { + position: sticky; + top: 0px; + left: 5px; + right: 5px; + z-index: 2; +} + diff --git a/web_form_sticky_header/views/templates.xml b/web_form_sticky_header/views/templates.xml new file mode 100644 index 00000000..04ec3535 --- /dev/null +++ b/web_form_sticky_header/views/templates.xml @@ -0,0 +1,10 @@ + + + + + + From aed8978a6b33bb59dca1083ade0473da4b0d86d9 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 26 Oct 2017 02:40:45 +0200 Subject: [PATCH 48/51] [UPD] addons table in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8f8d019d..24e82732 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ addon | version | summary [web_environment_ribbon](web_environment_ribbon/) | 8.0.1.0.0 | Web Environment Ribbon [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_form_sticky_header](web_form_sticky_header/) | 8.0.1.0.0 | Web Fixed Header [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 From 867424bb418b73ea8638f06d1760122727fed275 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 26 Oct 2017 04:58:02 +0200 Subject: [PATCH 49/51] [ADD] setup.py --- setup/web_form_sticky_header/odoo_addons/__init__.py | 1 + .../odoo_addons/web_form_sticky_header | 1 + setup/web_form_sticky_header/setup.py | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 setup/web_form_sticky_header/odoo_addons/__init__.py create mode 120000 setup/web_form_sticky_header/odoo_addons/web_form_sticky_header create mode 100644 setup/web_form_sticky_header/setup.py diff --git a/setup/web_form_sticky_header/odoo_addons/__init__.py b/setup/web_form_sticky_header/odoo_addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/web_form_sticky_header/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_form_sticky_header/odoo_addons/web_form_sticky_header b/setup/web_form_sticky_header/odoo_addons/web_form_sticky_header new file mode 120000 index 00000000..9df300a2 --- /dev/null +++ b/setup/web_form_sticky_header/odoo_addons/web_form_sticky_header @@ -0,0 +1 @@ +../../../web_form_sticky_header \ No newline at end of file diff --git a/setup/web_form_sticky_header/setup.py b/setup/web_form_sticky_header/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/web_form_sticky_header/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From c71f63326e053fe77f73925e420806e071c3c133 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 31 Oct 2017 15:19:39 +0100 Subject: [PATCH 50/51] [ADD] export all records if all checkbox is selected --- web_export_view/__openerp__.py | 2 +- .../static/src/js/web_export_view.js | 96 +++++++++---------- 2 files changed, 45 insertions(+), 53 deletions(-) diff --git a/web_export_view/__openerp__.py b/web_export_view/__openerp__.py index 4b029c46..5820dc91 100644 --- a/web_export_view/__openerp__.py +++ b/web_export_view/__openerp__.py @@ -21,7 +21,7 @@ { 'name': 'Export Current View', - 'version': '8.0.1.2.0', + 'version': '8.0.1.3.0', 'category': 'Web', 'author': "Agile Business Group,Odoo Community Association (OCA)", 'website': 'http://www.agilebg.com', diff --git a/web_export_view/static/src/js/web_export_view.js b/web_export_view/static/src/js/web_export_view.js index 00cb047e..2bd05661 100644 --- a/web_export_view/static/src/js/web_export_view.js +++ b/web_export_view/static/src/js/web_export_view.js @@ -32,12 +32,13 @@ openerp.web_export_view = function (instance) { } }, - on_sidebar_export_view_xls: function () { + on_sidebar_export_view_xls: function (e, active_domain) { // Select the first list of the current (form) view // or assume the main view is a list view and use that var self = this, view = this.getParent(), - children = view.getChildren(); + children = view.getChildren(), + deferred = new jQuery.Deferred(); if (children) { children.every(function (child) { if (child.field && child.field.type == 'one2many') { @@ -60,56 +61,47 @@ openerp.web_export_view = function (instance) { export_columns_names.push(this.string); } }); - rows = view.$el.find('.oe_list_content > tbody > tr'); - export_rows = []; - $.each(rows, function () { - $row = $(this); - // find only rows with data - if ($row.attr('data-id')) { - export_row = []; - checked = $row.find('th input[type=checkbox]').attr("checked"); - if (children && checked === "checked") { - $.each(export_columns_keys, function () { - cell = $row.find('td[data-field="' + this + '"]').get(0); - text = cell.text || cell.textContent || cell.innerHTML || ""; - if (cell.classList.contains("oe_list_field_float")) { - export_row.push(instance.web.parse_value(text, {'type': "float"})); - } - else if (cell.classList.contains("oe_list_field_boolean")) { - var data_id = $('
' + cell.innerHTML + '
'); - if (data_id.find('input').get(0).checked) { - export_row.push(_t("True")); - } - else { - export_row.push(_t("False")); - } - } - else if (cell.classList.contains("oe_list_field_integer")) { - var tmp2 = text; - do { - tmp = tmp2; - tmp2 = tmp.replace(instance.web._t.database.parameters.thousands_sep, ""); - } while (tmp !== tmp2); - - export_row.push(parseInt(tmp2)); - } - else { - export_row.push(text.trim()); - } - }); - export_rows.push(export_row); - } - } - }); - $.blockUI(); - view.session.get_file({ - url: '/web/export/xls_view', - data: {data: JSON.stringify({ - model: view.model, - headers: export_columns_names, - rows: export_rows - })}, - complete: $.unblockUI + if(view.$( + 'tr.oe_list_header_columns > th > ' + + 'input.oe_list_record_selector:checked' + ).length == 0) { + row_ids = view.$( + '.oe_list_content > tbody > tr[data-id]' + + ':has(th.oe_list_record_selector > input:checked)' + ).map(function() { + return parseInt(jQuery(this).data('id')); + }).toArray(); + deferred = view.dataset.read_ids(row_ids, export_columns_keys); + } + else { + deferred = view.dataset.read_slice(export_columns_keys); + export_columns_names.push( + String(view.dataset.domain || _('All records')) + ); + } + return deferred.then(function(records) { + var export_rows = []; + $.each(records, function(index, record) { + var export_row = [], + record = new instance.web.list.Record(record).toForm(); + $.each(view.visible_columns, function() { + export_row.push( + this.type != 'integer' && this.type != 'float' ? + this.format( + record.data, {process_modifiers: false} + ) : record.data[this.id].value + ); + }) + export_rows.push(export_row); + }); + view.session.get_file({ + url: '/web/export/xls_view', + data: {data: JSON.stringify({ + model: view.model, + headers: export_columns_names, + rows: export_rows, + })}, + }); }); } }); From febda03e7db7ed6d4b8c3cd078e943b279720ae6 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 9 Nov 2017 02:40:51 +0100 Subject: [PATCH 51/51] [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 24e82732..e03f74dd 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ addon | version | summary [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 [web_environment_ribbon](web_environment_ribbon/) | 8.0.1.0.0 | Web Environment Ribbon -[web_export_view](web_export_view/) | 8.0.1.2.0 | Export Current View +[web_export_view](web_export_view/) | 8.0.1.3.0 | Export Current View [web_favicon](web_favicon/) | 8.0.1.0.0 | Allows to set a custom shortcut icon (aka favicon) [web_form_sticky_header](web_form_sticky_header/) | 8.0.1.0.0 | Web Fixed Header [web_graph_improved](web_graph_improved/) | 8.0.0.1.0 | Improves graph views.