{% import "macro_hierarchy.html.twig" as macro_hierarchy %}
{% trans %}Vocabulary management{% endtrans %}
{% trans %}List{% endtrans %}
{% for vocabulary in vocabularies %}
{{ vocabulary.name }}
{% endfor %}
{% trans %}Language{% endtrans %}
{% for language in languages %}
{{ language|trans }}
{% endfor %}
{% trans %}Display options{% endtrans %}
{% if not currentList.thesaurus %}
{{ form_widget(displayOptionsForm.children.displayType) }}
{% endif %}
{{ form_row(displayOptionsForm.synonym) }} {{ form_row(displayOptionsForm.occurrence) }}
{{ form_row(displayOptionsForm.empty_occurence) }} {{ form_row(displayOptionsForm.candidate) }} {% if currentList.thesaurus %}
{% trans %}Display in tree structure{% endtrans %}
{% endif %}
{#
#} {#{{ form_rest(displayOptionsForm) }}#} {#
#}
Actions
{% trans %} Translate this list{% endtrans %}
{% trans %}Extract list{% endtrans %}
{% trans %}Validate candidate words{% endtrans %}
{% if not currentList.thesaurus %}
{% trans %} Transform in thesaurus{% endtrans %}
{% endif %}
{% trans %}Add a word{% endtrans %}
{{ form_widget(wordForm) }}
{#
#} {#
#}
{% for word in words %} {% if word.synonym %} {% if false == currentEmptyOccurence or 0 == word.countLibraryWordOccurences() %}
{{ word.name }}
{% if currentOccurence %}
{{ word.countLibraryWordOccurences() }}
{% endif %}
{% endif %} {% else %} {% if false == currentEmptyOccurence or 0 == word.countLibraryWordOccurences() %}
{{ word.name }} {% if word.candidate %}*{% endif %}
{% if currentOccurence %}
{{ word.countLibraryWordOccurences() }}
{% endif %}
{% endif %} {% endif %} {% endfor %}
{% if currentList.thesaurus %} {% set level = 0 %}
{% for word in thesaurusWords %}
{{ word.name }}
{% endfor %}
{% endif %}
×
{% trans %}Validate words{% endtrans %}
{% trans %}Select all{% endtrans %}
{% for word in aWords %} {% if word.candidate %}
{{ word.name|capitalize }}
{% endif %} {% endfor %}