mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
49 lines
2.1 KiB
Twig
49 lines
2.1 KiB
Twig
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html lang="{{ app['locale'] }}">
|
|
<head>
|
|
<title>{{ 'thesaurus:: Lier la branche de thesaurus' | trans }}</title>
|
|
<link REL="stylesheet" TYPE="text/css" href="{{ path('minifier', { 'f' : 'skins/thesaurus/thesaurus.css' }) }}" />
|
|
</head>
|
|
<body class="dialog">
|
|
<center>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<form onsubmit="return(false);">
|
|
<div style="width:70%; height:200px; overflow:scroll;" class="x3Dbox">
|
|
{% for field in field2del %}
|
|
{% trans with {'%field%' : field} %}thesaurus:: suppression du lien du champ %field%{% endtrans %}
|
|
<br/>
|
|
{% endfor %}
|
|
{% for candidate in candidates2del %}
|
|
{% set field = candidate2del["field"] %}
|
|
{% trans with {'%field%' : field} %}thesaurus:: suppression de la branche de mot candidats pour le champ %field%{% endtrans %}
|
|
<br/>
|
|
{% endfor %}
|
|
{% for field in branch2del %}
|
|
{% trans with {'%field%' : field} %}thesaurus:: suppression de la branche de mot candidats pour le champ %field%{% endtrans %}
|
|
<br/>
|
|
{% endfor %}
|
|
|
|
{% if ctchanged %}
|
|
{{ 'thesaurus:: enregistrement de la liste modifiee des mots candidats.' | trans }}
|
|
<br/>
|
|
{% endif %}
|
|
|
|
{% for field in field2del %}
|
|
{% trans with {'%field%' : field} %}thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%{% endtrans %}
|
|
<br/>
|
|
{% endfor %}
|
|
|
|
{% if reindexed %}
|
|
{{ 'thesaurus:: reindexer tous les enregistrements' | trans }}
|
|
<br/>
|
|
{% endif %}
|
|
</div>
|
|
<br/>
|
|
<input type="button" value="{{ 'boutton::fermer' | trans }}" onclick="self.close();">
|
|
</form>
|
|
</center>
|
|
</body>
|
|
</html>
|