From 2caecfe4a4b343cb90e0ce14957b5ee70d6e12e5 Mon Sep 17 00:00:00 2001 From: Stepan Date: Mon, 30 Jun 2025 21:57:10 +0200 Subject: [PATCH] Fixed eng mistakes 2 --- apps/Ajax/ajax-actions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Ajax/ajax-actions.php b/apps/Ajax/ajax-actions.php index 3834500..753fc06 100644 --- a/apps/Ajax/ajax-actions.php +++ b/apps/Ajax/ajax-actions.php @@ -174,7 +174,7 @@ function ajax_favorites() return $result; } else { - return get_ajax_error("This recipe in your favorite list is not exists", 400); + return get_ajax_error("This recipe from your favorites list does not exist.", 400); } } @@ -185,6 +185,6 @@ function ajax_favorites() $favorite->field_recipe_id = $recipe_id; $favorite->save(); - $result['success'] = 'You have successfully added recipe in your favorite list'; + $result['success'] = 'You have successfully added the recipe to your favorites list'; return $result; } \ No newline at end of file