Files
mealie/mealie/lang/messages/fr-CA.json
Michael Genson 754e77c9cb feat: extend Apprise JSON notification functionality with programmatic data (#1355)
* 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)
2022-06-15 11:49:42 -08:00

23 lines
916 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"generic": {
"server-error": "Une erreur inattendue sest 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"
}
}