From 95bab887d13a86169cf79eb01c687b17063bd9d7 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 22 Nov 2022 09:54:54 +0300 Subject: [PATCH] Update SearchSyntaxPopup.svelte --- src/components/SearchSyntaxPopup.svelte | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/components/SearchSyntaxPopup.svelte b/src/components/SearchSyntaxPopup.svelte index 958aec069..2bd8bba44 100644 --- a/src/components/SearchSyntaxPopup.svelte +++ b/src/components/SearchSyntaxPopup.svelte @@ -16,11 +16,20 @@ query: 'alt_names:חינוכית', result: 'Finds channels whose alternative name contains "חינוכית".' }, - { query: 'categories:news', result: 'Finds all the news channels.' }, - { query: 'languages:fra', result: 'Find channels that are broadcast in French.' }, - { query: 'city:"San Francisco"', result: 'Finds all channels broadcast from San Francisco.' }, { query: 'network:ABC', result: 'Finds all channels operated by the ABC Network.' }, + { + query: 'owners:^$', + result: 'Finds channels that have no owner listed.' + }, + { query: 'country:GY', result: 'Finds all channels that are broadcast from Guyana.' }, + { + query: 'subdivision:FR-OCC', + result: 'Finds all channels that are broadcast from the French region of Occitanie.' + }, + { query: 'city:"San Francisco"', result: 'Finds all channels broadcast from San Francisco.' }, { query: 'broadcast_area:c/CV', result: 'Finds channels that are broadcast in Cape Verde.' }, + { query: 'languages:fra', result: 'Find channels that are broadcast in French.' }, + { query: 'categories:news', result: 'Finds all the news channels.' }, { query: 'is_nsfw:true', result: 'Finds channels marked as NSFW.' }, { query: 'website:.', result: 'Finds channels that have a link to the official website.' }, {