diff --git a/auth_session_timeout/README.rst b/auth_session_timeout/README.rst index 4c9249886..63325502c 100644 --- a/auth_session_timeout/README.rst +++ b/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 `_. 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 `_. +`here `_. Credits ======= diff --git a/auth_session_timeout/i18n/de.po b/auth_session_timeout/i18n/de.po index 96a29cd4e..e5e60a5e2 100644 --- a/auth_session_timeout/i18n/de.po +++ b/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" diff --git a/auth_session_timeout/i18n/es.po b/auth_session_timeout/i18n/es.po index 6cfd75913..072817354 100644 --- a/auth_session_timeout/i18n/es.po +++ b/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" diff --git a/auth_session_timeout/i18n/fr.po b/auth_session_timeout/i18n/fr.po index c621d0311..2f129e4e6 100644 --- a/auth_session_timeout/i18n/fr.po +++ b/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" diff --git a/auth_session_timeout/i18n/pt_BR.po b/auth_session_timeout/i18n/pt_BR.po index c46150de3..14d4f29b2 100644 --- a/auth_session_timeout/i18n/pt_BR.po +++ b/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" diff --git a/auth_session_timeout/i18n/sl.po b/auth_session_timeout/i18n/sl.po index 75dd36066..84ff30b4a 100644 --- a/auth_session_timeout/i18n/sl.po +++ b/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" diff --git a/auth_session_timeout/tests/test_ir_config_parameter.py b/auth_session_timeout/tests/test_ir_config_parameter.py index f2aa42152..6a7249f8e 100644 --- a/auth_session_timeout/tests/test_ir_config_parameter.py +++ b/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)