mirror of
https://github.com/traccar/traccar.git
synced 2026-04-23 16:47:28 -04:00
- Added French translations for all notification templates - Tested on Traccar 6.10.0 with email and Telegram notifications - Templates include: alarm, geofence enter/exit, device events, fuel changes, maintenance, etc.
15 lines
605 B
Plaintext
15 lines
605 B
Plaintext
#set($subject = "$device.name : inactif")
|
|
#set($lastUpdate = $dateTool.getDate())
|
|
#set($ignore = $lastUpdate.setTime($event.getLong('lastUpdate')))
|
|
#set($digest = "$device.name inactif depuis $dateTool.format('yyyy-MM-dd HH:mm:ss', $lastUpdate, $locale, $timezone)")
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
Appareil : $device.name<br>
|
|
Inactif<br>
|
|
Dernière mise à jour : $dateTool.format('yyyy-MM-dd HH:mm:ss', $lastUpdate, $locale, $timezone)<br>
|
|
Lien : <a href="$webUrl/event/$event.id">$webUrl/event/$event.id</a><br>
|
|
<br>
|
|
<a href="$webUrl/settings/notifications?token=$token">Se désabonner</a>
|
|
</body>
|
|
</html> |