diff --git a/materialious/src/lib/components/settings/Filters.svelte b/materialious/src/lib/components/settings/Filters.svelte
index a432adba..e1b52411 100644
--- a/materialious/src/lib/components/settings/Filters.svelte
+++ b/materialious/src/lib/components/settings/Filters.svelte
@@ -208,6 +208,20 @@
+
+ {
+ condition.note = event.currentTarget.value;
+ filterContentListStore.set(contentFilters);
+ filterContentUrlAutoUpdateStore.set(false);
+ }}
+ name="note"
+ type="text"
+ value={condition.note}
+ />
+
+
+
{
$filterContentListStore?.push({
type: 'video',
- conditions: [{ field: 'videoId', operator: 'equals', values: [video.videoId] }]
+ conditions: [
+ {
+ field: 'videoId',
+ operator: 'equals',
+ values: [video.videoId],
+ note: $_('layout.filter.videoFiltered', {
+ videoTitle: video.title,
+ authorName: video.author
+ })
+ }
+ ]
});
filterContentListStore.set($filterContentListStore);
filterContentUrlAutoUpdateStore.set(false);
diff --git a/materialious/src/lib/i18n/locales/en.json b/materialious/src/lib/i18n/locales/en.json
index eee97e0d..686dfe62 100644
--- a/materialious/src/lib/i18n/locales/en.json
+++ b/materialious/src/lib/i18n/locales/en.json
@@ -274,7 +274,9 @@
"optionPlaceholder": "Select your option",
"value": "Value",
"addConditional": "Add conditional",
- "addFilter": "Add filter"
+ "addFilter": "Add filter",
+ "videoFiltered": "\"{{videoTitle}}\" from \"{{authorName}}\" filtered",
+ "channelFiltered": "\"{{authorName}}\" filtered"
},
"export": {
"title": "Export/Import",