Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / themes / stable / templates / admin / config_translation_manage_form_element.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for a form element in config_translation.
5  *
6  * Available variables:
7  * - element: Array that represents the element shown in the form.
8  *   - source: The source of the translation.
9  *   - translation: The translation for the target language.
10  *
11  * @see template_preprocess()
12  */
13 #}
14 <div class="translation-set clearfix">
15   <div class="layout-column layout-column--half translation-set__source">
16     {{ element.source }}
17   </div>
18   <div class="layout-column layout-column--half translation-set__translated">
19     {{ element.translation }}
20   </div>
21 </div>