From 9795b4c553f07e75f9577f14b736f93318f8ae32 Mon Sep 17 00:00:00 2001 From: Olly Welch <56311963+ollywelch@users.noreply.github.com> Date: Fri, 28 Jun 2024 10:37:21 +0100 Subject: [PATCH] feat: check all in shopping list view (#3786) Co-authored-by: Olly Welch --- frontend/lang/messages/en-US.json | 5 +- frontend/pages/shopping-lists/_id.vue | 67 +++++++++++++++++++++++++-- 2 files changed, 68 insertions(+), 4 deletions(-) diff --git a/frontend/lang/messages/en-US.json b/frontend/lang/messages/en-US.json index 571d932a7005..a9f949e5b319 100644 --- a/frontend/lang/messages/en-US.json +++ b/frontend/lang/messages/en-US.json @@ -809,7 +809,10 @@ "linked-recipes-count": "No Linked Recipes|One Linked Recipe|{count} Linked Recipes", "items-checked-count": "No items checked|One item checked|{count} items checked", "no-label": "No Label", - "completed-on": "Completed on {date}" + "completed-on": "Completed on {date}", + "are-you-sure-you-want-to-check-all-items": "Are you sure you want to check all items?", + "are-you-sure-you-want-to-uncheck-all-items": "Are you sure you want to uncheck all items?", + "are-you-sure-you-want-to-delete-checked-items": "Are you sure you want to delete all checked items?" }, "sidebar": { "all-recipes": "All Recipes", diff --git a/frontend/pages/shopping-lists/_id.vue b/frontend/pages/shopping-lists/_id.vue index 9c317a295db8..5c04e4cead7b 100644 --- a/frontend/pages/shopping-lists/_id.vue +++ b/frontend/pages/shopping-lists/_id.vue @@ -1,5 +1,17 @@