-
-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] auth_user_case_insensitive: Migration to 15.0
- Loading branch information
Showing
9 changed files
with
67 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * auth_user_case_insensitive | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 15.0+e\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2022-04-07 08:58+0000\n" | ||
"PO-Revision-Date: 2022-04-07 08:58+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: auth_user_case_insensitive | ||
#: code:addons/auth_user_case_insensitive/hooks.py:0 | ||
#, python-format | ||
msgid "Conflicting user logins exist for `%s`" | ||
msgstr "Vartotojams `%s` egzistuoja konfliktuojantys prisijungimai" | ||
|
||
#. module: auth_user_case_insensitive | ||
#: model:ir.model.fields,field_description:auth_user_case_insensitive.field_res_users__login | ||
msgid "Login" | ||
msgstr "Prisijungimas" | ||
|
||
#. module: auth_user_case_insensitive | ||
#: model:ir.model.fields,help:auth_user_case_insensitive.field_res_users__login | ||
msgid "Used to log into the system. Case insensitive." | ||
msgstr "Naudojamas prisijungti į sistemą. Nereikšminga ar vesite didžiosiomis ar mažosiomis raidėmis." | ||
|
||
#. module: auth_user_case_insensitive | ||
#: model:ir.model,name:auth_user_case_insensitive.model_res_users | ||
msgid "Users" | ||
msgstr "Vartotojai" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
setup/auth_user_case_insensitive/odoo/addons/auth_user_case_insensitive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../auth_user_case_insensitive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |
6a01560
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @Herqs
I was checking this PR , even being closed I checked one thing in the res_users.py
The method def _login should include the parameter user_agent_env that was included in the method for the version 15, and I do not see in this PR.