diff --git a/dead_mans_switch_client/README.rst b/dead_mans_switch_client/README.rst new file mode 100644 index 000000000..534b3bfde --- /dev/null +++ b/dead_mans_switch_client/README.rst @@ -0,0 +1,75 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +========================== +Dead man's switch (client) +========================== + +This module is the client part of `dead_mans_switch_server`. It is responsible +of sending the server status updates, which in turn takes action if those +updates don't come in time. + +Configuration +============= + +After installing this module, you need to fill in the system parameter +``dead_mans_switch_client.url``. This must be the full URL to the server's +controller, usually of the form ``https://your.server/dead_mans_switch/alive``. + +This module attempts to send CPU and RAM statistics to the server. While this +is not mandatory, it's helpful for assessing a server's health. If you want +this, you need to install ``psutil``. + +You can also have the number of currently online users logged, but this only +works if the ``bus`` module is installed and longpolling configured correctly. + +Usage +===== + +This module doesn't have any visible effect on the client. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/149/10.0 + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Known issues / Roadmap +====================== + +* certificate pinning would be nice + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + +Credits +======= + +Contributors +------------ + +* Holger Brunn +* Jairo Llopis +* Miku Laitinen + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/dead_mans_switch_client/__init__.py b/dead_mans_switch_client/__init__.py new file mode 100644 index 000000000..8b959ae65 --- /dev/null +++ b/dead_mans_switch_client/__init__.py @@ -0,0 +1,3 @@ +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import models diff --git a/dead_mans_switch_client/__manifest__.py b/dead_mans_switch_client/__manifest__.py new file mode 100644 index 000000000..c87605b44 --- /dev/null +++ b/dead_mans_switch_client/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# © 2015-2016 Therp BV +# © 2017 Avoin.Systems - Miku Laitinen +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Dead man's switch (client)", + "version": "11.0.1.0.0", + "author": "Therp BV, Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Monitoring", + "summary": "Be notified when customers' Odoo instances go down", + "depends": [ + 'base', + ], + "data": [ + "data/ir_actions.xml", + "data/ir_cron.xml", + ], + "demo": [ + "demo/dead_mans_switch_client_demo.yml", + ], + 'installable': True, +} diff --git a/dead_mans_switch_client/data/ir_actions.xml b/dead_mans_switch_client/data/ir_actions.xml new file mode 100644 index 000000000..952c79a4d --- /dev/null +++ b/dead_mans_switch_client/data/ir_actions.xml @@ -0,0 +1,10 @@ + + + + + Configure the dead man's switch server + + + diff --git a/dead_mans_switch_client/data/ir_cron.xml b/dead_mans_switch_client/data/ir_cron.xml new file mode 100644 index 000000000..94f01eb28 --- /dev/null +++ b/dead_mans_switch_client/data/ir_cron.xml @@ -0,0 +1,12 @@ + + + + Dead man's switch client + 5 + minutes + -1 + + code + model.alive() + + diff --git a/dead_mans_switch_client/demo/dead_mans_switch_client_demo.yml b/dead_mans_switch_client/demo/dead_mans_switch_client_demo.yml new file mode 100644 index 000000000..5e21e60fa --- /dev/null +++ b/dead_mans_switch_client/demo/dead_mans_switch_client_demo.yml @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +- !function {model: dead.mans.switch.client, name: _install_default_url} diff --git a/dead_mans_switch_client/i18n/am.po b/dead_mans_switch_client/i18n/am.po new file mode 100644 index 000000000..2182d52c9 --- /dev/null +++ b/dead_mans_switch_client/i18n/am.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:53+0000\n" +"PO-Revision-Date: 2016-09-10 02:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/ar.po b/dead_mans_switch_client/i18n/ar.po new file mode 100644 index 000000000..234d55c6c --- /dev/null +++ b/dead_mans_switch_client/i18n/ar.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "المعرف" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/bg.po b/dead_mans_switch_client/i18n/bg.po new file mode 100644 index 000000000..4d979bc30 --- /dev/null +++ b/dead_mans_switch_client/i18n/bg.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/bs.po b/dead_mans_switch_client/i18n/bs.po new file mode 100644 index 000000000..88ead248b --- /dev/null +++ b/dead_mans_switch_client/i18n/bs.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/ca.po b/dead_mans_switch_client/i18n/ca.po new file mode 100644 index 000000000..67e779070 --- /dev/null +++ b/dead_mans_switch_client/i18n/ca.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/cs.po b/dead_mans_switch_client/i18n/cs.po new file mode 100644 index 000000000..bba6b2412 --- /dev/null +++ b/dead_mans_switch_client/i18n/cs.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/da.po b/dead_mans_switch_client/i18n/da.po new file mode 100644 index 000000000..b5317c48b --- /dev/null +++ b/dead_mans_switch_client/i18n/da.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "Id" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/de.po b/dead_mans_switch_client/i18n/de.po new file mode 100644 index 000000000..da740ffe5 --- /dev/null +++ b/dead_mans_switch_client/i18n/de.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +# Ermin Trevisan , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:53+0000\n" +"PO-Revision-Date: 2016-09-10 02:53+0000\n" +"Last-Translator: Ermin Trevisan , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "Konfigurieren Sie den 'dead man's switch -Server'" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/el_GR.po b/dead_mans_switch_client/i18n/el_GR.po new file mode 100644 index 000000000..969d96d2d --- /dev/null +++ b/dead_mans_switch_client/i18n/el_GR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:53+0000\n" +"PO-Revision-Date: 2016-09-10 02:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "Κωδικός" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/en_GB.po b/dead_mans_switch_client/i18n/en_GB.po new file mode 100644 index 000000000..76545fe9a --- /dev/null +++ b/dead_mans_switch_client/i18n/en_GB.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es.po b/dead_mans_switch_client/i18n/es.po new file mode 100644 index 000000000..96ce6e906 --- /dev/null +++ b/dead_mans_switch_client/i18n/es.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última actualización por" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_AR.po b/dead_mans_switch_client/i18n/es_AR.po new file mode 100644 index 000000000..fe51dc034 --- /dev/null +++ b/dead_mans_switch_client/i18n/es_AR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_CL.po b/dead_mans_switch_client/i18n/es_CL.po new file mode 100644 index 000000000..ea20a94cf --- /dev/null +++ b/dead_mans_switch_client/i18n/es_CL.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_CO.po b/dead_mans_switch_client/i18n/es_CO.po new file mode 100644 index 000000000..48c8e2778 --- /dev/null +++ b/dead_mans_switch_client/i18n/es_CO.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_CR.po b/dead_mans_switch_client/i18n/es_CR.po new file mode 100644 index 000000000..63f077380 --- /dev/null +++ b/dead_mans_switch_client/i18n/es_CR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_DO.po b/dead_mans_switch_client/i18n/es_DO.po new file mode 100644 index 000000000..429423ebd --- /dev/null +++ b/dead_mans_switch_client/i18n/es_DO.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_EC.po b/dead_mans_switch_client/i18n/es_EC.po new file mode 100644 index 000000000..31c755139 --- /dev/null +++ b/dead_mans_switch_client/i18n/es_EC.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_ES.po b/dead_mans_switch_client/i18n/es_ES.po new file mode 100644 index 000000000..285e0cd5a --- /dev/null +++ b/dead_mans_switch_client/i18n/es_ES.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_MX.po b/dead_mans_switch_client/i18n/es_MX.po new file mode 100644 index 000000000..03987ffa5 --- /dev/null +++ b/dead_mans_switch_client/i18n/es_MX.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_PE.po b/dead_mans_switch_client/i18n/es_PE.po new file mode 100644 index 000000000..2df5e4e7e --- /dev/null +++ b/dead_mans_switch_client/i18n/es_PE.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_PY.po b/dead_mans_switch_client/i18n/es_PY.po new file mode 100644 index 000000000..311cea553 --- /dev/null +++ b/dead_mans_switch_client/i18n/es_PY.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/es_VE.po b/dead_mans_switch_client/i18n/es_VE.po new file mode 100644 index 000000000..f3e0e54ff --- /dev/null +++ b/dead_mans_switch_client/i18n/es_VE.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/et.po b/dead_mans_switch_client/i18n/et.po new file mode 100644 index 000000000..121776b55 --- /dev/null +++ b/dead_mans_switch_client/i18n/et.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/eu.po b/dead_mans_switch_client/i18n/eu.po new file mode 100644 index 000000000..cfbedb61d --- /dev/null +++ b/dead_mans_switch_client/i18n/eu.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/fa.po b/dead_mans_switch_client/i18n/fa.po new file mode 100644 index 000000000..8129c4ab7 --- /dev/null +++ b/dead_mans_switch_client/i18n/fa.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "شناسه" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/fi.po b/dead_mans_switch_client/i18n/fi.po new file mode 100644 index 000000000..891a88eb9 --- /dev/null +++ b/dead_mans_switch_client/i18n/fi.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "Konfiguroi \"kuolleen miehen kytkin\"-palvelin" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/fr.po b/dead_mans_switch_client/i18n/fr.po new file mode 100644 index 000000000..d15f13ca2 --- /dev/null +++ b/dead_mans_switch_client/i18n/fr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/fr_CA.po b/dead_mans_switch_client/i18n/fr_CA.po new file mode 100644 index 000000000..93af2cc71 --- /dev/null +++ b/dead_mans_switch_client/i18n/fr_CA.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "Identifiant" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/fr_CH.po b/dead_mans_switch_client/i18n/fr_CH.po new file mode 100644 index 000000000..36160d96c --- /dev/null +++ b/dead_mans_switch_client/i18n/fr_CH.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/gl.po b/dead_mans_switch_client/i18n/gl.po new file mode 100644 index 000000000..1888d0ea4 --- /dev/null +++ b/dead_mans_switch_client/i18n/gl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/gl_ES.po b/dead_mans_switch_client/i18n/gl_ES.po new file mode 100644 index 000000000..bacf01178 --- /dev/null +++ b/dead_mans_switch_client/i18n/gl_ES.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/he.po b/dead_mans_switch_client/i18n/he.po new file mode 100644 index 000000000..9e5a89e5b --- /dev/null +++ b/dead_mans_switch_client/i18n/he.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "מזהה" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/hr.po b/dead_mans_switch_client/i18n/hr.po new file mode 100644 index 000000000..008645be7 --- /dev/null +++ b/dead_mans_switch_client/i18n/hr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/hr_HR.po b/dead_mans_switch_client/i18n/hr_HR.po new file mode 100644 index 000000000..992ed76a6 --- /dev/null +++ b/dead_mans_switch_client/i18n/hr_HR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/hu.po b/dead_mans_switch_client/i18n/hu.po new file mode 100644 index 000000000..cc34dbcd6 --- /dev/null +++ b/dead_mans_switch_client/i18n/hu.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/id.po b/dead_mans_switch_client/i18n/id.po new file mode 100644 index 000000000..deba324cc --- /dev/null +++ b/dead_mans_switch_client/i18n/id.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/it.po b/dead_mans_switch_client/i18n/it.po new file mode 100644 index 000000000..017eb5781 --- /dev/null +++ b/dead_mans_switch_client/i18n/it.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/ja.po b/dead_mans_switch_client/i18n/ja.po new file mode 100644 index 000000000..985c00032 --- /dev/null +++ b/dead_mans_switch_client/i18n/ja.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/ko.po b/dead_mans_switch_client/i18n/ko.po new file mode 100644 index 000000000..248c37479 --- /dev/null +++ b/dead_mans_switch_client/i18n/ko.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/lt.po b/dead_mans_switch_client/i18n/lt.po new file mode 100644 index 000000000..739f3f547 --- /dev/null +++ b/dead_mans_switch_client/i18n/lt.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/lt_LT.po b/dead_mans_switch_client/i18n/lt_LT.po new file mode 100644 index 000000000..b08abd7ec --- /dev/null +++ b/dead_mans_switch_client/i18n/lt_LT.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/lv.po b/dead_mans_switch_client/i18n/lv.po new file mode 100644 index 000000000..bd9e4d61a --- /dev/null +++ b/dead_mans_switch_client/i18n/lv.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/mk.po b/dead_mans_switch_client/i18n/mk.po new file mode 100644 index 000000000..d918c23b9 --- /dev/null +++ b/dead_mans_switch_client/i18n/mk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/mn.po b/dead_mans_switch_client/i18n/mn.po new file mode 100644 index 000000000..d611c8988 --- /dev/null +++ b/dead_mans_switch_client/i18n/mn.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/nb.po b/dead_mans_switch_client/i18n/nb.po new file mode 100644 index 000000000..51ba3eec8 --- /dev/null +++ b/dead_mans_switch_client/i18n/nb.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/nb_NO.po b/dead_mans_switch_client/i18n/nb_NO.po new file mode 100644 index 000000000..664406c5e --- /dev/null +++ b/dead_mans_switch_client/i18n/nb_NO.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/nl.po b/dead_mans_switch_client/i18n/nl.po new file mode 100644 index 000000000..757e388bb --- /dev/null +++ b/dead_mans_switch_client/i18n/nl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/nl_BE.po b/dead_mans_switch_client/i18n/nl_BE.po new file mode 100644 index 000000000..5681b7a2f --- /dev/null +++ b/dead_mans_switch_client/i18n/nl_BE.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/nl_NL.po b/dead_mans_switch_client/i18n/nl_NL.po new file mode 100644 index 000000000..4a5c795e2 --- /dev/null +++ b/dead_mans_switch_client/i18n/nl_NL.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/pl.po b/dead_mans_switch_client/i18n/pl.po new file mode 100644 index 000000000..5d79460dd --- /dev/null +++ b/dead_mans_switch_client/i18n/pl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=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: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/pt.po b/dead_mans_switch_client/i18n/pt.po new file mode 100644 index 000000000..385712c09 --- /dev/null +++ b/dead_mans_switch_client/i18n/pt.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/pt_BR.po b/dead_mans_switch_client/i18n/pt_BR.po new file mode 100644 index 000000000..4ee6bea85 --- /dev/null +++ b/dead_mans_switch_client/i18n/pt_BR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "Identificação" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/pt_PT.po b/dead_mans_switch_client/i18n/pt_PT.po new file mode 100644 index 000000000..8996a91a3 --- /dev/null +++ b/dead_mans_switch_client/i18n/pt_PT.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/ro.po b/dead_mans_switch_client/i18n/ro.po new file mode 100644 index 000000000..d96874f2d --- /dev/null +++ b/dead_mans_switch_client/i18n/ro.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/ru.po b/dead_mans_switch_client/i18n/ru.po new file mode 100644 index 000000000..d5f703b55 --- /dev/null +++ b/dead_mans_switch_client/i18n/ru.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/sk.po b/dead_mans_switch_client/i18n/sk.po new file mode 100644 index 000000000..de0419dec --- /dev/null +++ b/dead_mans_switch_client/i18n/sk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/sl.po b/dead_mans_switch_client/i18n/sl.po new file mode 100644 index 000000000..0cae173eb --- /dev/null +++ b/dead_mans_switch_client/i18n/sl.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "Nastavitev strežnika varnostnega stikala" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/sr.po b/dead_mans_switch_client/i18n/sr.po new file mode 100644 index 000000000..65026df46 --- /dev/null +++ b/dead_mans_switch_client/i18n/sr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/sr@latin.po b/dead_mans_switch_client/i18n/sr@latin.po new file mode 100644 index 000000000..91e99c3c6 --- /dev/null +++ b/dead_mans_switch_client/i18n/sr@latin.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/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: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/sv.po b/dead_mans_switch_client/i18n/sv.po new file mode 100644 index 000000000..42555c7c9 --- /dev/null +++ b/dead_mans_switch_client/i18n/sv.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/th.po b/dead_mans_switch_client/i18n/th.po new file mode 100644 index 000000000..1254f5310 --- /dev/null +++ b/dead_mans_switch_client/i18n/th.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "รหัส" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/tr.po b/dead_mans_switch_client/i18n/tr.po new file mode 100644 index 000000000..e3da4bdab --- /dev/null +++ b/dead_mans_switch_client/i18n/tr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "Ölü adam tetiği sunucusunu ayarla" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/tr_TR.po b/dead_mans_switch_client/i18n/tr_TR.po new file mode 100644 index 000000000..e1e6b2e21 --- /dev/null +++ b/dead_mans_switch_client/i18n/tr_TR.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "Kimlik" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/uk.po b/dead_mans_switch_client/i18n/uk.po new file mode 100644 index 000000000..0c9391ee1 --- /dev/null +++ b/dead_mans_switch_client/i18n/uk.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/vi.po b/dead_mans_switch_client/i18n/vi.po new file mode 100644 index 000000000..f126b54cb --- /dev/null +++ b/dead_mans_switch_client/i18n/vi.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/vi_VN.po b/dead_mans_switch_client/i18n/vi_VN.po new file mode 100644 index 000000000..0fa12e83a --- /dev/null +++ b/dead_mans_switch_client/i18n/vi_VN.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/zh_CN.po b/dead_mans_switch_client/i18n/zh_CN.po new file mode 100644 index 000000000..8eb6b289c --- /dev/null +++ b/dead_mans_switch_client/i18n/zh_CN.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/i18n/zh_TW.po b/dead_mans_switch_client/i18n/zh_TW.po new file mode 100644 index 000000000..38f9a573b --- /dev/null +++ b/dead_mans_switch_client/i18n/zh_TW.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: dead_mans_switch_client +#: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup +msgid "Configure the dead man's switch server" +msgstr "" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id +msgid "ID" +msgstr "編號" + +#. module: dead_mans_switch_client +#: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: dead_mans_switch_client +#: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client +msgid "dead.mans.switch.client" +msgstr "" diff --git a/dead_mans_switch_client/models/__init__.py b/dead_mans_switch_client/models/__init__.py new file mode 100644 index 000000000..a1f543c73 --- /dev/null +++ b/dead_mans_switch_client/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import dead_mans_switch_client diff --git a/dead_mans_switch_client/models/dead_mans_switch_client.py b/dead_mans_switch_client/models/dead_mans_switch_client.py new file mode 100644 index 000000000..712357c53 --- /dev/null +++ b/dead_mans_switch_client/models/dead_mans_switch_client.py @@ -0,0 +1,101 @@ +# © 2015-2016 Therp BV +# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# © 2017 Avoin.Systems - Miku Laitinen +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +import json +import logging +import os +try: + import psutil +except ImportError: # pragma: no cover + psutil = None +import urllib +from odoo import api, models +from odoo.tools.config import config + +SEND_TIMEOUT = 60 + + +class DeadMansSwitchClient(models.AbstractModel): + _name = 'dead.mans.switch.client' + _register = True + + @api.model + def _get_data(self): + ram = 0 + cpu = 0 + if psutil: + process = psutil.Process(os.getpid()) + # psutil changed its api through versions + processes = [process] + if config.get('workers') and process.parent: # pragma: no cover + if hasattr(process.parent, '__call__'): + process = process.parent() + else: + process = process.parent + if hasattr(process, 'children'): + processes += process.children(True) + elif hasattr(process, 'get_children'): + processes += process.get_children(True) + for process in processes: + if hasattr(process, 'memory_percent'): + ram += process.memory_percent() + else: # pragma: no cover + ram = None + if hasattr(process, 'cpu_percent'): + cpu += process.cpu_percent() + else: # pragma: no cover + cpu = None + user_count = 0 + if 'bus.presence' in self.env.registry: + user_count = self.env['bus.presence'].search_count([ + ('status', '=', 'online'), + ]) + return { + 'database_uuid': self.env['ir.config_parameter'].get_param( + 'database.uuid'), + 'cpu': cpu, + 'ram': ram, + 'user_count': user_count, + } + + @api.model + def alive(self): + url = self.env['ir.config_parameter'].get_param( + 'dead_mans_switch_client.url') + logger = logging.getLogger(__name__) + if not url: + logger.error('No server configured!') + return + timeout = self.env['ir.config_parameter'].get_param( + 'dead_mans_switch_client.send_timeout', SEND_TIMEOUT) + data = self._get_data() + logger.debug('sending %s', data) + urllib.request.urlopen( + urllib.request.Request( + url=url, + data=json.dumps({ + 'jsonrpc': '2.0', + 'method': 'call', + 'params': data, + }).encode('utf-8'), + headers={ + 'Content-Type': 'application/json', + }), + timeout=timeout) + + @api.model + def _install_default_url(self): + """Set up a default URL.""" + conf = self.env["ir.config_parameter"] + name = "dead_mans_switch_client.url" + param = conf.get_param(name) + + if not param: + url = "{}/dead_mans_switch/alive".format( + conf.get_param( + "report.url", + conf.get_param( + "web.base.url", + "http://localhost"))) + conf.set_param(name, url) diff --git a/dead_mans_switch_client/static/description/icon.png b/dead_mans_switch_client/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/dead_mans_switch_client/static/description/icon.png differ diff --git a/dead_mans_switch_client/tests/__init__.py b/dead_mans_switch_client/tests/__init__.py new file mode 100644 index 000000000..ef8314b78 --- /dev/null +++ b/dead_mans_switch_client/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_dead_mans_switch_client diff --git a/dead_mans_switch_client/tests/test_dead_mans_switch_client.py b/dead_mans_switch_client/tests/test_dead_mans_switch_client.py new file mode 100644 index 000000000..365aefd90 --- /dev/null +++ b/dead_mans_switch_client/tests/test_dead_mans_switch_client.py @@ -0,0 +1,22 @@ +# © 2015 Therp BV +# © 2017 Avoin.Systems - Miku Laitinen +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo.tools import mute_logger +from odoo.tests.common import TransactionCase + + +class TestDeadMansSwitchClient(TransactionCase): + def test_dead_mans_switch_client(self): + # test unconfigured case + self.env['ir.config_parameter'].search([ + ('key', '=', 'dead_mans_switch_client.url')]).unlink() + with mute_logger( + 'odoo.addons.dead_mans_switch_client.models' + '.dead_mans_switch_client' + ): + self.env['dead.mans.switch.client'].alive() + # test configured case + self.env['ir.config_parameter'].set_param( + 'dead_mans_switch_client.url', 'fake_url') + with self.assertRaises(ValueError): + self.env['dead.mans.switch.client'].alive()