mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-21 16:31:21 -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
1.0 KiB
JSON
23 lines
1.0 KiB
JSON
{
|
||
"generic": {
|
||
"server-error": "Сталася неочікувана помилка"
|
||
},
|
||
"recipe": {
|
||
"unique-name-error": "Назва рецепту повинна бути унікальною"
|
||
},
|
||
"exceptions": {
|
||
"permission_denied": "У вас немає дозволу на виконання цієї дії",
|
||
"no-entry-found": "Ресурс не знайдено",
|
||
"integrity-error": "Помилка цілісності бази даних",
|
||
"username-conflict-error": "Це ім'я користувача вже використовується",
|
||
"email-conflict-error": "Ця електронна адреса вже використовується"
|
||
},
|
||
"notifications": {
|
||
"generic-created": "{name} створено",
|
||
"generic-updated": "{name} оновлено",
|
||
"generic-created-with-url": "{name} створено, {url}",
|
||
"generic-updated-with-url": "{name} оновлено, {url}",
|
||
"generic-deleted": "{name} видалено"
|
||
}
|
||
}
|