-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
318 changed files
with
399 additions
and
379 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
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
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 |
---|---|---|
@@ -1,55 +1,53 @@ | ||
import React from 'react'; | ||
import { t } from 'app/I18N'; | ||
import { t } from 'V2/i18n'; | ||
|
||
const SearchTipsContent = () => { | ||
return ( | ||
<ul> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: wildcard', | ||
'Use an * for wildcard search. Ie: "juris*" will match words ' + | ||
'such as jurisdiction, jurisdictional, jurists, jurisprudence, etc.', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: one char wildcard', | ||
'? for one character wildcard. Ie: "198?" will match 1980 to 1989 and also 198a, 198b, etc.', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: exact term', | ||
'Exact term match by enclosing your search string with quotes. Ie. "Costa Rica"' + | ||
' will toss different results compared to Costa Rica without quotes.', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: proximity', | ||
'~ for proximity searches. Ie: "the status"~5 will find anything having "the" and' + | ||
'"status" within a distance of 5 words, such as "the procedural status", "the specific legal status".', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: boolean', | ||
'AND, OR and NOT for boolean searches. Ie. "status AND women NOT Nicaragua" will match anything ' + | ||
'containing both the words status and women, and necessarily not containing the word Nicaragua.', | ||
false | ||
)} | ||
</li> | ||
</ul> | ||
); | ||
}; | ||
const SearchTipsContent = () => ( | ||
<ul> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: wildcard', | ||
'Use an * for wildcard search. Ie: "juris*" will match words ' + | ||
'such as jurisdiction, jurisdictional, jurists, jurisprudence, etc.', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: one char wildcard', | ||
'? for one character wildcard. Ie: "198?" will match 1980 to 1989 and also 198a, 198b, etc.', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: exact term', | ||
'Exact term match by enclosing your search string with quotes. Ie. "Costa Rica"' + | ||
' will toss different results compared to Costa Rica without quotes.', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: proximity', | ||
'~ for proximity searches. Ie: "the status"~5 will find anything having "the" and' + | ||
'"status" within a distance of 5 words, such as "the procedural status", "the specific legal status".', | ||
false | ||
)} | ||
</li> | ||
<li> | ||
{t( | ||
'System', | ||
'Search Tips: boolean', | ||
'AND, OR and NOT for boolean searches. Ie. "status AND women NOT Nicaragua" will match anything ' + | ||
'containing both the words status and women, and necessarily not containing the word Nicaragua.', | ||
false | ||
)} | ||
</li> | ||
</ul> | ||
); | ||
|
||
export { SearchTipsContent }; |
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
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
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
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
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
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
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
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
Oops, something went wrong.