mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-10 19:11:25 -05:00
* Fixed incorrect generic deleted notification text * Added custom "event_source" header for json notifs * Added internal reference data to event notifs * Added event listeners to shopping list items * Fixed type issues * moved JSON event source k:v pairs to message body * added hook for all supported custom endpoints fixed bug that excluded non-custom notification types * created event_source class to replace loosely-typed dict * fixed silent error when dispatching a null task * moved url updates to static function * added unit tests for event_source url manipulation * removed array from event bus (it's unsupported)
23 lines
916 B
JSON
23 lines
916 B
JSON
{
|
||
"generic": {
|
||
"server-error": "Une erreur inattendue s’est produite"
|
||
},
|
||
"recipe": {
|
||
"unique-name-error": "Les noms de recette doivent être uniques"
|
||
},
|
||
"exceptions": {
|
||
"permission_denied": "Vous n'avez pas la permission d'effectuer cette action",
|
||
"no-entry-found": "La ressource demandée est introuvable",
|
||
"integrity-error": "Erreur d'intégrité de la base de données",
|
||
"username-conflict-error": "Ce nom d'utilisateur est déjà pris",
|
||
"email-conflict-error": "Cette adresse e-mail est déjà utilisée"
|
||
},
|
||
"notifications": {
|
||
"generic-created": "{name} was created",
|
||
"generic-updated": "{name} was updated",
|
||
"generic-created-with-url": "{name} has been created, {url}",
|
||
"generic-updated-with-url": "{name} has been updated, {url}",
|
||
"generic-deleted": "{name} has been deleted"
|
||
}
|
||
}
|