{% extends "base.html" %} {% load i18n %} {% load url_tools %} {% load request_tools %} {% block title %} {% with request|tocorpus as corpus %} {% trans "Concordancer" %} | {{ corpus.title }} | {{ block.super }} {% endwith %} {% endblock title %} {% load bootstrap_tags %} {% block content %} {% with request|tocorpus as corpus %}
{% trans "Waiting jQuery..." %}
{% trans "Check the table below:" %}
{% trans "Query" %} | {% trans "Meaning" %} |
---|---|
abc |
{% trans 'Text is "abc"' %} |
\\ |
{% trans 'Text is "\"' %} |
.\.\. |
{% trans 'Text is "..."' %} |
abc def |
{% trans 'The first text is "abc" and the second is "def"' %} |
abc {1} def |
{% trans 'The first text is "abc", the second can be anything and the third is "def"' %} |
abc \{1} def |
{% trans 'The first text is "abc", the second is "{1}" and the third is "def"' %} |
abc {0,*} def |
{% trans 'The first text is "abc", the second can be anything but does not necessarity exists and the last is "def"' %} |
abc {1,*} def |
{% trans 'The first text is "abc", the second can be anything and necessarity exists at least one and the last is "def"' %} |
abc.. |
{% trans 'Text starts with "abc"' %} |
abc.\. |
{% trans 'Text is "abc.."' %} |
..xyz |
{% trans 'Text ends with "xyz"' %} |
..jkl.. |
{% trans 'Text contains "jkl"' %} |
abc..jkl..xyz |
{% trans 'Text starts with "abc", contains "jkl" and ends with "xyz"' %} |
_\_ |
{% trans "This matches a word is a double underscore" %} |
__ |
{% trans "The double underscore sepparates the word part from tag part" %} |
__V |
{% trans 'Matches any word that is tagged as "V"' %} |
mate__V |
{% trans 'Matches the word "mate" when it is tagged as "V"' %} |
mate__V__N |
{% trans 'Matches the word "mate" when it is tagged as "V" or "N"' %} |