diff --git a/web_diagram/__init__.py b/web_diagram/__init__.py new file mode 100644 index 000000000000..f2a39d8abaf0 --- /dev/null +++ b/web_diagram/__init__.py @@ -0,0 +1,12 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, SUPERUSER_ID +from . import controllers, models + + +def post_init_hook(cr, registry): + env = api.Environment(cr, SUPERUSER_ID, {}) + langs = env["res.lang"].search([("active", "=", True), ("code", "!=", "en_US")]).mapped("code") + if langs: + module = env["ir.module.module"].search([("name", "=", "web_diagram")]) + module._update_translations(filter_lang=langs) diff --git a/web_diagram/__manifest__.py b/web_diagram/__manifest__.py new file mode 100644 index 000000000000..c8f038c6868c --- /dev/null +++ b/web_diagram/__manifest__.py @@ -0,0 +1,37 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Odoo Web Diagram', + 'category': 'Hidden', + 'description': """ +Openerp Web Diagram view. +========================= + +""", + 'version': "16.0.1.0.0", + 'depends': ['web'], + 'post_init_hook': 'post_init_hook', + 'data': [ + 'security/ir.model.access.csv', + 'views/diagram_nav_help_views.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'web_diagram/static/lib/js/cytoscape.min.js', + 'web_diagram/static/lib/js/dagre.min.js', + 'web_diagram/static/lib/js/cytoscape-dagre.min.js', + 'web_diagram/static/src/scss/diagram_view.scss', + 'web_diagram/static/src/js/diagram_model.js', + 'web_diagram/static/src/js/diagram_controller.js', + 'web_diagram/static/src/js/diagram_renderer.js', + 'web_diagram/static/src/js/diagram_view.js', + 'web_diagram/static/src/xml/base_diagram.xml', + ], + 'web.qunit_suite_tests': [ + 'web_diagram/static/tests/diagram_tests.js', + ], + }, + 'auto_install': True, + 'license': 'LGPL-3', + 'test': ['tests/test_ir_ui_view.py'], +} diff --git a/web_diagram/controllers/__init__.py b/web_diagram/controllers/__init__.py new file mode 100644 index 000000000000..80ee4da1c5ec --- /dev/null +++ b/web_diagram/controllers/__init__.py @@ -0,0 +1,3 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/web_diagram/controllers/main.py b/web_diagram/controllers/main.py new file mode 100644 index 000000000000..67008f1ee4ac --- /dev/null +++ b/web_diagram/controllers/main.py @@ -0,0 +1,194 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from collections import deque + +import odoo.http as http + +from odoo.tools.safe_eval import safe_eval + +# Spacing between nodes +NODE_W = 150 # horizontal gap between nodes +NODE_H = 110 # vertical gap between levels +MAX_COLS = 8 # max nodes per row before wrapping within a level + + +def _parse_key_value_spec(spec_str): + """Parse a semicolon-separated list of 'key:value' pairs into a dict. + Malformed pairs (missing colon) are silently skipped. + """ + result = {} + for item in (spec_str or '').split(';'): + if ':' in item: + key, value = item.split(':', 1) + result[key] = value + return result + + +def _tree_layout(nodes, transitions): + """Compact top-down tree layout. + + - Parents appear above their children. + - Siblings of the same parent are grouped together horizontally. + - Each depth level is capped at MAX_COLS columns; extra nodes wrap to + a sub-row within the same level (vertical scroll only, no wide canvas). + - Isolated nodes (no edges) are placed at the very bottom. + """ + # Build children map and track which nodes have a parent + children = {} + has_parent = set() + + for _tr_id, (src_id, dst_id) in transitions.items(): + src_str = str(src_id) + dst_str = str(dst_id) + children.setdefault(src_str, []) + if dst_str not in children[src_str]: + children[src_str].append(dst_str) + has_parent.add(dst_str) + + all_ids = set(nodes.keys()) + roots = [nid for nid in all_ids if nid not in has_parent] + + # BFS to build depth and BFS order (siblings grouped by parent) + depth = {} + visited = set() + queue = deque() + for root in roots: + depth[root] = 0 + queue.append(root) + visited.add(root) + + bfs_order = [] + while queue: + nid = queue.popleft() + bfs_order.append(nid) + for child in children.get(nid, []): + if child not in visited: + visited.add(child) + depth[child] = depth[nid] + 1 + queue.append(child) + + # Group nodes by depth level, preserving BFS order + # (so siblings of the same parent are consecutive) + levels = {} + for nid in bfs_order: + d = depth[nid] + levels.setdefault(d, []) + levels[d].append(nid) + + # Assign positions level by level + current_y = 0 + for d in sorted(levels.keys()): + level_nodes = levels[d] + n_rows = max(1, (len(level_nodes) + MAX_COLS - 1) // MAX_COLS) + + for i, nid in enumerate(level_nodes): + col = i % MAX_COLS + wrap_row = i // MAX_COLS + nodes[nid]['x'] = col * NODE_W + nodes[nid]['y'] = current_y + wrap_row * NODE_H + + # Advance y by: one main level gap + extra rows within this level + current_y += NODE_H * n_rows + + # Place isolated nodes (not reachable from any root) at the bottom + unplaced = [nid for nid in all_ids if nid not in visited] + for i, nid in enumerate(unplaced): + nodes[nid]['x'] = (i % MAX_COLS) * NODE_W + nodes[nid]['y'] = current_y + NODE_H + + return nodes + + +class DiagramView(http.Controller): + + @http.route('/web_diagram/diagram/get_diagram_info', type='json', auth='user') + def get_diagram_info(self, id, model, node, connector, + src_node, des_node, label, **kw): + + visible_node_fields = kw.get('visible_node_fields', []) + invisible_node_fields = kw.get('invisible_node_fields', []) + node_fields_string = kw.get('node_fields_string', []) + connector_fields = kw.get('connector_fields', []) + connector_fields_string = kw.get('connector_fields_string', []) + + bgcolors = _parse_key_value_spec(kw.get('bgcolor', '')) + shapes = _parse_key_value_spec(kw.get('shape', '')) + + ir_view = http.request.env['ir.ui.view'] + graphs = ir_view.graph_get(int(id), model, node, connector, src_node, + des_node, label, (NODE_W, NODE_H)) + nodes = graphs['nodes'] + transitions = graphs['transitions'] + isolate_nodes = { + blnk_node['id']: blnk_node + for blnk_node in graphs['blank_nodes'] + } + y = [t['y'] for t in nodes.values() if t['x'] == 20 and t['y']] + y_max = (y and max(y)) or 120 + + connectors = {} + list_tr = list(transitions.keys()) + + for tr in transitions: + connectors.setdefault(tr, { + 'id': int(tr), + 's_id': transitions[tr][0], + 'd_id': transitions[tr][1] + }) + + connector_model = http.request.env[connector] + data_connectors = connector_model.search([('id', 'in', list_tr)]).read(connector_fields) + + for tr in data_connectors: + transition_id = str(tr['id']) + label = graphs['label'][transition_id][1] + t = connectors[transition_id] + t.update( + source=tr[src_node][1], + destination=tr[des_node][1], + options={}, + signal=label + ) + + for i, fld in enumerate(connector_fields): + t['options'][connector_fields_string[i]] = tr[fld] + + fields = http.request.env['ir.model.fields'] + field = fields.search([('model', '=', model), ('relation', '=', node)], limit=1) + node_act = http.request.env[node] + if field and field.relation_field: + search_acts = node_act.search([(field.relation_field, '=', id)]) + else: + search_acts = node_act.browse() + data_acts = search_acts.read(invisible_node_fields + visible_node_fields) + + for act in data_acts: + act_id_str = str(act['id']) + n = nodes.get(act_id_str) + if not n: + n = isolate_nodes.get(act['id'], {}) + y_max += NODE_H + n.update(x=20, y=y_max) + nodes[act_id_str] = n + + n.update(id=act['id'], color='white', options={}) + + for color, expr in bgcolors.items(): + if safe_eval(expr, act): + n['color'] = color + + for shape, expr in shapes.items(): + if safe_eval(expr, act): + n['shape'] = shape + + for i, fld in enumerate(visible_node_fields): + n['options'][node_fields_string[i]] = act[fld] + + # Apply compact hierarchical layout + nodes = _tree_layout(nodes, transitions) + + name = http.request.env[model].browse(id).display_name + return dict(nodes=nodes, + conn=connectors, + display_name=name, + parent_field=graphs['node_parent_field']) diff --git a/web_diagram/i18n/af.po b/web_diagram/i18n/af.po new file mode 100644 index 000000000000..6fc1afb00fba --- /dev/null +++ b/web_diagram/i18n/af.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-08-25 10:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-9/language/" +"af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Aktiwiteit" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuwe" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/am.po b/web_diagram/i18n/am.po new file mode 100644 index 000000000000..887435258eb1 --- /dev/null +++ b/web_diagram/i18n/am.po @@ -0,0 +1,92 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:26+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Amharic (http://www.transifex.com/odoo/odoo-9/language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "አዲስ" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/ar.po b/web_diagram/i18n/ar.po new file mode 100644 index 000000000000..6f6a2a49f496 --- /dev/null +++ b/web_diagram/i18n/ar.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Akram Alfusayal , 2019 +# Martin Trigaux, 2019 +# Shaima Safar , 2019 +# Malaz Abuidris , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Malaz Abuidris , 2022\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "النشاط" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "إنشاء:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "الرسم التخطيطي" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "طرف جديد" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "فتح: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "انتقال" diff --git a/web_diagram/i18n/az.po b/web_diagram/i18n/az.po new file mode 100644 index 000000000000..d1319fab326d --- /dev/null +++ b/web_diagram/i18n/az.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# erpgo translator , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: erpgo translator , 2022\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Fəaliyyət" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Keçmə" diff --git a/web_diagram/i18n/az_AZ.po b/web_diagram/i18n/az_AZ.po new file mode 100644 index 000000000000..7dc4fa1afe7b --- /dev/null +++ b/web_diagram/i18n/az_AZ.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Azerbaijani (Azerbaijan) (https://www.transifex.com/odoo/teams/41243/az_AZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az_AZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/bg.po b/web_diagram/i18n/bg.po new file mode 100644 index 000000000000..351c3dcd88c2 --- /dev/null +++ b/web_diagram/i18n/bg.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva , 2020 +# Maria Boyadjieva , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Maria Boyadjieva , 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Дейност" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Създайте:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Диаграма" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Нов възел" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Преход" diff --git a/web_diagram/i18n/bn.po b/web_diagram/i18n/bn.po new file mode 100644 index 000000000000..5842adf88b23 --- /dev/null +++ b/web_diagram/i18n/bn.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "কর্মকাণ্ড" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "তৈরি করুন:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "নকশা" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "নতুন সংযোগস্থল" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "পরিবর্তন" diff --git a/web_diagram/i18n/bs.po b/web_diagram/i18n/bs.po new file mode 100644 index 000000000000..1f537bb66900 --- /dev/null +++ b/web_diagram/i18n/bs.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# Igor Krizanovic , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Igor Krizanovic , 2020\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivnost" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Kreiraj:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Dijagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novi čvor" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Otvori:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Prelaz" diff --git a/web_diagram/i18n/ca.po b/web_diagram/i18n/ca.po new file mode 100644 index 000000000000..b3abf8fa13df --- /dev/null +++ b/web_diagram/i18n/ca.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# Marc Tormo i Bochaca , 2020 +# Quim - eccit , 2020 +# Farouk Jabiri, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Farouk Jabiri, 2022\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Activitat" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Crea" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Node nou" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Obrir:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transició" diff --git a/web_diagram/i18n/cs.po b/web_diagram/i18n/cs.po new file mode 100644 index 000000000000..4cb5d5b0a3ec --- /dev/null +++ b/web_diagram/i18n/cs.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Michal Veselý , 2019 +# trendspotter , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: trendspotter , 2019\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Činnost" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Opravdu chcete tento uzel odstranit? Tímto odstraníte také propojené " +"přechody." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Opravdu chcete tento přechod odstranit?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Vytvořit:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nový uzel" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Otevřít:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Přechod" diff --git a/web_diagram/i18n/da.po b/web_diagram/i18n/da.po new file mode 100644 index 000000000000..232818b2349c --- /dev/null +++ b/web_diagram/i18n/da.po @@ -0,0 +1,87 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Sanne Kristensen , 2019 +# lhmflexerp , 2019 +# Mads Søndergaard, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Mads Søndergaard, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivitet" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Er du sikker på du vil fjerne dette knudepunkt ? Dette vil også fjerne dens " +"forbundne overgange. " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Er du sikker på du vil fjerne denne overgang?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Opret:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Ny side" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Åben:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Overgang" diff --git a/web_diagram/i18n/de.po b/web_diagram/i18n/de.po new file mode 100644 index 000000000000..940e2f3fa89c --- /dev/null +++ b/web_diagram/i18n/de.po @@ -0,0 +1,87 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# e2f , 2019 +# Martin Trigaux, 2019 +# darenkster , 2019 +# Katharina Moritz , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Katharina Moritz , 2019\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivität" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Möchten Sie diesen Knoten wirklich entfernen? Dadurch werden alle " +"zugehörigen Übergänge ebenfalls entfernt." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Sind Sie sicher, dass Sie diesen Übergang entfernen möchten?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Anlegen:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagramm" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Neuer Knoten" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Öffnen:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Übergang" diff --git a/web_diagram/i18n/el.po b/web_diagram/i18n/el.po new file mode 100644 index 000000000000..8fa53921b257 --- /dev/null +++ b/web_diagram/i18n/el.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Kostas Goutoudis , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Kostas Goutoudis , 2019\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Δραστηριότητα" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτόν τον κόμβο; Αυτό θα αφαιρέσει " +"επίσης τις συνδεδεμένες μεταβάσεις του." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτήν τη μετάβαση;" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Δημιουργία:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Διάγραμμα" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Νέος Κόμβος" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Άνοιγμα:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Ροή" diff --git a/web_diagram/i18n/en_AU.po b/web_diagram/i18n/en_AU.po new file mode 100644 index 000000000000..8835c64f883a --- /dev/null +++ b/web_diagram/i18n/en_AU.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:26+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/" +"language/en_AU/)\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Activity" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Create:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "New" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "New Node" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Open: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transition" diff --git a/web_diagram/i18n/en_GB.po b/web_diagram/i18n/en_GB.po new file mode 100644 index 000000000000..c89894ccb8c1 --- /dev/null +++ b/web_diagram/i18n/en_GB.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:26+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/" +"odoo-9/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Activity" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Create:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "New" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "New Node" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Open: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transition" diff --git a/web_diagram/i18n/es.po b/web_diagram/i18n/es.po new file mode 100644 index 000000000000..05f299aea832 --- /dev/null +++ b/web_diagram/i18n/es.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# e2f , 2019 +# Martin Trigaux, 2019 +# Luis M. Ontalba , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Luis M. Ontalba , 2019\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"¿Seguro que quiere eliminar este nodo? Si lo hace, también se eliminarán sus" +" transiciones conectadas." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "¿Seguro que desea eliminar esta transición?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Abrir:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_BO.po b/web_diagram/i18n/es_BO.po new file mode 100644 index 000000000000..6a8b6f5ec1ad --- /dev/null +++ b/web_diagram/i18n/es_BO.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-08-25 10:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_BO/)\n" +"Language: es_BO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/es_CL.po b/web_diagram/i18n/es_CL.po new file mode 100644 index 000000000000..a8f012e71eae --- /dev/null +++ b/web_diagram/i18n/es_CL.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:28+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"La eliminación de este nodo no puede ser desecha.\n" +"¿Está Seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"La eliminación de esta transacción no puede ser desecha.\n" +"¿Está Seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abrir: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_CO.po b/web_diagram/i18n/es_CO.po new file mode 100644 index 000000000000..4033586fb3ca --- /dev/null +++ b/web_diagram/i18n/es_CO.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Mateo Tibaquirá , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-11-26 23:18+0000\n" +"Last-Translator: Mateo Tibaquirá \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"No se puede deshacer la eliminación de este nodo.\n" +"También se eliminarán todas las transiciones conectadas.\n" +"\n" +"Está seguro/a?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"No se puede deshacer la eliminación de esta transición.\n" +"\n" +"Está seguro/a?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo(a)" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abrir:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_CR.po b/web_diagram/i18n/es_CR.po new file mode 100644 index 000000000000..0518bb3aa331 --- /dev/null +++ b/web_diagram/i18n/es_CR.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:28+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abrir: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_DO.po b/web_diagram/i18n/es_DO.po new file mode 100644 index 000000000000..cf9d6655145b --- /dev/null +++ b/web_diagram/i18n/es_DO.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:28+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/" +"odoo-9/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"Eliminar este nodo no se puede deshacer.\n" +"Asimismo, se eliminarán todas las transacciones conectadas.\n" +"\n" +"¿Estás seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"Eliminar esta transición no se puede deshacer.\n" +"\n" +"¿Estás seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abrir: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_EC.po b/web_diagram/i18n/es_EC.po new file mode 100644 index 000000000000..a66b93e1beb7 --- /dev/null +++ b/web_diagram/i18n/es_EC.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:28+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/" +"language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"Borrando esta transición no podrá recuparala.\n" +"\n" +"Está seguro ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abrir: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_PE.po b/web_diagram/i18n/es_PE.po new file mode 100644 index 000000000000..e2d577faf599 --- /dev/null +++ b/web_diagram/i18n/es_PE.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Carlos Eduardo Rodriguez Rossi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-06-16 19:10+0000\n" +"Last-Translator: Carlos Eduardo Rodriguez Rossi \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"No se puede deshacer la eliminación de este nodo.\n" +"También se eliminarán todas las transiciones conectadas.\n" +"\n" +"¿Está seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"No se puede deshacer la eliminación de esta transición.\n" +"\n" +"¿Está seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuevo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abierto:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/es_PY.po b/web_diagram/i18n/es_PY.po new file mode 100644 index 000000000000..7a1f4dc315d6 --- /dev/null +++ b/web_diagram/i18n/es_PY.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:28+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-9/" +"language/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/es_VE.po b/web_diagram/i18n/es_VE.po new file mode 100644 index 000000000000..7bfd52ad30f8 --- /dev/null +++ b/web_diagram/i18n/es_VE.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:28+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/" +"language/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividad" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nuevo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/et.po b/web_diagram/i18n/et.po new file mode 100644 index 000000000000..1e8f8758206e --- /dev/null +++ b/web_diagram/i18n/et.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Rivo Zängov , 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Tegevus" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Loo:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagramm" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Uus sõlm" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Ava:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Siire" diff --git a/web_diagram/i18n/eu.po b/web_diagram/i18n/eu.po new file mode 100644 index 000000000000..2e8f7dc120bb --- /dev/null +++ b/web_diagram/i18n/eu.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Esther Martín Menéndez , 2020 +# Maialen Rodriguez , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Maialen Rodriguez , 2020\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Jarduera" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Ziur nodo hau ezabatu nahi duzula? Honek konektatutako trantsizioak ere " +"kendu egingo ditu." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Ziur al zaude trantsizio hau ezabatu nahi duzula?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Sortu:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nodo Berria" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Ireki:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transizioa" diff --git a/web_diagram/i18n/fa.po b/web_diagram/i18n/fa.po new file mode 100644 index 000000000000..61da731e4c28 --- /dev/null +++ b/web_diagram/i18n/fa.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/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=2; plural=(n > 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "فعالیت" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "ایجاد" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "دیاگرام" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "گره جدید" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "گذار" diff --git a/web_diagram/i18n/fi.po b/web_diagram/i18n/fi.po new file mode 100644 index 000000000000..cd9940a15a9c --- /dev/null +++ b/web_diagram/i18n/fi.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Tuomo Aura , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Tuomo Aura , 2019\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Toimenpide" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Luo:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Kaavio" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Uusi Noodi" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Siirtymä" diff --git a/web_diagram/i18n/fr.po b/web_diagram/i18n/fr.po new file mode 100644 index 000000000000..f3ec2684997a --- /dev/null +++ b/web_diagram/i18n/fr.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# e2f , 2019 +# Martin Trigaux, 2019 +# Lucas Deliege , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Lucas Deliege , 2019\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Activité" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Voulez-vous vraiment supprimer ce nœud ? Ses transitions associées seront " +"également supprimées." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Voulez-vous vraiment supprimer cette transition ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Créer:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagramme" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nouveau nœud" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Ouvrir :" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transition" + +#. module: web_diagram +#: model_terms:ir.ui.view,arch_db:web_diagram.view_web_diagram_nav_help_form +msgid "Got it!" +msgstr "Compris !" + +#. module: web_diagram +msgid "Export PNG" +msgstr "Exporter PNG" + +#. module: web_diagram +msgid "Navigation Help" +msgstr "Aide à la navigation" + +#. module: web_diagram +msgid "Help" +msgstr "Aide" + +#. module: web_diagram +msgid "New node" +msgstr "Nouveau nœud" + +#. module: web_diagram +msgid "Edit node" +msgstr "Modifier le nœud" + +#. module: web_diagram +msgid "Are you sure you want to remove this node? This will remove its connected transitions as well." +msgstr "Voulez-vous vraiment supprimer ce nœud ? Ses transitions associées seront également supprimées." + +#. module: web_diagram +msgid "New transition" +msgstr "Nouvelle transition" + +#. module: web_diagram +msgid "Edit transition" +msgstr "Modifier la transition" diff --git a/web_diagram/i18n/fr_BE.po b/web_diagram/i18n/fr_BE.po new file mode 100644 index 000000000000..6b4d664668bc --- /dev/null +++ b/web_diagram/i18n/fr_BE.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_BE/)\n" +"Language: fr_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nouveau" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/fr_CA.po b/web_diagram/i18n/fr_CA.po new file mode 100644 index 000000000000..fb60dfb587d3 --- /dev/null +++ b/web_diagram/i18n/fr_CA.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-08-25 10:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nouveau" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" + +#. module: web_diagram +#: model_terms:ir.ui.view,arch_db:web_diagram.view_web_diagram_nav_help_form +msgid "Got it!" +msgstr "Compris !" diff --git a/web_diagram/i18n/gl.po b/web_diagram/i18n/gl.po new file mode 100644 index 000000000000..8692b0563340 --- /dev/null +++ b/web_diagram/i18n/gl.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Actividade" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Crear:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"O borrado deste nodo non se poderá desfacer.\n" +"Tamén borrará tódalas transicións conectadas.\n" +"\n" +"¿Está seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"O borrado desta transición non se poderá desfacer.\n" +"\n" +"Está seguro?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Novo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novo nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Abrir: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Transición" diff --git a/web_diagram/i18n/gu.po b/web_diagram/i18n/gu.po new file mode 100644 index 000000000000..bba76a58c14e --- /dev/null +++ b/web_diagram/i18n/gu.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "પ્રવૃત્તિ" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/he.po b/web_diagram/i18n/he.po new file mode 100644 index 000000000000..4ea90602ccf2 --- /dev/null +++ b/web_diagram/i18n/he.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Yihya Hugirat , 2019 +# ZVI BLONDER , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: ZVI BLONDER , 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "פעילות" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"האם אתה בטוח שברצונך להסיר את הצומת הזה? פעולה זו תסיר גם את המעברים " +"המחוברים אליו." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "האם אתה בטוח שברצונך להסיר את המעבר הזה?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "צור:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "תרשים" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "צומת חדש" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "פתוח:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "מעבר" diff --git a/web_diagram/i18n/hi.po b/web_diagram/i18n/hi.po new file mode 100644 index 000000000000..a3068bf5d055 --- /dev/null +++ b/web_diagram/i18n/hi.po @@ -0,0 +1,92 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-9/language/hi/)\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "नया" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "खोलने के लिए " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/hr.po b/web_diagram/i18n/hr.po new file mode 100644 index 000000000000..3f809d86f5e0 --- /dev/null +++ b/web_diagram/i18n/hr.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Bole , 2019 +# Đurđica Žarković , 2019 +# Karolina Tonković , 2019 +# Igor Krizanovic , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Igor Krizanovic , 2019\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivnost" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Kreiraj:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Dijagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novi čvor" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Otvori:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Tranzicija" diff --git a/web_diagram/i18n/hu.po b/web_diagram/i18n/hu.po new file mode 100644 index 000000000000..3a47f322fa3c --- /dev/null +++ b/web_diagram/i18n/hu.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# krnkris, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: krnkris, 2019\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Tevékenység" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Létrehoz:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Új csomópont" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Átmenet" diff --git a/web_diagram/i18n/hy.po b/web_diagram/i18n/hy.po new file mode 100644 index 000000000000..ac659cbc89ca --- /dev/null +++ b/web_diagram/i18n/hy.po @@ -0,0 +1,92 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:26+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Armenian (http://www.transifex.com/odoo/odoo-9/language/hy/)\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Գործունեություն" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/id.po b/web_diagram/i18n/id.po new file mode 100644 index 000000000000..ede4edf7e5c4 --- /dev/null +++ b/web_diagram/i18n/id.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Muhammad Herdiansyah , 2019 +# Abe Manyo, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Abe Manyo, 2022\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivitas" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Buat :" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Node baru" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Buka:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transisi" diff --git a/web_diagram/i18n/is.po b/web_diagram/i18n/is.po new file mode 100644 index 000000000000..b5122e643652 --- /dev/null +++ b/web_diagram/i18n/is.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Bjorn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:33+0000\n" +"Last-Translator: Bjorn Ingvarsson , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Virkni" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transition" diff --git a/web_diagram/i18n/it.po b/web_diagram/i18n/it.po new file mode 100644 index 000000000000..fcfb85f8a74c --- /dev/null +++ b/web_diagram/i18n/it.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Francesco Garganese , 2019 +# Paolo Valier, 2019 +# Sergio Zanchetta , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Sergio Zanchetta , 2020\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Attività" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Eliminare veramente questo nodo? Verranno rimosse anche le transizioni " +"collegate." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Rimuovere veramente questa transizione?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Crea:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagramma" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nuovo nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Apri:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transizione" diff --git a/web_diagram/i18n/ja.po b/web_diagram/i18n/ja.po new file mode 100644 index 000000000000..d7bdc56aee00 --- /dev/null +++ b/web_diagram/i18n/ja.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Yoshi Tashiro , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Yoshi Tashiro , 2019\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "活動" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "作成:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "ダイアグラム" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "新規ノード" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "オープン:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "遷移" diff --git a/web_diagram/i18n/ka.po b/web_diagram/i18n/ka.po new file mode 100644 index 000000000000..6a7b1e3fde69 --- /dev/null +++ b/web_diagram/i18n/ka.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "აქტივობა" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "შექმნა:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"აღნიშნული კვანძის წაშლა ვერ დაბრუნდება უკან.\n" +"იგი ასევე წაშლის დაკავშირებულ გარდაქმნებს.\n" +"\n" +"დარწმუნებული ხართ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"აღნიშნული გარდაქმნის წაშლის ოპერაცია უკან ვერ შებრუნდება.\n" +"\n" +"დარწმუნებული ხართ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "დიაგრამა" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "ახალი" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "ახალი კვანძი" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "ღია: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "გარდაქმნა" diff --git a/web_diagram/i18n/kab.po b/web_diagram/i18n/kab.po new file mode 100644 index 000000000000..d29d01690894 --- /dev/null +++ b/web_diagram/i18n/kab.po @@ -0,0 +1,92 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Armud" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Rnu:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Amaynut" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Lli: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Asaka" diff --git a/web_diagram/i18n/kk.po b/web_diagram/i18n/kk.po new file mode 100644 index 000000000000..2769e4e4b3e2 --- /dev/null +++ b/web_diagram/i18n/kk.po @@ -0,0 +1,92 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Ісі" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/km.po b/web_diagram/i18n/km.po new file mode 100644 index 000000000000..80242a2225ea --- /dev/null +++ b/web_diagram/i18n/km.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Sengtha Chay , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Sengtha Chay , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "សកម្មភាព" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/ko.po b/web_diagram/i18n/ko.po new file mode 100644 index 000000000000..7cf651d38bb0 --- /dev/null +++ b/web_diagram/i18n/ko.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Link Up링크업 , 2019 +# Seongseok Shin , 2019 +# JH CHOI , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: JH CHOI , 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "활동" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "이 노드를 제거하시겠습니까? 제거하시면, 연결된 화면 전환도 함께 제거됩니다." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "이 화면전환을 제거하시겠습니까?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "생성 :" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "도표" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "신규 노드" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "열기 : " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "화면 전환" diff --git a/web_diagram/i18n/lb.po b/web_diagram/i18n/lb.po new file mode 100644 index 000000000000..73977594fad9 --- /dev/null +++ b/web_diagram/i18n/lb.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/lo.po b/web_diagram/i18n/lo.po new file mode 100644 index 000000000000..6b0360a82784 --- /dev/null +++ b/web_diagram/i18n/lo.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# ສີສຸວັນ ສັງບົວບຸລົມ , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ , 2020\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "ກິດຈະກຳ" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/lt.po b/web_diagram/i18n/lt.po new file mode 100644 index 000000000000..19c60826b6f3 --- /dev/null +++ b/web_diagram/i18n/lt.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Linas Versada , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Linas Versada , 2019\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Veikla" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Ar tikrai norite pašalinti šį mazgą? Tai taip pat pašalins juo sujungtus " +"perėjimus." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Ar tikrai norite pašalinti šį perėjimą?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Sukurti:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Naujas mazgas" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Atidaryti: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Perėjimas" diff --git a/web_diagram/i18n/lv.po b/web_diagram/i18n/lv.po new file mode 100644 index 000000000000..c859d0319d62 --- /dev/null +++ b/web_diagram/i18n/lv.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Arnis Putniņš , 2019 +# JanisJanis , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: JanisJanis , 2019\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivitāte" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Izveidot: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagramma" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transition" diff --git a/web_diagram/i18n/mk.po b/web_diagram/i18n/mk.po new file mode 100644 index 000000000000..391c08ca59d2 --- /dev/null +++ b/web_diagram/i18n/mk.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:27+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/" +"mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Активност" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Креирај:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"Избришаниот јазол не може да се врати.\n" +"Ова ќе ги избрише сите поврзани премини.\n" +"\n" +"Дали си сигурен ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"Избришаната транзиција не може да се врати.\n" +"\n" +"Дали си сигурен ?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Дијаграм" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Ново" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Нов јазол" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Отвори: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Преод" diff --git a/web_diagram/i18n/ml.po b/web_diagram/i18n/ml.po new file mode 100644 index 000000000000..285865d7ddbb --- /dev/null +++ b/web_diagram/i18n/ml.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Malayalam (https://www.transifex.com/odoo/teams/41243/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/mn.po b/web_diagram/i18n/mn.po new file mode 100644 index 000000000000..ed0572fb2b48 --- /dev/null +++ b/web_diagram/i18n/mn.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Ажилбар" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Үүсгэх" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Диаграм" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Шинэ Зангилаа" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Шилжилт" diff --git a/web_diagram/i18n/my.po b/web_diagram/i18n/my.po new file mode 100644 index 000000000000..13a83c6cc714 --- /dev/null +++ b/web_diagram/i18n/my.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Burmese (https://www.transifex.com/odoo/teams/41243/my/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: my\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/nb.po b/web_diagram/i18n/nb.po new file mode 100644 index 000000000000..82dae7d61f90 --- /dev/null +++ b/web_diagram/i18n/nb.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Jorunn D. Newth, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Jorunn D. Newth, 2019\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivitet" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Er du sikker på at du vil fjerne denne noden? Det vil fjerne de tilknyttede " +"overgangene også." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Er du sikker på at du vil fjerne denne overgangen?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Opprett:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Ny node" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Åpne:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Overgang" diff --git a/web_diagram/i18n/nl.po b/web_diagram/i18n/nl.po new file mode 100644 index 000000000000..e80451e03c1b --- /dev/null +++ b/web_diagram/i18n/nl.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Yenthe Van Ginneken , 2019 +# Cas Vissers , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Cas Vissers , 2019\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Activiteit" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Bent u zeker dat u dit knooppunt wil verwijderen? Dit verwijdert ook alle " +"verbonden overgangen." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Weet u zeker dat u deze transactie wil verwijderen?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Aanmaken:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nieuw knooppunt" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Open: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Overgang" diff --git a/web_diagram/i18n/nl_BE.po b/web_diagram/i18n/nl_BE.po new file mode 100644 index 000000000000..822c3e682583 --- /dev/null +++ b/web_diagram/i18n/nl_BE.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:26+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "Activiteit" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "Maken:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" +"Het verwijderen van dit knooppunt kan niet ongedaan worden gemaakt.\n" +"Ook alle gekoppelde overgangen zullen hiermee worden verwijderd.\n" +"\n" +"Bent u zeker?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" +"Het verwijderen van deze overgang kan niet ongedaan worden gemaakt.\n" +"\n" +"Bent u zeker?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "Nieuw" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nieuw knooppunt" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "Openen: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "Overgang" diff --git a/web_diagram/i18n/pl.po b/web_diagram/i18n/pl.po new file mode 100644 index 000000000000..7f649eb59225 --- /dev/null +++ b/web_diagram/i18n/pl.po @@ -0,0 +1,88 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Grzegorz Grzelak , 2019 +# Tomasz Leppich , 2019 +# Piotr Szlązak , 2019 +# Paweł Wodyński , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Paweł Wodyński , 2019\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Czynność" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Czy na pewno chcesz usunąć ten węzeł? Spowoduje to również usunięcie " +"połączonych przejść." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Czy na pewno chcesz usunąć to przejście?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Utwórz:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nowy węzeł" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Otwórz:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Przejście" diff --git a/web_diagram/i18n/pt.po b/web_diagram/i18n/pt.po new file mode 100644 index 000000000000..2da122c29311 --- /dev/null +++ b/web_diagram/i18n/pt.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Manuela Silva , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Manuela Silva , 2019\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Atividade" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Tem a certeza que pretende remover este nodo? Isto também irá remover as " +"transições ligadas." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Tem a certeza que pretende remover esta transição?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Criar:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novo Nodo" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Abrir: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transição" diff --git a/web_diagram/i18n/pt_BR.po b/web_diagram/i18n/pt_BR.po new file mode 100644 index 000000000000..54dff37cae3d --- /dev/null +++ b/web_diagram/i18n/pt_BR.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Mateus Lopes , 2019 +# Luiz Fernando Gondin , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Luiz Fernando Gondin , 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Atividade" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Você tem certeza que deseja remover este nó? Isto também irá remover todas " +"as transições conectadas." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Você tem certeza que deseja remover esta transição?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Criar:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagrama" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novo Nó" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Aberto:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transição" diff --git a/web_diagram/i18n/ro.po b/web_diagram/i18n/ro.po new file mode 100644 index 000000000000..84259ed8bed4 --- /dev/null +++ b/web_diagram/i18n/ro.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Dorin Hongu , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Dorin Hongu , 2022\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Activitate" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Creează: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagramă" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nod Nou" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Deschide:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Tranzitie" diff --git a/web_diagram/i18n/ru.po b/web_diagram/i18n/ru.po new file mode 100644 index 000000000000..fe5dff4c0abc --- /dev/null +++ b/web_diagram/i18n/ru.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Ivan Yelizariev , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Ivan Yelizariev , 2019\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Мероприятие" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Вы уверены, что хотите удалить этот узел? Это также приведет к удалению его " +"связанных переходов." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Вы уверены, что хотите удалить этот переход?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Создать:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Диаграмма" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Новый узел" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "открыть:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Переход" diff --git a/web_diagram/i18n/sk.po b/web_diagram/i18n/sk.po new file mode 100644 index 000000000000..92ca1ac6eb3b --- /dev/null +++ b/web_diagram/i18n/sk.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Matus Krnac , 2019 +# Jaroslav Bosansky , 2019 +# Jan Prokop, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Jan Prokop, 2019\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivita" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Naozaj chcete odstrániť tento uzol? Toto tiež odstráni pripojené prechody." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Naozaj chcete odstrániť tento prechod?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Vytvoriť:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Nový uzol" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Otvoriť:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Prechod" diff --git a/web_diagram/i18n/sl.po b/web_diagram/i18n/sl.po new file mode 100644 index 000000000000..bded3f3a7c04 --- /dev/null +++ b/web_diagram/i18n/sl.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# Matjaz Mozetic , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Matjaz Mozetic , 2020\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivnost" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Ustvari:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novo vozlišče" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Prehod" diff --git a/web_diagram/i18n/sr.po b/web_diagram/i18n/sr.po new file mode 100644 index 000000000000..086dcc83c785 --- /dev/null +++ b/web_diagram/i18n/sr.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Slobodan Simić , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Slobodan Simić , 2019\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Активност" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Dijagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Prelaz" diff --git a/web_diagram/i18n/sr@latin.po b/web_diagram/i18n/sr@latin.po new file mode 100644 index 000000000000..1a8183a57bda --- /dev/null +++ b/web_diagram/i18n/sr@latin.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:54+0000\n" +"PO-Revision-Date: 2017-09-20 09:54+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivnost" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Kreiraj:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Dijagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Novi Čvor" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Tranzicija" diff --git a/web_diagram/i18n/sv.po b/web_diagram/i18n/sv.po new file mode 100644 index 000000000000..6f1f22c3e115 --- /dev/null +++ b/web_diagram/i18n/sv.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivitet" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Skapa:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Ny nod" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Övergång" diff --git a/web_diagram/i18n/th.po b/web_diagram/i18n/th.po new file mode 100644 index 000000000000..1078391f8ab8 --- /dev/null +++ b/web_diagram/i18n/th.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2020 +# gsong , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: gsong , 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "กิจกรรม" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "สร้าง" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "ไดอะแกรม" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "สร้างโหนดใหม่" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "เปิด:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "การเปลี่ยนแปลง" diff --git a/web_diagram/i18n/tr.po b/web_diagram/i18n/tr.po new file mode 100644 index 000000000000..68b5af005913 --- /dev/null +++ b/web_diagram/i18n/tr.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# Murat Kaplan , 2019 +# Umur Akın , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Umur Akın , 2019\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Aktivite" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Bu düğümü kaldırmak istediğinizden emin misiniz? Bu bağlı geçişleri de " +"kaldıracaktır." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Bu geçişi kaldırmak istediğinize emin misiniz?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Oluştur:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Diyagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Yeni Düğüm" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Aç:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Geçiş" diff --git a/web_diagram/i18n/ug.po b/web_diagram/i18n/ug.po new file mode 100644 index 000000000000..002e526f2141 --- /dev/null +++ b/web_diagram/i18n/ug.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Uighur (https://www.transifex.com/odoo/teams/41243/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/uk.po b/web_diagram/i18n/uk.po new file mode 100644 index 000000000000..e5d20a984bc8 --- /dev/null +++ b/web_diagram/i18n/uk.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# ТАрас , 2019 +# Alina Lisnenko , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Alina Lisnenko , 2019\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Дія" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" +"Ви впевнені, що хочете видалити цей вузол? Це також призведе до видалення " +"його пов'язаних переходів." + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "Ви впевнені, що хочете видалити цей перехід?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Створити:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Діаграма" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Новий вузол" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Відкрити:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Переміщення" diff --git a/web_diagram/i18n/uz.po b/web_diagram/i18n/uz.po new file mode 100644 index 000000000000..c63b845881fe --- /dev/null +++ b/web_diagram/i18n/uz.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Uzbek (https://www.transifex.com/odoo/teams/41243/uz/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/vi.po b/web_diagram/i18n/vi.po new file mode 100644 index 000000000000..5d1f7a3929bc --- /dev/null +++ b/web_diagram/i18n/vi.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# fanha99 , 2019 +# Duy BQ , 2019 +# Minh Nguyen , 2019 +# Dung Nguyen Thi , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Dung Nguyen Thi , 2019\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "Hoạt động" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "Tạo:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "Biểu đồ" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "Node Mới" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "Mở: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "Transition" diff --git a/web_diagram/i18n/web_diagram.pot b/web_diagram/i18n/web_diagram.pot new file mode 100644 index 000000000000..ecc85fb5053e --- /dev/null +++ b/web_diagram/i18n/web_diagram.pot @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-12 11:32+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "" + +#. module: web_diagram +#: model_terms:ir.ui.view,arch_db:web_diagram.view_web_diagram_nav_help_form +msgid "Got it!" +msgstr "" diff --git a/web_diagram/i18n/zh_CN.po b/web_diagram/i18n/zh_CN.po new file mode 100644 index 000000000000..657fdba558c2 --- /dev/null +++ b/web_diagram/i18n/zh_CN.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Jeanphy , 2019 +# Martin Trigaux, 2019 +# Jeffery CHEN , 2019 +# bf2549c5415a9287249cba2b8a5823c7, 2019 +# inspur qiuguodong , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: inspur qiuguodong , 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "活动" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "你确定要移除这个节点? 这也将移除其连接的转换。" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "你确定要移除这个转换吗?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "创建:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "图表" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "新建:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "打开:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "转换" diff --git a/web_diagram/i18n/zh_HK.po b/web_diagram/i18n/zh_HK.po new file mode 100644 index 000000000000..19f29f94554b --- /dev/null +++ b/web_diagram/i18n/zh_HK.po @@ -0,0 +1,93 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 09:26+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/odoo/odoo-9/" +"language/zh_HK/)\n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:249 +#: code:addons/web_diagram/static/src/js/diagram.js:277 +#, python-format +msgid "Activity" +msgstr "動態" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:282 +#: code:addons/web_diagram/static/src/js/diagram.js:326 +#, python-format +msgid "Create:" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:220 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:238 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:19 +#, python-format +msgid "Diagram" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:124 +#, python-format +msgid "New" +msgstr "新建" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:254 +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#, python-format +msgid "Open: " +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:305 +#: code:addons/web_diagram/static/src/js/diagram.js:321 +#, python-format +msgid "Transition" +msgstr "" diff --git a/web_diagram/i18n/zh_TW.po b/web_diagram/i18n/zh_TW.po new file mode 100644 index 000000000000..63dc3de062ff --- /dev/null +++ b/web_diagram/i18n/zh_TW.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_diagram +# +# Translators: +# Martin Trigaux, 2019 +# 敬雲 林 , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: 敬雲 林 , 2019\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/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_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Activity" +msgstr "活動" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:192 +#, python-format +msgid "" +"Are you sure you want to remove this node ? This will remove its connected " +"transitions as well." +msgstr "您確定要刪除這個節點? 這也將刪除其連接的轉換。" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:172 +#, python-format +msgid "Are you sure you want to remove this transition?" +msgstr "您確定要刪除這個轉換嗎?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:73 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#, python-format +msgid "Create:" +msgstr "創建:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_view.js:16 +#, python-format +msgid "Diagram" +msgstr "圖表" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:5 +#, python-format +msgid "New Node" +msgstr "新建節點" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:160 +#, python-format +msgid "Open:" +msgstr "打開:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram_controller.js:110 +#: code:addons/web_diagram/static/src/js/diagram_controller.js:143 +#, python-format +msgid "Transition" +msgstr "轉換" diff --git a/web_diagram/models/__init__.py b/web_diagram/models/__init__.py new file mode 100644 index 000000000000..af030128c9c2 --- /dev/null +++ b/web_diagram/models/__init__.py @@ -0,0 +1,3 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import ir_ui_view, diagram_nav_help diff --git a/web_diagram/models/diagram_nav_help.py b/web_diagram/models/diagram_nav_help.py new file mode 100644 index 000000000000..ef56088a9086 --- /dev/null +++ b/web_diagram/models/diagram_nav_help.py @@ -0,0 +1,84 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models + + +class DiagramNavHelp(models.TransientModel): + _name = "web.diagram.nav.help" + _description = "Diagram Navigation Help" + + content_html = fields.Html(sanitize=False) + + @api.model + def create_nav_help_action(self): + lang = (self.env.lang or self.env.user.lang or "en_US").lower() + is_fr = lang.startswith("fr") + title = "Conseils de navigation" if is_fr else "Navigation Tips" + rec = self.create({"content_html": self._get_help_html(is_fr)}) + return { + "type": "ir.actions.act_window", + "name": title, + "res_model": "web.diagram.nav.help", + "res_id": rec.id, + "view_mode": "form", + "target": "new", + "views": [(False, "form")], + } + + @staticmethod + def _get_help_html(is_fr=False): + if is_fr: + return ( + '
' + '
' + '
Avec une souris
' + '
    ' + "
  • Zoom : molette de la souris pour zoomer/dézoomer.
  • " + "
  • Déplacement : cliquez et faites glisser pour vous déplacer.
  • " + "
  • Tout afficher : appuyez sur F pour afficher l'intégralité du diagramme.
  • " + "
" + "
" + '
' + '
Sans souris (clavier)
' + '
    ' + "
  • Zoom : touches + / -.
  • " + "
  • Déplacement : flèches directionnelles.
  • " + "
  • Tout afficher : appuyez sur F.
  • " + "
" + "
" + '
' + '
Autres conseils
' + '
    ' + "
  • Les nœuds sans lien sont regroupés dans une grille séparée en bas de page.
  • " + "
  • Pour plus d'informations, retournez à la page précédente et cliquez sur « Comment ça marche ? ».
  • " + "
" + "
" + "
" + ) + return ( + '
' + '
' + '
With a mouse
' + '
    ' + "
  • Zoom: scroll wheel to zoom in/out.
  • " + "
  • Pan: click and drag to move around.
  • " + "
  • Fit all: press F to fit the full diagram in view.
  • " + "
" + "
" + '
' + '
Without a mouse (keyboard)
' + '
    ' + "
  • Zoom: + / - keys.
  • " + "
  • Pan: arrow keys to move around.
  • " + "
  • Fit all: press F.
  • " + "
" + "
" + '
' + '
Other tips
' + '
    ' + "
  • Nodes with no links are grouped in a separate grid at the bottom.
  • " + "
  • For more info, go back to the previous page and click “How does it work?”.
  • " + "
" + "
" + "
" + ) diff --git a/web_diagram/models/ir_ui_view.py b/web_diagram/models/ir_ui_view.py new file mode 100644 index 000000000000..77206f70c174 --- /dev/null +++ b/web_diagram/models/ir_ui_view.py @@ -0,0 +1,161 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from lxml import etree + +from odoo import api, fields, models +from odoo.tools.safe_eval import safe_eval + +from ..tools.graph import graph + +DIAGRAM_VIEW = ("diagram", "Diagram") + + +class IrUIView(models.Model): + _inherit = "ir.ui.view" + + type = fields.Selection(selection_add=[DIAGRAM_VIEW]) + + def _get_view_info(self): + result = super()._get_view_info() + result["diagram"] = { + "icon": "fa fa-code-fork", + "multi_record": False, + } + return result + + def _postprocess_tag_diagram_element(self, node, name_manager, node_info, wrapper_tag): + """Postprocess or children against their own model.""" + element_model = node.get("object") + if element_model and element_model in self.env: + wrapper = etree.Element(wrapper_tag) + for child in list(node): + wrapper.append(child) + self._postprocess_view(wrapper, element_model, editable=False) + for child in list(wrapper): + node.append(child) + node_info["children"] = [] + node_info["editable"] = False + + def _postprocess_tag_node(self, node, name_manager, node_info): + self._postprocess_tag_diagram_element(node, name_manager, node_info, "_node_wrapper") + + def _postprocess_tag_arrow(self, node, name_manager, node_info): + self._postprocess_tag_diagram_element(node, name_manager, node_info, "_arrow_wrapper") + + def _validate_tag_diagram_element(self, node, name_manager, node_info): + """Validate or children against their own model.""" + element_model = node.get("object") + if element_model and element_model in self.env: + for child in list(node): + node.remove(child) + self._validate_view( + child, element_model, view_type=child.tag, editable=False, + node_info=node_info, + ) + + def _validate_tag_node(self, node, name_manager, node_info): + self._validate_tag_diagram_element(node, name_manager, node_info) + + def _validate_tag_arrow(self, node, name_manager, node_info): + self._validate_tag_diagram_element(node, name_manager, node_info) + + def _validate_tag_label(self, node, name_manager, node_info): + """In a diagram view,