-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add condition to filter multiple characters
- Loading branch information
Showing
3 changed files
with
52 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of MetaModels/filter_register. | ||
* | ||
* (c) 2012-2018 The MetaModels team. | ||
* (c) 2012-2020 The MetaModels team. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -15,7 +15,8 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Stefan Heimes <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @copyright 2012-2018 The MetaModels team. | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2012-2020 The MetaModels team. | ||
* @license https://github.com/MetaModels/filter_register/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -30,3 +31,6 @@ | |
$GLOBALS['TL_LANG']['tl_metamodel_filtersetting']['hideempty'][0] = 'Hide empty values'; | ||
$GLOBALS['TL_LANG']['tl_metamodel_filtersetting']['hideempty'][1] = | ||
'Here you can choose if empty values should hide or not in the list.'; | ||
$GLOBALS['TL_LANG']['tl_metamodel_filtersetting']['filtermultiple'][0] = 'Filter multiple characters'; | ||
$GLOBALS['TL_LANG']['tl_metamodel_filtersetting']['filtermultiple'][1] = | ||
'Here you can allow filtering by several characters.'; |