From 33c83f4020d991e21404e99d0f64bc89fd46671c Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Wed, 10 Nov 2021 15:31:09 +0100 Subject: [PATCH] chg: [ui] Renamed search button in index_table Search seems more appropriate than filter --- plugins/Tags/templates/Tags/index.php | 2 +- .../default/local_tool_connectors/MispConnector.php | 10 +++++----- .../local_tool_connectors/SkeletonConnectorExample.php | 2 +- templates/AuthKeys/index.php | 2 +- templates/Broods/index.php | 2 +- templates/Broods/preview_individuals.php | 2 +- templates/Broods/preview_organisations.php | 2 +- templates/Broods/preview_sharing_groups.php | 2 +- templates/EncryptionKeys/index.php | 2 +- templates/Inbox/index.php | 2 +- templates/Inbox/list_processors.php | 2 +- templates/Individuals/index.php | 2 +- templates/LocalTools/brood_tools.php | 2 +- templates/LocalTools/connector_index.php | 2 +- templates/LocalTools/index.php | 2 +- templates/MailingLists/index.php | 2 +- templates/MetaTemplateFields/index.php | 2 +- templates/MetaTemplates/index.php | 2 +- templates/Open/Individuals/index.php | 2 +- templates/Open/Organisations/index.php | 2 +- templates/Outbox/index.php | 2 +- templates/Outbox/list_processors.php | 2 +- templates/Roles/index.php | 2 +- templates/SharingGroups/index.php | 2 +- templates/SharingGroups/list_orgs.php | 2 +- templates/UserSettings/index.php | 2 +- templates/Users/index.php | 2 +- 27 files changed, 31 insertions(+), 31 deletions(-) diff --git a/plugins/Tags/templates/Tags/index.php b/plugins/Tags/templates/Tags/index.php index 4f1a041..5f2fded 100644 --- a/plugins/Tags/templates/Tags/index.php +++ b/plugins/Tags/templates/Tags/index.php @@ -20,7 +20,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/src/Lib/default/local_tool_connectors/MispConnector.php b/src/Lib/default/local_tool_connectors/MispConnector.php index e84f082..5bfa86a 100644 --- a/src/Lib/default/local_tool_connectors/MispConnector.php +++ b/src/Lib/default/local_tool_connectors/MispConnector.php @@ -302,7 +302,7 @@ class MispConnector extends CommonConnectorTools 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', @@ -392,7 +392,7 @@ class MispConnector extends CommonConnectorTools 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', @@ -482,7 +482,7 @@ class MispConnector extends CommonConnectorTools 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', @@ -558,7 +558,7 @@ class MispConnector extends CommonConnectorTools 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', @@ -626,7 +626,7 @@ class MispConnector extends CommonConnectorTools 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/src/Lib/default/local_tool_connectors/SkeletonConnectorExample.php b/src/Lib/default/local_tool_connectors/SkeletonConnectorExample.php index ce9b62d..8daa13a 100644 --- a/src/Lib/default/local_tool_connectors/SkeletonConnectorExample.php +++ b/src/Lib/default/local_tool_connectors/SkeletonConnectorExample.php @@ -87,7 +87,7 @@ class SkeletonConnector extends CommonConnectorTools 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/AuthKeys/index.php b/templates/AuthKeys/index.php index b5fbc35..070c3f3 100644 --- a/templates/AuthKeys/index.php +++ b/templates/AuthKeys/index.php @@ -16,7 +16,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Broods/index.php b/templates/Broods/index.php index 43d454a..a78cf5a 100644 --- a/templates/Broods/index.php +++ b/templates/Broods/index.php @@ -20,7 +20,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Broods/preview_individuals.php b/templates/Broods/preview_individuals.php index 85a565d..73e2199 100644 --- a/templates/Broods/preview_individuals.php +++ b/templates/Broods/preview_individuals.php @@ -7,7 +7,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/Broods/preview_organisations.php b/templates/Broods/preview_organisations.php index 5bded24..40b09c3 100644 --- a/templates/Broods/preview_organisations.php +++ b/templates/Broods/preview_organisations.php @@ -7,7 +7,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/Broods/preview_sharing_groups.php b/templates/Broods/preview_sharing_groups.php index 1348182..5a4cc58 100644 --- a/templates/Broods/preview_sharing_groups.php +++ b/templates/Broods/preview_sharing_groups.php @@ -7,7 +7,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/EncryptionKeys/index.php b/templates/EncryptionKeys/index.php index 5017319..413e2d8 100644 --- a/templates/EncryptionKeys/index.php +++ b/templates/EncryptionKeys/index.php @@ -24,7 +24,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Inbox/index.php b/templates/Inbox/index.php index f70bd90..6576ec3 100644 --- a/templates/Inbox/index.php +++ b/templates/Inbox/index.php @@ -29,7 +29,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/Inbox/list_processors.php b/templates/Inbox/list_processors.php index fd93199..3c2a7c7 100644 --- a/templates/Inbox/list_processors.php +++ b/templates/Inbox/list_processors.php @@ -11,7 +11,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/Individuals/index.php b/templates/Individuals/index.php index 7aa3115..5867f19 100644 --- a/templates/Individuals/index.php +++ b/templates/Individuals/index.php @@ -20,7 +20,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/LocalTools/brood_tools.php b/templates/LocalTools/brood_tools.php index 87a8508..6f46f9a 100644 --- a/templates/LocalTools/brood_tools.php +++ b/templates/LocalTools/brood_tools.php @@ -6,7 +6,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/LocalTools/connector_index.php b/templates/LocalTools/connector_index.php index e14be3b..4acd291 100644 --- a/templates/LocalTools/connector_index.php +++ b/templates/LocalTools/connector_index.php @@ -36,7 +36,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/LocalTools/index.php b/templates/LocalTools/index.php index 91903a2..5c27c56 100644 --- a/templates/LocalTools/index.php +++ b/templates/LocalTools/index.php @@ -6,7 +6,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/MailingLists/index.php b/templates/MailingLists/index.php index 97d41e5..e96410c 100644 --- a/templates/MailingLists/index.php +++ b/templates/MailingLists/index.php @@ -17,7 +17,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/MetaTemplateFields/index.php b/templates/MetaTemplateFields/index.php index 5620603..4071d13 100644 --- a/templates/MetaTemplateFields/index.php +++ b/templates/MetaTemplateFields/index.php @@ -6,7 +6,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/MetaTemplates/index.php b/templates/MetaTemplates/index.php index 0331ddf..90a7450 100644 --- a/templates/MetaTemplates/index.php +++ b/templates/MetaTemplates/index.php @@ -10,7 +10,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Open/Individuals/index.php b/templates/Open/Individuals/index.php index 411f331..8eac5f6 100644 --- a/templates/Open/Individuals/index.php +++ b/templates/Open/Individuals/index.php @@ -7,7 +7,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'children' => [ [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Open/Organisations/index.php b/templates/Open/Organisations/index.php index e74a5f2..fa6fcab 100644 --- a/templates/Open/Organisations/index.php +++ b/templates/Open/Organisations/index.php @@ -18,7 +18,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Outbox/index.php b/templates/Outbox/index.php index 2685171..d00cb3c 100644 --- a/templates/Outbox/index.php +++ b/templates/Outbox/index.php @@ -29,7 +29,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/Outbox/list_processors.php b/templates/Outbox/list_processors.php index 38c87f2..416a7c7 100644 --- a/templates/Outbox/list_processors.php +++ b/templates/Outbox/list_processors.php @@ -11,7 +11,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value', diff --git a/templates/Roles/index.php b/templates/Roles/index.php index 2fc4c03..4271700 100644 --- a/templates/Roles/index.php +++ b/templates/Roles/index.php @@ -17,7 +17,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/SharingGroups/index.php b/templates/SharingGroups/index.php index 6076c6c..5a353ed 100644 --- a/templates/SharingGroups/index.php +++ b/templates/SharingGroups/index.php @@ -16,7 +16,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/SharingGroups/list_orgs.php b/templates/SharingGroups/list_orgs.php index 1c0658f..267677f 100644 --- a/templates/SharingGroups/list_orgs.php +++ b/templates/SharingGroups/list_orgs.php @@ -18,7 +18,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/UserSettings/index.php b/templates/UserSettings/index.php index 5740047..42da55b 100644 --- a/templates/UserSettings/index.php +++ b/templates/UserSettings/index.php @@ -22,7 +22,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value' diff --git a/templates/Users/index.php b/templates/Users/index.php index 64561a1..1bad3e5 100644 --- a/templates/Users/index.php +++ b/templates/Users/index.php @@ -17,7 +17,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ ], [ 'type' => 'search', - 'button' => __('Filter'), + 'button' => __('Search'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'value'