Files
traccar/templates/notifications/fr/commandResult.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

13 lines
599 B
Plaintext

#set($subject = "$device.name : résultat de commande reçu")
#set($digest = "Résultat de commande reçu pour $device.name : $position.getString('result') à $dateTool.format('yyyy-MM-dd HH:mm:ss', $event.eventTime, $locale, $timezone)")
<!DOCTYPE html>
<html>
<body>
Appareil : $device.name<br>
Résultat : $position.getString('result')<br>
Heure : $dateTool.format('yyyy-MM-dd HH:mm:ss', $event.eventTime, $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>