Skip to content

Commit

Permalink
auth_session_timeout: References to old name
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrobaeza authored and bosd committed Jun 6, 2023
1 parent 15580fe commit 7d965de
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions auth_session_timeout/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ 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
===========

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
=======
Expand Down
8 changes: 4 additions & 4 deletions auth_session_timeout/i18n/de.po
Original file line number Diff line number Diff line change
@@ -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 ""
Expand All @@ -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 changes: 4 additions & 4 deletions auth_session_timeout/i18n/es.po
Original file line number Diff line number Diff line change
@@ -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 ""
Expand All @@ -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 changes: 4 additions & 4 deletions auth_session_timeout/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -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 ""
Expand All @@ -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 changes: 4 additions & 4 deletions auth_session_timeout/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -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 ""
Expand All @@ -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 changes: 4 additions & 4 deletions auth_session_timeout/i18n/sl.po
Original file line number Diff line number Diff line change
@@ -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 ""
Expand All @@ -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 changes: 1 addition & 1 deletion auth_session_timeout/tests/test_ir_config_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def setUp(self):
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)
Expand Down

0 comments on commit 7d965de

Please sign in to comment.