Skip to content

Commit

Permalink
v9.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Nov 27, 2023
1 parent dd171e4 commit abfcc84
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

**9.3.0** (2023-11-21)
**9.3.1** (2023-11-27)
* Fixed wrong path in validator documentation
* Added missing German translation

**9.3.0** (2023-11-24)
* Added auth password validator for special chars `SpecialCharValidator`

**9.2.1** (2023-11-21)
Expand Down
2 changes: 1 addition & 1 deletion ambient_toolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets."""

__version__ = "9.3.0"
__version__ = "9.3.1"
Binary file modified ambient_toolbox/locale/de/LC_MESSAGES/django.mo
Binary file not shown.
19 changes: 13 additions & 6 deletions ambient_toolbox/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-03 16:03+0200\n"
"POT-Creation-Date: 2023-11-27 09:55+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand All @@ -35,27 +35,34 @@ msgstr "Ambient toolbox"
msgid "Created at"
msgstr "Erstellt am"

#: .\ambient_toolbox\models.py:28
#: .\ambient_toolbox\models.py:34
msgid "Created by"
msgstr "Erstellt von"

#: .\ambient_toolbox\models.py:34
#: .\ambient_toolbox\models.py:40
msgid "Last modified at"
msgstr "Zuletzt geändert am"

#: .\ambient_toolbox\models.py:37
#: .\ambient_toolbox\models.py:43
msgid "Last modified by"
msgstr "Zuletzt geändert von"

#: .\ambient_toolbox\tests\mixins.py:94
#: .\ambient_toolbox\tests\mixins.py:95
msgid "Please pass a user object to RequestProviderMixin."
msgstr "Bitte ein User-Objekt an RequestProviderMixin übergeben."

#: .\ambient_toolbox\utils\date.py:74
msgid "Seconds must be positive."
msgstr "Sekunden müssen eine positive Zahl sein."

#: .\ambient_toolbox\view_layer\mixins.py:20
#: .\ambient_toolbox\validators\auth_password\special_chars.py:15
#: .\ambient_toolbox\validators\auth_password\special_chars.py:20
msgid ""
"The password has to contain one of the following special characters: \"@#$%!"
"^&*\""
msgstr "Das Passwort muss eines der folgenden Sonderzeichen enthalten: \"@#$%!^&*\""

#: .\ambient_toolbox\view_layer\mixins.py:21
msgid ""
"Class-based view using DjangoPermissionRequiredMixin without defining a "
"permission list."
Expand Down
2 changes: 1 addition & 1 deletion docs/features/validators.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ password: `@#$%!^&*`.
AUTH_PASSWORD_VALIDATORS = [
...
{
"NAME": "ambient_toolbox.validators.auth_password.SpecialCharValidator",
"NAME": "ambient_toolbox.validators.auth_password.special_chars.SpecialCharValidator",
},
]

Expand Down

0 comments on commit abfcc84

Please sign in to comment.