locale-translation-last-check.html.twig
Same filename in this branch
Same filename in other branches
- 9 core/themes/stable9/templates/admin/locale-translation-last-check.html.twig
- 9 core/themes/stable/templates/admin/locale-translation-last-check.html.twig
- 9 core/modules/locale/templates/locale-translation-last-check.html.twig
- 10 core/themes/stable9/templates/admin/locale-translation-last-check.html.twig
- 10 core/modules/locale/templates/locale-translation-last-check.html.twig
- 11.x core/themes/stable9/templates/admin/locale-translation-last-check.html.twig
- 11.x core/modules/locale/templates/locale-translation-last-check.html.twig
Default theme implementation for the last time we checked for update data.
Available variables:
- last_checked: Whether or not locale updates have been checked before.
- time: The formatted time ago when the site last checked for available updates.
- link: A link to manually check available updates.
See also
template_preprocess_locale_translation_last_check()
1 theme call to locale-translation-last-check.html.twig
- TranslationStatusForm::buildForm in core/
modules/ locale/ src/ Form/ TranslationStatusForm.php - Form builder for displaying the current translation status.
File
-
core/
modules/ locale/ templates/ locale-translation-last-check.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation for the last time we checked for update data.
- *
- * Available variables:
- * - last_checked: Whether or not locale updates have been checked before.
- * - time: The formatted time ago when the site last checked for available
- * updates.
- * - link: A link to manually check available updates.
- *
- * @see template_preprocess_locale_translation_last_check()
- *
- * @ingroup themeable
- */
- #}
- <div class="locale checked">
- <p>
- {% if last_checked %}
- {% trans %} Last checked: {{ time }} ago {% endtrans %}
- {% else %}
- {{ 'Last checked: never'|t }}
- {% endif %}
- <span class="check-manually">({{ link }})</span></p>
- </div>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.