From 5b029731d074188111fa37d3ba613f42328c3721 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 5 Jul 2016 20:00:40 +0200 Subject: [PATCH 01/11] [ADD] dead_mans_switch_client (#460) * [ADD] dead_mans_switch_client, dead_mans_switch_server * OCA Transbot updated translations from Transifex * Add demo system parameter and some fixes to README. Fix #314. * Add timeout to urlopen in order to avoid "freeze" of the cron job * Use default timeout in get_param directly * OCA Transbot updated translations from Transifex * [IMP] count all child processes' resources * [FIX] only look at parent if workers are configured * [ADD] tell the server that we don't know a value * [FIX] pass timeout as keyword argument * [ADD] hints for coveralls * OCA Transbot updated translations from Transifex * OCA Transbot updated translations from Transifex * OCA Transbot updated translations from Transifex * OCA Transbot updated translations from Transifex * OCA Transbot updated translations from Transifex * OCA Transbot updated translations from Transifex * [ADD] migrate dead_mans_switch_client * [IMP] better readme, s/8.0/9.0/ --- dead_mans_switch_client/README.rst | 74 +++++++++++++ dead_mans_switch_client/__init__.py | 4 + dead_mans_switch_client/__openerp__.py | 21 ++++ dead_mans_switch_client/data/ir_actions.xml | 13 +++ dead_mans_switch_client/data/ir_cron.xml | 13 +++ .../demo/dead_mans_switch_client_demo.yml | 5 + dead_mans_switch_client/i18n/de.po | 29 +++++ dead_mans_switch_client/i18n/en.po | 38 +++++++ dead_mans_switch_client/i18n/es.po | 47 ++++++++ dead_mans_switch_client/i18n/fi.po | 45 ++++++++ dead_mans_switch_client/i18n/fr.po | 46 ++++++++ dead_mans_switch_client/i18n/it.po | 28 +++++ dead_mans_switch_client/i18n/pt_BR.po | 47 ++++++++ dead_mans_switch_client/i18n/sl.po | 48 +++++++++ dead_mans_switch_client/i18n/tr.po | 29 +++++ dead_mans_switch_client/i18n/zh_CN.po | 28 +++++ dead_mans_switch_client/models/__init__.py | 4 + .../models/dead_mans_switch_client.py | 101 ++++++++++++++++++ .../static/description/icon.png | Bin 0 -> 9455 bytes dead_mans_switch_client/tests/__init__.py | 4 + .../tests/test_dead_mans_switch_client.py | 17 +++ 21 files changed, 641 insertions(+) create mode 100644 dead_mans_switch_client/README.rst create mode 100644 dead_mans_switch_client/__init__.py create mode 100644 dead_mans_switch_client/__openerp__.py create mode 100644 dead_mans_switch_client/data/ir_actions.xml create mode 100644 dead_mans_switch_client/data/ir_cron.xml create mode 100644 dead_mans_switch_client/demo/dead_mans_switch_client_demo.yml create mode 100644 dead_mans_switch_client/i18n/de.po create mode 100644 dead_mans_switch_client/i18n/en.po create mode 100644 dead_mans_switch_client/i18n/es.po create mode 100644 dead_mans_switch_client/i18n/fi.po create mode 100644 dead_mans_switch_client/i18n/fr.po create mode 100644 dead_mans_switch_client/i18n/it.po create mode 100644 dead_mans_switch_client/i18n/pt_BR.po create mode 100644 dead_mans_switch_client/i18n/sl.po create mode 100644 dead_mans_switch_client/i18n/tr.po create mode 100644 dead_mans_switch_client/i18n/zh_CN.po create mode 100644 dead_mans_switch_client/models/__init__.py create mode 100644 dead_mans_switch_client/models/dead_mans_switch_client.py create mode 100644 dead_mans_switch_client/static/description/icon.png create mode 100644 dead_mans_switch_client/tests/__init__.py create mode 100644 dead_mans_switch_client/tests/test_dead_mans_switch_client.py diff --git a/dead_mans_switch_client/README.rst b/dead_mans_switch_client/README.rst new file mode 100644 index 000000000..4dcc8cc99 --- /dev/null +++ b/dead_mans_switch_client/README.rst @@ -0,0 +1,74 @@ +.. 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/9.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 + +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..915f58d4d --- /dev/null +++ b/dead_mans_switch_client/__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 models diff --git a/dead_mans_switch_client/__openerp__.py b/dead_mans_switch_client/__openerp__.py new file mode 100644 index 000000000..f939a92a4 --- /dev/null +++ b/dead_mans_switch_client/__openerp__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# © 2015-2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Dead man's switch (client)", + "version": "9.0.1.0.1", + "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", + ], +} 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..5728882a5 --- /dev/null +++ b/dead_mans_switch_client/data/ir_actions.xml @@ -0,0 +1,13 @@ + + + + + + Configure the dead man's switch server + automatic + + + + 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..fe786326d --- /dev/null +++ b/dead_mans_switch_client/data/ir_cron.xml @@ -0,0 +1,13 @@ + + + + + Dead man's switch client + 5 + minutes + -1 + dead.mans.switch.client + 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/de.po b/dead_mans_switch_client/i18n/de.po new file mode 100644 index 000000000..d2a21cacc --- /dev/null +++ b/dead_mans_switch_client/i18n/de.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 14:44+0000\n" +"PO-Revision-Date: 2016-01-18 13:53+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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 +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" diff --git a/dead_mans_switch_client/i18n/en.po b/dead_mans_switch_client/i18n/en.po new file mode 100644 index 000000000..ab859a5cb --- /dev/null +++ b/dead_mans_switch_client/i18n/en.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-06 02:41+0000\n" +"PO-Revision-Date: 2016-05-04 19:17+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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 "Configure the dead man's switch server" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" diff --git a/dead_mans_switch_client/i18n/es.po b/dead_mans_switch_client/i18n/es.po new file mode 100644 index 000000000..13a924a97 --- /dev/null +++ b/dead_mans_switch_client/i18n/es.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Carles Antoli , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012-2013 +# Hotellook, 2014 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# UAB "Draugiški sprendimai" , 2015 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-28 02:41+0000\n" +"PO-Revision-Date: 2016-05-27 15:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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 +#: field:dead.mans.switch.client,display_name:0 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,__last_update:0 +msgid "Last Modified on" +msgstr "Última actualización por" diff --git a/dead_mans_switch_client/i18n/fi.po b/dead_mans_switch_client/i18n/fi.po new file mode 100644 index 000000000..1ae08481f --- /dev/null +++ b/dead_mans_switch_client/i18n/fi.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2010,2012-2014 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015-2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-06 13:35+0000\n" +"Last-Translator: Jarmo Kortetjärvi \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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 +#: field:dead.mans.switch.client,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" diff --git a/dead_mans_switch_client/i18n/fr.po b/dead_mans_switch_client/i18n/fr.po new file mode 100644 index 000000000..87579f7db --- /dev/null +++ b/dead_mans_switch_client/i18n/fr.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Ahmet Altınışık , 2015-2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2013-2014 +# Matjaž Mozetič , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-12 14:34+0000\n" +"PO-Revision-Date: 2016-05-08 15:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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 +#: field:dead.mans.switch.client,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" diff --git a/dead_mans_switch_client/i18n/it.po b/dead_mans_switch_client/i18n/it.po new file mode 100644 index 000000000..2e97daff5 --- /dev/null +++ b/dead_mans_switch_client/i18n/it.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-27 14:01+0000\n" +"PO-Revision-Date: 2015-11-26 12:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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 +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" 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..ec360a74a --- /dev/null +++ b/dead_mans_switch_client/i18n/pt_BR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Ahmet Altınışık , 2016 +# Antonio Trueba, 2016 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012 +# Hotellook, 2014 +# Isabelle RICHARD , 2015 +# Jarmo Kortetjärvi , 2016 +# LS Development , 2016 +# Matjaž Mozetič , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-12 14:34+0000\n" +"PO-Revision-Date: 2016-05-11 16:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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 +#: field:dead.mans.switch.client,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" diff --git a/dead_mans_switch_client/i18n/sl.po b/dead_mans_switch_client/i18n/sl.po new file mode 100644 index 000000000..c1599d6a6 --- /dev/null +++ b/dead_mans_switch_client/i18n/sl.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Ahmet Altınışık , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2015 +# FIRST AUTHOR , 2013-2014 +# Giacomo , 2015 +# Hotellook, 2014 +# Matjaž Mozetič , 2015-2016 +# Miku Laitinen , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-06 02:41+0000\n" +"PO-Revision-Date: 2016-05-05 05:57+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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 +#: field:dead.mans.switch.client,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" + +#. module: dead_mans_switch_client +#: field:dead.mans.switch.client,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" diff --git a/dead_mans_switch_client/i18n/tr.po b/dead_mans_switch_client/i18n/tr.po new file mode 100644 index 000000000..c71b06f9c --- /dev/null +++ b/dead_mans_switch_client/i18n/tr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +# Ahmet Altınışık , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 14:44+0000\n" +"PO-Revision-Date: 2016-01-31 14:58+0000\n" +"Last-Translator: Ahmet Altınışık \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: 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 +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" 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..c76803f1c --- /dev/null +++ b/dead_mans_switch_client/i18n/zh_CN.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * dead_mans_switch_client +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-14 07:02+0000\n" +"PO-Revision-Date: 2015-11-26 12:51+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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 +#: field:dead.mans.switch.client,id:0 +msgid "ID" +msgstr "ID" 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..ac158db82 --- /dev/null +++ b/dead_mans_switch_client/models/dead_mans_switch_client.py @@ -0,0 +1,101 @@ +# -*- coding: utf-8 -*- +# © 2015-2016 Therp BV +# © 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). +import json +import logging +import os +try: + import psutil +except ImportError: # pragma: no cover + psutil = None +import urllib2 +from openerp import api, models +from openerp.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) + urllib2.urlopen( + urllib2.Request( + url, + json.dumps({ + 'jsonrpc': '2.0', + 'method': 'call', + 'params': data, + }), + { + '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 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/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..e4d849f93 --- /dev/null +++ b/dead_mans_switch_client/tests/test_dead_mans_switch_client.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp.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() + 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() From 7987a7dc7588b84b23c604434f8eb52260925299 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 10 Jul 2016 14:13:37 -0400 Subject: [PATCH 02/11] OCA Transbot updated translations from Transifex --- dead_mans_switch_client/i18n/de.po | 29 +++++++++++++----- dead_mans_switch_client/i18n/en.po | 25 ++++++++------- dead_mans_switch_client/i18n/es.po | 31 +++++++++---------- dead_mans_switch_client/i18n/fi.po | 29 +++++++++--------- dead_mans_switch_client/i18n/fr.po | 30 +++++++++--------- dead_mans_switch_client/i18n/hr.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/hr_HR.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/it.po | 28 +++++++++++++---- dead_mans_switch_client/i18n/pt_BR.po | 31 +++++++++---------- dead_mans_switch_client/i18n/sl.po | 32 +++++++++---------- dead_mans_switch_client/i18n/tr.po | 29 +++++++++++++----- dead_mans_switch_client/i18n/zh_CN.po | 28 +++++++++++++---- 12 files changed, 260 insertions(+), 120 deletions(-) create mode 100644 dead_mans_switch_client/i18n/hr.po create mode 100644 dead_mans_switch_client/i18n/hr_HR.po diff --git a/dead_mans_switch_client/i18n/de.po b/dead_mans_switch_client/i18n/de.po index d2a21cacc..210589b78 100644 --- a/dead_mans_switch_client/i18n/de.po +++ b/dead_mans_switch_client/i18n/de.po @@ -3,15 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Rudolf Schnapka , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 14:44+0000\n" -"PO-Revision-Date: 2016-01-18 13:53+0000\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\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: 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" @@ -24,6 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "Konfigurieren Sie den 'dead man's switch -Server'" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,id:0 +#: 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/en.po b/dead_mans_switch_client/i18n/en.po index ab859a5cb..efe316fa7 100644 --- a/dead_mans_switch_client/i18n/en.po +++ b/dead_mans_switch_client/i18n/en.po @@ -2,20 +2,18 @@ # This file contains the translation of the following modules: # * dead_mans_switch_client # -# Translators: msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-06 02:41+0000\n" -"PO-Revision-Date: 2016-05-04 19:17+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en/)\n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-07-09 10:34+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: \n" #. module: dead_mans_switch_client #: model:ir.actions.act_window,name:dead_mans_switch_client.action_setup @@ -23,16 +21,21 @@ msgid "Configure the dead man's switch server" msgstr "Configure the dead man's switch server" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,display_name:0 +#: 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 -#: field:dead.mans.switch.client,id:0 +#: 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 -#: field:dead.mans.switch.client,__last_update:0 +#: 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 "dead.mans.switch.client" diff --git a/dead_mans_switch_client/i18n/es.po b/dead_mans_switch_client/i18n/es.po index 13a924a97..96ce6e906 100644 --- a/dead_mans_switch_client/i18n/es.po +++ b/dead_mans_switch_client/i18n/es.po @@ -3,23 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Carles Antoli , 2015 -# danimaribeiro , 2016 -# FIRST AUTHOR , 2012-2013 -# Hotellook, 2014 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2016 -# UAB "Draugiški sprendimai" , 2015 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-28 02:41+0000\n" -"PO-Revision-Date: 2016-05-27 15:24+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\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" @@ -32,16 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,display_name:0 +#: 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 -#: field:dead.mans.switch.client,id:0 +#: 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 -#: field:dead.mans.switch.client,__last_update:0 +#: 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/fi.po b/dead_mans_switch_client/i18n/fi.po index 1ae08481f..891a88eb9 100644 --- a/dead_mans_switch_client/i18n/fi.po +++ b/dead_mans_switch_client/i18n/fi.po @@ -3,21 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Antonio Trueba, 2016 -# FIRST AUTHOR , 2010,2012-2014 -# Hotellook, 2014 -# Jarmo Kortetjärvi , 2016 -# Matjaž Mozetič , 2015-2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-06 13:35+0000\n" -"Last-Translator: Jarmo Kortetjärvi \n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\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" @@ -30,16 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "Konfiguroi \"kuolleen miehen kytkin\"-palvelin" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,display_name:0 +#: 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 -#: field:dead.mans.switch.client,id:0 +#: 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 -#: field:dead.mans.switch.client,__last_update:0 +#: 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 index 87579f7db..d15f13ca2 100644 --- a/dead_mans_switch_client/i18n/fr.po +++ b/dead_mans_switch_client/i18n/fr.po @@ -3,22 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Ahmet Altınışık , 2015-2016 -# Antonio Trueba, 2016 -# Armando Vulcano Junior , 2015 -# Christophe CHAUVET , 2015 -# FIRST AUTHOR , 2013-2014 -# Matjaž Mozetič , 2016 -# Paolo Valier, 2016 -# Rudolf Schnapka , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-12 14:34+0000\n" -"PO-Revision-Date: 2016-05-08 15:26+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr/)\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" @@ -31,16 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,display_name:0 +#: 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 -#: field:dead.mans.switch.client,id:0 +#: 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 -#: field:dead.mans.switch.client,__last_update:0 +#: 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/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/it.po b/dead_mans_switch_client/i18n/it.po index 2e97daff5..64aabbc7a 100644 --- a/dead_mans_switch_client/i18n/it.po +++ b/dead_mans_switch_client/i18n/it.po @@ -3,14 +3,15 @@ # * dead_mans_switch_client # # Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-27 14:01+0000\n" -"PO-Revision-Date: 2015-11-26 12:51+0000\n" -"Last-Translator: <>\n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\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: 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" @@ -23,6 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,id:0 +#: 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/pt_BR.po b/dead_mans_switch_client/i18n/pt_BR.po index ec360a74a..4ee6bea85 100644 --- a/dead_mans_switch_client/i18n/pt_BR.po +++ b/dead_mans_switch_client/i18n/pt_BR.po @@ -3,23 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Ahmet Altınışık , 2016 -# Antonio Trueba, 2016 -# Christophe CHAUVET , 2015 -# FIRST AUTHOR , 2012 -# Hotellook, 2014 -# Isabelle RICHARD , 2015 -# Jarmo Kortetjärvi , 2016 -# LS Development , 2016 -# Matjaž Mozetič , 2015-2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-12 14:34+0000\n" -"PO-Revision-Date: 2016-05-11 16:42+0000\n" -"Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\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" @@ -32,16 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,display_name:0 +#: 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 -#: field:dead.mans.switch.client,id:0 +#: 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 -#: field:dead.mans.switch.client,__last_update:0 +#: 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/sl.po b/dead_mans_switch_client/i18n/sl.po index c1599d6a6..0cae173eb 100644 --- a/dead_mans_switch_client/i18n/sl.po +++ b/dead_mans_switch_client/i18n/sl.po @@ -3,24 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Ahmet Altınışık , 2016 -# Antonio Trueba, 2016 -# Carles Antoli , 2015 -# FIRST AUTHOR , 2013-2014 -# Giacomo , 2015 -# Hotellook, 2014 -# Matjaž Mozetič , 2015-2016 -# Miku Laitinen , 2015 -# Pedro M. Baeza , 2015 -# Rudolf Schnapka , 2015-2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-06 02:41+0000\n" -"PO-Revision-Date: 2016-05-05 05:57+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\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" @@ -33,16 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "Nastavitev strežnika varnostnega stikala" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,display_name:0 +#: 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 -#: field:dead.mans.switch.client,id:0 +#: 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 -#: field:dead.mans.switch.client,__last_update:0 +#: 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/tr.po b/dead_mans_switch_client/i18n/tr.po index c71b06f9c..b4ef3b420 100644 --- a/dead_mans_switch_client/i18n/tr.po +++ b/dead_mans_switch_client/i18n/tr.po @@ -3,15 +3,15 @@ # * dead_mans_switch_client # # Translators: -# Ahmet Altınışık , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 14:44+0000\n" -"PO-Revision-Date: 2016-01-31 14:58+0000\n" -"Last-Translator: Ahmet Altınışık \n" -"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\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: 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" @@ -24,6 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "Ölü adam tetiği sunucusunu ayarla" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,id:0 +#: 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 index c76803f1c..31672ba55 100644 --- a/dead_mans_switch_client/i18n/zh_CN.po +++ b/dead_mans_switch_client/i18n/zh_CN.po @@ -3,14 +3,15 @@ # * dead_mans_switch_client # # Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-14 07:02+0000\n" -"PO-Revision-Date: 2015-11-26 12:51+0000\n" -"Last-Translator: <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\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: 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" @@ -23,6 +24,21 @@ msgid "Configure the dead man's switch server" msgstr "" #. module: dead_mans_switch_client -#: field:dead.mans.switch.client,id:0 +#: 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 "" From 4b3304917d7d3bfbfa8c754e3495a0390433bb08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Mon, 15 Aug 2016 22:15:16 +0200 Subject: [PATCH 03/11] [FIX] remove en.po that was erroneously created by transbot --- dead_mans_switch_client/i18n/en.po | 41 ------------------------------ 1 file changed, 41 deletions(-) delete mode 100644 dead_mans_switch_client/i18n/en.po diff --git a/dead_mans_switch_client/i18n/en.po b/dead_mans_switch_client/i18n/en.po deleted file mode 100644 index efe316fa7..000000000 --- a/dead_mans_switch_client/i18n/en.po +++ /dev/null @@ -1,41 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * dead_mans_switch_client -# -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: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: 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 "Configure the 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 "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 "dead.mans.switch.client" From 0d584256d0b4009aa78d495383fb5363fc8a0c82 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 4 Sep 2016 03:54:57 -0400 Subject: [PATCH 04/11] OCA Transbot updated translations from Transifex --- dead_mans_switch_client/i18n/zh_CN.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dead_mans_switch_client/i18n/zh_CN.po b/dead_mans_switch_client/i18n/zh_CN.po index 31672ba55..87e79f6d4 100644 --- a/dead_mans_switch_client/i18n/zh_CN.po +++ b/dead_mans_switch_client/i18n/zh_CN.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# Jeffery Chenn , 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" +"POT-Creation-Date: 2016-08-31 11:58+0000\n" +"PO-Revision-Date: 2016-08-31 11:58+0000\n" +"Last-Translator: Jeffery Chenn , 2016\n" "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,17 +26,17 @@ 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 "" +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" +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 "" +msgstr "最后修改时间" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client From 0477f5d74a5ffef3ee4c144a6f753dff24e38bba Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 18 Sep 2016 05:08:12 -0400 Subject: [PATCH 05/11] OCA Transbot updated translations from Transifex --- dead_mans_switch_client/i18n/am.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/ca.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/de.po | 11 ++++--- dead_mans_switch_client/i18n/el_GR.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_ES.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/gl.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/nl.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/pt.po | 44 +++++++++++++++++++++++++++ dead_mans_switch_client/i18n/pt_PT.po | 44 +++++++++++++++++++++++++++ 9 files changed, 358 insertions(+), 5 deletions(-) create mode 100644 dead_mans_switch_client/i18n/am.po create mode 100644 dead_mans_switch_client/i18n/ca.po create mode 100644 dead_mans_switch_client/i18n/el_GR.po create mode 100644 dead_mans_switch_client/i18n/es_ES.po create mode 100644 dead_mans_switch_client/i18n/gl.po create mode 100644 dead_mans_switch_client/i18n/nl.po create mode 100644 dead_mans_switch_client/i18n/pt.po create mode 100644 dead_mans_switch_client/i18n/pt_PT.po 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/ca.po b/dead_mans_switch_client/i18n/ca.po new file mode 100644 index 000000000..1c28a6cc3 --- /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 , 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: 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 "" + +#. 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/de.po b/dead_mans_switch_client/i18n/de.po index 210589b78..da740ffe5 100644 --- a/dead_mans_switch_client/i18n/de.po +++ b/dead_mans_switch_client/i18n/de.po @@ -4,13 +4,14 @@ # # 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-07-09 10:34+0000\n" -"PO-Revision-Date: 2016-07-09 10:34+0000\n" -"Last-Translator: OCA Transbot , 2016\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" @@ -26,7 +27,7 @@ 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 "" +msgstr "Anzeigename" #. module: dead_mans_switch_client #: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id @@ -36,7 +37,7 @@ 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 "" +msgstr "Zuletzt geändert am" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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/es_ES.po b/dead_mans_switch_client/i18n/es_ES.po new file mode 100644 index 000000000..32a7971db --- /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 , 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: 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 "" + +#. 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/gl.po b/dead_mans_switch_client/i18n/gl.po new file mode 100644 index 000000000..27705cd5e --- /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 , 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: 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 "" + +#. 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..cdc24a559 --- /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 , 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: 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 "" + +#. 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/pt.po b/dead_mans_switch_client/i18n/pt.po new file mode 100644 index 000000000..03dd9e538 --- /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 , 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: 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 "" + +#. 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/pt_PT.po b/dead_mans_switch_client/i18n/pt_PT.po new file mode 100644 index 000000000..2e35a05f2 --- /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 , 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: 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 "" + +#. 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 "" From 7dc0b33777c4f04caf6b2c85e4972aab1e3aee07 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 16:08:19 +0200 Subject: [PATCH 06/11] [MIG] Make modules uninstallable --- dead_mans_switch_client/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dead_mans_switch_client/__openerp__.py b/dead_mans_switch_client/__openerp__.py index f939a92a4..3fd99f862 100644 --- a/dead_mans_switch_client/__openerp__.py +++ b/dead_mans_switch_client/__openerp__.py @@ -18,4 +18,5 @@ "demo": [ "demo/dead_mans_switch_client_demo.yml", ], + 'installable': False, } From 70e7100e9910486f8eea47dd5ec6d0da27d99591 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 16:08:27 +0200 Subject: [PATCH 07/11] [MIG] Rename manifest files --- dead_mans_switch_client/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename dead_mans_switch_client/{__openerp__.py => __manifest__.py} (100%) diff --git a/dead_mans_switch_client/__openerp__.py b/dead_mans_switch_client/__manifest__.py similarity index 100% rename from dead_mans_switch_client/__openerp__.py rename to dead_mans_switch_client/__manifest__.py From a805cde4eac8e7b048ed94f7d4012b9e466a693b Mon Sep 17 00:00:00 2001 From: Miku Laitinen Date: Thu, 16 Nov 2017 18:22:26 +0200 Subject: [PATCH 08/11] [MIG] dead_mans_switch_client: Migration to 10.0 --- dead_mans_switch_client/README.rst | 3 ++- dead_mans_switch_client/__manifest__.py | 9 ++++---- dead_mans_switch_client/data/ir_actions.xml | 22 +++++++++---------- dead_mans_switch_client/data/ir_cron.xml | 22 +++++++++---------- .../models/dead_mans_switch_client.py | 5 +++-- .../tests/test_dead_mans_switch_client.py | 3 ++- 6 files changed, 32 insertions(+), 32 deletions(-) diff --git a/dead_mans_switch_client/README.rst b/dead_mans_switch_client/README.rst index 4dcc8cc99..534b3bfde 100644 --- a/dead_mans_switch_client/README.rst +++ b/dead_mans_switch_client/README.rst @@ -30,7 +30,7 @@ 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/9.0 + :target: https://runbot.odoo-community.org/runbot/149/10.0 For further information, please visit: @@ -57,6 +57,7 @@ Contributors * Holger Brunn * Jairo Llopis +* Miku Laitinen Maintainer ---------- diff --git a/dead_mans_switch_client/__manifest__.py b/dead_mans_switch_client/__manifest__.py index 3fd99f862..bb9e3c6af 100644 --- a/dead_mans_switch_client/__manifest__.py +++ b/dead_mans_switch_client/__manifest__.py @@ -1,13 +1,14 @@ # -*- 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": "9.0.1.0.1", - "author": "Therp BV,Odoo Community Association (OCA)", + "version": "10.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", + "summary": "Be notified when customers' Odoo instances go down", "depends": [ 'base', ], @@ -18,5 +19,5 @@ "demo": [ "demo/dead_mans_switch_client_demo.yml", ], - 'installable': False, + 'installable': True, } diff --git a/dead_mans_switch_client/data/ir_actions.xml b/dead_mans_switch_client/data/ir_actions.xml index 5728882a5..017f44dc4 100644 --- a/dead_mans_switch_client/data/ir_actions.xml +++ b/dead_mans_switch_client/data/ir_actions.xml @@ -1,13 +1,11 @@ - - - - - Configure the dead man's switch server - automatic - - - - + + + + Configure the dead man's switch server + automatic + + + diff --git a/dead_mans_switch_client/data/ir_cron.xml b/dead_mans_switch_client/data/ir_cron.xml index fe786326d..7e04c2fb4 100644 --- a/dead_mans_switch_client/data/ir_cron.xml +++ b/dead_mans_switch_client/data/ir_cron.xml @@ -1,13 +1,11 @@ - - - - Dead man's switch client - 5 - minutes - -1 - dead.mans.switch.client - alive - - - + + + Dead man's switch client + 5 + minutes + -1 + dead.mans.switch.client + alive + + diff --git a/dead_mans_switch_client/models/dead_mans_switch_client.py b/dead_mans_switch_client/models/dead_mans_switch_client.py index ac158db82..9f11ac3dc 100644 --- a/dead_mans_switch_client/models/dead_mans_switch_client.py +++ b/dead_mans_switch_client/models/dead_mans_switch_client.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # © 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 @@ -10,8 +11,8 @@ try: except ImportError: # pragma: no cover psutil = None import urllib2 -from openerp import api, models -from openerp.tools.config import config +from odoo import api, models +from odoo.tools.config import config SEND_TIMEOUT = 60 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 index e4d849f93..29ffde587 100644 --- a/dead_mans_switch_client/tests/test_dead_mans_switch_client.py +++ b/dead_mans_switch_client/tests/test_dead_mans_switch_client.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- # © 2015 Therp BV +# © 2017 Avoin.Systems - Miku Laitinen # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp.tests.common import TransactionCase +from odoo.tests.common import TransactionCase class TestDeadMansSwitchClient(TransactionCase): From 69b175105c37477c0e50e5aeba27587bc37c3617 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 11 Dec 2017 12:11:11 +0100 Subject: [PATCH 09/11] [FIX] squelch expected error log --- .../tests/test_dead_mans_switch_client.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 index 29ffde587..dffa49a3b 100644 --- a/dead_mans_switch_client/tests/test_dead_mans_switch_client.py +++ b/dead_mans_switch_client/tests/test_dead_mans_switch_client.py @@ -2,6 +2,7 @@ # © 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 @@ -10,7 +11,11 @@ class TestDeadMansSwitchClient(TransactionCase): # test unconfigured case self.env['ir.config_parameter'].search([ ('key', '=', 'dead_mans_switch_client.url')]).unlink() - self.env['dead.mans.switch.client'].alive() + 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') From 48ca3dda4f2f8ce5592de0c721843245724b10e0 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 30 Dec 2017 12:35:55 +0100 Subject: [PATCH 10/11] OCA Transbot updated translations from Transifex --- dead_mans_switch_client/i18n/ar.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/bg.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/bs.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/ca.po | 14 ++++---- dead_mans_switch_client/i18n/cs.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/da.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/en_GB.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_AR.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_CL.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_CO.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_CR.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_DO.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_EC.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_ES.po | 14 ++++---- dead_mans_switch_client/i18n/es_MX.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_PE.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_PY.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/es_VE.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/et.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/eu.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/fa.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/fr_CA.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/fr_CH.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/gl.po | 12 +++---- dead_mans_switch_client/i18n/gl_ES.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/he.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/hu.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/id.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/it.po | 14 ++++---- dead_mans_switch_client/i18n/ja.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/ko.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/lt.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/lt_LT.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/lv.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/mk.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/mn.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/nb.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/nb_NO.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/nl.po | 12 +++---- dead_mans_switch_client/i18n/nl_BE.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/nl_NL.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/pl.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/pt.po | 14 ++++---- dead_mans_switch_client/i18n/pt_PT.po | 14 ++++---- dead_mans_switch_client/i18n/ro.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/ru.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/sk.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/sr.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/sr@latin.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/sv.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/th.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/tr.po | 14 ++++---- dead_mans_switch_client/i18n/tr_TR.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/uk.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/vi.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/vi_VN.po | 44 ++++++++++++++++++++++++ dead_mans_switch_client/i18n/zh_CN.po | 12 +++---- dead_mans_switch_client/i18n/zh_TW.po | 44 ++++++++++++++++++++++++ 58 files changed, 2216 insertions(+), 60 deletions(-) create mode 100644 dead_mans_switch_client/i18n/ar.po create mode 100644 dead_mans_switch_client/i18n/bg.po create mode 100644 dead_mans_switch_client/i18n/bs.po create mode 100644 dead_mans_switch_client/i18n/cs.po create mode 100644 dead_mans_switch_client/i18n/da.po create mode 100644 dead_mans_switch_client/i18n/en_GB.po create mode 100644 dead_mans_switch_client/i18n/es_AR.po create mode 100644 dead_mans_switch_client/i18n/es_CL.po create mode 100644 dead_mans_switch_client/i18n/es_CO.po create mode 100644 dead_mans_switch_client/i18n/es_CR.po create mode 100644 dead_mans_switch_client/i18n/es_DO.po create mode 100644 dead_mans_switch_client/i18n/es_EC.po create mode 100644 dead_mans_switch_client/i18n/es_MX.po create mode 100644 dead_mans_switch_client/i18n/es_PE.po create mode 100644 dead_mans_switch_client/i18n/es_PY.po create mode 100644 dead_mans_switch_client/i18n/es_VE.po create mode 100644 dead_mans_switch_client/i18n/et.po create mode 100644 dead_mans_switch_client/i18n/eu.po create mode 100644 dead_mans_switch_client/i18n/fa.po create mode 100644 dead_mans_switch_client/i18n/fr_CA.po create mode 100644 dead_mans_switch_client/i18n/fr_CH.po create mode 100644 dead_mans_switch_client/i18n/gl_ES.po create mode 100644 dead_mans_switch_client/i18n/he.po create mode 100644 dead_mans_switch_client/i18n/hu.po create mode 100644 dead_mans_switch_client/i18n/id.po create mode 100644 dead_mans_switch_client/i18n/ja.po create mode 100644 dead_mans_switch_client/i18n/ko.po create mode 100644 dead_mans_switch_client/i18n/lt.po create mode 100644 dead_mans_switch_client/i18n/lt_LT.po create mode 100644 dead_mans_switch_client/i18n/lv.po create mode 100644 dead_mans_switch_client/i18n/mk.po create mode 100644 dead_mans_switch_client/i18n/mn.po create mode 100644 dead_mans_switch_client/i18n/nb.po create mode 100644 dead_mans_switch_client/i18n/nb_NO.po create mode 100644 dead_mans_switch_client/i18n/nl_BE.po create mode 100644 dead_mans_switch_client/i18n/nl_NL.po create mode 100644 dead_mans_switch_client/i18n/pl.po create mode 100644 dead_mans_switch_client/i18n/ro.po create mode 100644 dead_mans_switch_client/i18n/ru.po create mode 100644 dead_mans_switch_client/i18n/sk.po create mode 100644 dead_mans_switch_client/i18n/sr.po create mode 100644 dead_mans_switch_client/i18n/sr@latin.po create mode 100644 dead_mans_switch_client/i18n/sv.po create mode 100644 dead_mans_switch_client/i18n/th.po create mode 100644 dead_mans_switch_client/i18n/tr_TR.po create mode 100644 dead_mans_switch_client/i18n/uk.po create mode 100644 dead_mans_switch_client/i18n/vi.po create mode 100644 dead_mans_switch_client/i18n/vi_VN.po create mode 100644 dead_mans_switch_client/i18n/zh_TW.po 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 index 1c28a6cc3..67e779070 100644 --- a/dead_mans_switch_client/i18n/ca.po +++ b/dead_mans_switch_client/i18n/ca.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -26,7 +26,7 @@ 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 "" +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 @@ -36,7 +36,7 @@ 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 "" +msgstr "Darrera modificació el" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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/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_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 index 32a7971db..285e0cd5a 100644 --- a/dead_mans_switch_client/i18n/es_ES.po +++ b/dead_mans_switch_client/i18n/es_ES.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -26,7 +26,7 @@ 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 "" +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 @@ -36,7 +36,7 @@ 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 "" +msgstr "Última modificación en" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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/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 index 27705cd5e..1888d0ea4 100644 --- a/dead_mans_switch_client/i18n/gl.po +++ b/dead_mans_switch_client/i18n/gl.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -36,7 +36,7 @@ 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 "" +msgstr "Última modificación" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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/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 index 64aabbc7a..017eb5781 100644 --- a/dead_mans_switch_client/i18n/it.po +++ b/dead_mans_switch_client/i18n/it.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -26,7 +26,7 @@ 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 "" +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 @@ -36,7 +36,7 @@ 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 "" +msgstr "Ultima modifica il" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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 index cdc24a559..757e388bb 100644 --- a/dead_mans_switch_client/i18n/nl.po +++ b/dead_mans_switch_client/i18n/nl.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -31,7 +31,7 @@ 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 "" +msgstr "ID" #. module: dead_mans_switch_client #: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update 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 index 03dd9e538..385712c09 100644 --- a/dead_mans_switch_client/i18n/pt.po +++ b/dead_mans_switch_client/i18n/pt.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -26,7 +26,7 @@ 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 "" +msgstr "Nome" #. module: dead_mans_switch_client #: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client_id @@ -36,7 +36,7 @@ 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 "" +msgstr "Última Modificação Em" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client diff --git a/dead_mans_switch_client/i18n/pt_PT.po b/dead_mans_switch_client/i18n/pt_PT.po index 2e35a05f2..8996a91a3 100644 --- a/dead_mans_switch_client/i18n/pt_PT.po +++ b/dead_mans_switch_client/i18n/pt_PT.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -26,7 +26,7 @@ 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 "" +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 @@ -36,7 +36,7 @@ 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 "" +msgstr "Última Modificação Em" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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/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 index b4ef3b420..e3da4bdab 100644 --- a/dead_mans_switch_client/i18n/tr.po +++ b/dead_mans_switch_client/i18n/tr.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"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" @@ -26,7 +26,7 @@ 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 "" +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 @@ -36,7 +36,7 @@ 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 "" +msgstr "Son değişiklik" #. module: dead_mans_switch_client #: model:ir.model,name:dead_mans_switch_client.model_dead_mans_switch_client 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 index 87e79f6d4..8eb6b289c 100644 --- a/dead_mans_switch_client/i18n/zh_CN.po +++ b/dead_mans_switch_client/i18n/zh_CN.po @@ -3,14 +3,14 @@ # * dead_mans_switch_client # # Translators: -# Jeffery Chenn , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-31 11:58+0000\n" -"PO-Revision-Date: 2016-08-31 11:58+0000\n" -"Last-Translator: Jeffery Chenn , 2016\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" @@ -31,7 +31,7 @@ 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 "" +msgstr "ID" #. module: dead_mans_switch_client #: model:ir.model.fields,field_description:dead_mans_switch_client.field_dead_mans_switch_client___last_update 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 "" From a748e4a9cc36795bf215c6da27405b19d0345167 Mon Sep 17 00:00:00 2001 From: Atte Isopuro Date: Tue, 5 Jun 2018 13:57:04 +0300 Subject: [PATCH 11/11] [11.0][MIG] Migrate dead_mans_switch_client to 11.0 - Model ir.cron has changed slightly - urllib2 no longer exists in Python 3 - Strings given to urllib.requests.Request must be encoded as bytes --- dead_mans_switch_client/__init__.py | 1 - dead_mans_switch_client/__manifest__.py | 2 +- dead_mans_switch_client/data/ir_actions.xml | 1 - dead_mans_switch_client/data/ir_cron.xml | 5 +++-- .../models/dead_mans_switch_client.py | 15 +++++++-------- .../tests/test_dead_mans_switch_client.py | 1 - 6 files changed, 11 insertions(+), 14 deletions(-) diff --git a/dead_mans_switch_client/__init__.py b/dead_mans_switch_client/__init__.py index 915f58d4d..8b959ae65 100644 --- a/dead_mans_switch_client/__init__.py +++ b/dead_mans_switch_client/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 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 index bb9e3c6af..c87605b44 100644 --- a/dead_mans_switch_client/__manifest__.py +++ b/dead_mans_switch_client/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Dead man's switch (client)", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", "author": "Therp BV, Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Monitoring", diff --git a/dead_mans_switch_client/data/ir_actions.xml b/dead_mans_switch_client/data/ir_actions.xml index 017f44dc4..952c79a4d 100644 --- a/dead_mans_switch_client/data/ir_actions.xml +++ b/dead_mans_switch_client/data/ir_actions.xml @@ -5,7 +5,6 @@ context="{'default_key': 'dead_mans_switch_client.url'}"/> Configure the dead man's switch server - automatic diff --git a/dead_mans_switch_client/data/ir_cron.xml b/dead_mans_switch_client/data/ir_cron.xml index 7e04c2fb4..94f01eb28 100644 --- a/dead_mans_switch_client/data/ir_cron.xml +++ b/dead_mans_switch_client/data/ir_cron.xml @@ -5,7 +5,8 @@ 5 minutes -1 - dead.mans.switch.client - alive + + code + model.alive() diff --git a/dead_mans_switch_client/models/dead_mans_switch_client.py b/dead_mans_switch_client/models/dead_mans_switch_client.py index 9f11ac3dc..712357c53 100644 --- a/dead_mans_switch_client/models/dead_mans_switch_client.py +++ b/dead_mans_switch_client/models/dead_mans_switch_client.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2015-2016 Therp BV # © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis # © 2017 Avoin.Systems - Miku Laitinen @@ -10,7 +9,7 @@ try: import psutil except ImportError: # pragma: no cover psutil = None -import urllib2 +import urllib from odoo import api, models from odoo.tools.config import config @@ -72,15 +71,15 @@ class DeadMansSwitchClient(models.AbstractModel): 'dead_mans_switch_client.send_timeout', SEND_TIMEOUT) data = self._get_data() logger.debug('sending %s', data) - urllib2.urlopen( - urllib2.Request( - url, - json.dumps({ + 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) 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 index dffa49a3b..365aefd90 100644 --- a/dead_mans_switch_client/tests/test_dead_mans_switch_client.py +++ b/dead_mans_switch_client/tests/test_dead_mans_switch_client.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2015 Therp BV # © 2017 Avoin.Systems - Miku Laitinen # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).