Files
traccar/templates/notifications/fr/deviceInactive.vm
khalil-da e9c9af4828 Add French (fr) localization for notification templates (#5681)
- 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.
2025-10-02 17:46:06 -07:00

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>