Browse Source

[FIX] auth_session_timeout: References to old name

pull/546/head
Pedro M. Baeza 8 years ago
parent
commit
fe2337c44a
  1. 4
      auth_session_timeout/README.rst
  2. 8
      auth_session_timeout/i18n/de.po
  3. 8
      auth_session_timeout/i18n/es.po
  4. 8
      auth_session_timeout/i18n/fr.po
  5. 8
      auth_session_timeout/i18n/pt_BR.po
  6. 8
      auth_session_timeout/i18n/sl.po
  7. 2
      auth_session_timeout/tests/test_ir_config_parameter.py

4
auth_session_timeout/README.rst

@ -14,7 +14,7 @@ Configuration
Two system parameters are available:
* inactive_session_time_out_delay: validity of a session in seconds (default = 2 Hours)
* inactive_session_time_out_ignored_url: technical urls where the check does not occur
* inactive_session_time_out_ignored_url: technical urls where the check does not occur
Bug Tracker
===========
@ -22,7 +22,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/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 <https://github.com/OCA/server-tools/issues/new?body=module:%20inactive_session_timeout%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`here <https://github.com/OCA/server-tools/issues/new?body=module:%20auth_session_timeout%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Credits
=======

8
auth_session_timeout/i18n/de.po

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * inactive_session_timeout
#
# * auth_session_timeout
#
# Translators:
msgid ""
msgstr ""
@ -17,7 +17,7 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: inactive_session_timeout
#: model:ir.model,name:inactive_session_timeout.model_res_users
#. module: auth_session_timeout
#: model:ir.model,name:auth_session_timeout.model_res_users
msgid "Users"
msgstr "Benutzer"

8
auth_session_timeout/i18n/es.po

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * inactive_session_timeout
#
# * auth_session_timeout
#
# Translators:
msgid ""
msgstr ""
@ -17,7 +17,7 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: inactive_session_timeout
#: model:ir.model,name:inactive_session_timeout.model_res_users
#. module: auth_session_timeout
#: model:ir.model,name:auth_session_timeout.model_res_users
msgid "Users"
msgstr "Usuarios"

8
auth_session_timeout/i18n/fr.po

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * inactive_session_timeout
#
# * auth_session_timeout
#
# Translators:
msgid ""
msgstr ""
@ -17,7 +17,7 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: inactive_session_timeout
#: model:ir.model,name:inactive_session_timeout.model_res_users
#. module: auth_session_timeout
#: model:ir.model,name:auth_session_timeout.model_res_users
msgid "Users"
msgstr "Utilisateurs"

8
auth_session_timeout/i18n/pt_BR.po

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * inactive_session_timeout
#
# * auth_session_timeout
#
# Translators:
msgid ""
msgstr ""
@ -17,7 +17,7 @@ msgstr ""
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: inactive_session_timeout
#: model:ir.model,name:inactive_session_timeout.model_res_users
#. module: auth_session_timeout
#: model:ir.model,name:auth_session_timeout.model_res_users
msgid "Users"
msgstr "Usuários"

8
auth_session_timeout/i18n/sl.po

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * inactive_session_timeout
#
# * auth_session_timeout
#
# Translators:
msgid ""
msgstr ""
@ -17,7 +17,7 @@ msgstr ""
"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: inactive_session_timeout
#: model:ir.model,name:inactive_session_timeout.model_res_users
#. module: auth_session_timeout
#: model:ir.model,name:auth_session_timeout.model_res_users
msgid "Users"
msgstr "Uporabniki"

2
auth_session_timeout/tests/test_ir_config_parameter.py

@ -19,7 +19,7 @@ class TestIrConfigParameter(common.TransactionCase):
self.param_obj = self.env['ir.config_parameter']
self.data_obj = self.env['ir.model.data']
self.delay = self.env.ref(
'inactive_session_timeout.inactive_session_time_out_delay')
'auth_session_timeout.inactive_session_time_out_delay')
def test_check_delay(self):
delay, urls = self.param_obj.get_session_parameters(self.db)

Loading…
Cancel
Save