config_translation_manage_form_element.html.twig
Same filename in this branch
Same filename in other branches
- 9 core/themes/stable9/templates/admin/config_translation_manage_form_element.html.twig
- 9 core/themes/claro/templates/admin/config_translation_manage_form_element.html.twig
- 9 core/themes/stable/templates/admin/config_translation_manage_form_element.html.twig
- 9 core/modules/config_translation/templates/config_translation_manage_form_element.html.twig
- 10 core/themes/stable9/templates/admin/config_translation_manage_form_element.html.twig
- 10 core/themes/claro/templates/admin/config_translation_manage_form_element.html.twig
- 10 core/modules/config_translation/templates/config_translation_manage_form_element.html.twig
- 11.x core/themes/stable9/templates/admin/config_translation_manage_form_element.html.twig
- 11.x core/themes/claro/templates/admin/config_translation_manage_form_element.html.twig
- 11.x core/modules/config_translation/templates/config_translation_manage_form_element.html.twig
Default theme implementation for a form element in config_translation.
Available variables:
- element: Array that represents the element shown in the form.
- source: The source of the translation.
- translation: The translation for the target language.
See also
File
-
core/
modules/ config_translation/ templates/ config_translation_manage_form_element.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation for a form element in config_translation.
- *
- * Available variables:
- * - element: Array that represents the element shown in the form.
- * - source: The source of the translation.
- * - translation: The translation for the target language.
- *
- * @see template_preprocess()
- *
- * @ingroup themeable
- */
- #}
- <div class="translation-set clearfix">
- <div class="layout-column layout-column--half translation-set__source">
- {{ element.source }}
- </div>
- <div class="layout-column layout-column--half translation-set__translated">
- {{ element.translation }}
- </div>
- </div>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.