Mercurial > hg > isophonics-drupal-site
annotate core/themes/stable/templates/admin/locale-translation-last-check.html.twig @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
rev | line source |
---|---|
Chris@0 | 1 {# |
Chris@0 | 2 /** |
Chris@0 | 3 * @file |
Chris@0 | 4 * Theme override for the last time we checked for update data. |
Chris@0 | 5 * |
Chris@0 | 6 * Available variables: |
Chris@0 | 7 * - last_checked: Whether or not locale updates have been checked before. |
Chris@0 | 8 * - time: The formatted time ago when the site last checked for available |
Chris@0 | 9 * updates. |
Chris@0 | 10 * - link: A link to manually check available updates. |
Chris@0 | 11 * |
Chris@0 | 12 * @see template_preprocess_locale_translation_last_check() |
Chris@0 | 13 */ |
Chris@0 | 14 #} |
Chris@0 | 15 <div class="locale checked"> |
Chris@0 | 16 <p> |
Chris@0 | 17 {% if last_checked %} |
Chris@0 | 18 {% trans %} Last checked: {{ time }} ago {% endtrans %} |
Chris@0 | 19 {% else %} |
Chris@0 | 20 {{ 'Last checked: never'|t }} |
Chris@0 | 21 {% endif %} |
Chris@0 | 22 <span class="check-manually">({{ link }})</span></p> |
Chris@0 | 23 </div> |