قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* Removes GeoIp Legacy support * move rendering provider configuration to the provider, to allow other providers to define an own one * move related translations to GeoIp2 plugin * Adds some UI tests * Apply review feedback
9 خطوط
362 B
Twig
9 خطوط
362 B
Twig
{% if nextRunTime|default is not empty %}
|
|
{% if date(nextRunTime.getTimestamp()) <= date() %}
|
|
{{ 'GeoIp2_UpdaterScheduledForNextRun'|translate }}
|
|
{% else %}
|
|
{{ 'GeoIp2_UpdaterWillRunNext'|translate('<strong>' ~ nextRunTime.toString() ~ '</strong>')|raw }}
|
|
{% endif %}
|
|
{% else %}
|
|
{{ 'GeoIp2_UpdaterIsNotScheduledToRun'|translate }}
|
|
{% endif %} |