Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / locale / templates / locale-translation-last-check.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation for the last time we checked for update data.
5  *
6  * Available variables:
7  * - last_checked: Whether or not locale updates have been checked before.
8  * - time: The formatted time ago when the site last checked for available
9  *   updates.
10  * - link: A link to manually check available updates.
11  *
12  * @see template_preprocess_locale_translation_last_check()
13  *
14  * @ingroup themeable
15  */
16 #}
17 <div class="locale checked">
18   <p>
19   {% if last_checked %}
20     {% trans %} Last checked: {{ time }} ago {% endtrans %}
21   {% else %}
22     {{ 'Last checked: never'|t }}
23   {% endif %}
24   <span class="check-manually">({{ link }})</span></p>
25 </div>