♻️(backend) remove internationalization from non-user-facing strings

Remove translation markers from backend strings that are never displayed to
users. Streamlines localization process by focusing only on user-visible
content that requires actual translation.
This commit is contained in:
lebaudantoine
2025-05-13 15:49:35 +02:00
committed by aleb_the_flash
parent 952104fd82
commit ae4ef48d05
6 changed files with 9 additions and 89 deletions
+1 -1
View File
@@ -93,6 +93,6 @@ class OIDCAuthenticationBackend(LaSuiteOIDCAuthenticationBackend):
pass
except User.MultipleObjectsReturned as e:
raise SuspiciousOperation(
_("Multiple user accounts share a common email.")
"Multiple user accounts share a common email."
) from e
return None