Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ include CHANGELOG.md
include SECURITY.md
include CONTRIBUTING.md
recursive-include docs *.md
recursive-include src/oxutils/locale *.po *.mo
recursive-include src/oxutils *.po *.mo
recursive-include src/oxutils *.html
recursive-include src/oxutils *.txt
recursive-include src/oxutils *.json
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude * .DS_Store
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "oxutils"
version = "0.1.17"
version = "0.1.18"
description = "Production-ready utilities for Django applications in the Oxiliere ecosystem"
readme = "README.md"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/oxutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- Permission management
"""

__version__ = "0.1.17"
__version__ = "0.1.18"

from oxutils.settings import oxi_settings
from oxutils.conf import UTILS_APPS, AUDIT_MIDDLEWARE
Expand Down
34 changes: 34 additions & 0 deletions src/oxutils/audit/locale/fr/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-02-16 23:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: apps.py:9
msgid "Oxutils Audit"
msgstr "Oxutils Audit"

#: models.py:20 models.py:36
msgid "Failed"
msgstr "Échoué"

#: models.py:21 models.py:37
msgid "Pending"
msgstr "En attente"

#: models.py:22 models.py:38
msgid "Success"
msgstr "Réussi"
Loading
Loading