8 changed files with 41 additions and 22 deletions
@ -1,41 +1,41 @@ |
|||||
## |
## |
||||
## Default Email template for SABnzbd |
## Template Email pour SABnzbd |
||||
## This a Cheetah template |
## Ceci est un template Cheetah |
||||
## Documentation: http://sabnzbd.wikidot.com/email-templates |
## Documentation: http://sabnzbd.wikidot.com/email-templates |
||||
## |
## |
||||
## Newlines and whitespace are significant! |
## Les retours à la ligne et les espaces sont importants ! |
||||
## |
## |
||||
## These are the email headers |
## Entêtes de l'email |
||||
to: $to |
to: $to |
||||
from: $from |
from: $from |
||||
date: $date |
date: $date |
||||
subject: SABnzbd has <!--#if $status then "completed" else "failed" #--> job $name |
subject: SABnzbd <!--#if $status then "Succès" else "Echec" #--> du téléchargement $name |
||||
X-priority: 5 |
X-priority: 5 |
||||
X-MS-priority: 5 |
X-MS-priority: 5 |
||||
## After this comes the body, the empty line is required! |
## Le contenu du message, la ligne vide est obligatoire ! |
||||
|
|
||||
Hi, |
Bonjour, |
||||
<!--#if $status #--> |
<!--#if $status #--> |
||||
SABnzbd has downloaded "$name" <!--#if $msgid=="" then "" else "(newzbin #" + $msgid + ")"#--> |
SABnzbd a téléchargé avec succès "$name" <!--#if $msgid=="" then "" else "(newzbin #" + $msgid + ")"#--> |
||||
<!--#else#--> |
<!--#else#--> |
||||
SABnzbd has failed to download "$name" <!--#if $msgid=="" then "" else "(newzbin #" + $msgid + ")"#--> |
SABnzbd a téléchargé sans succès "$name" <!--#if $msgid=="" then "" else "(newzbin #" + $msgid + ")"#--> |
||||
<!--#end if#--> |
<!--#end if#--> |
||||
Finished at $end_time |
Terminé à $end_time |
||||
Downloaded $size |
Téléchargé $size |
||||
|
|
||||
Results of the job: |
Résultat du téléchargement : |
||||
<!--#for $stage in $stages #--> |
<!--#for $stage in $stages #--> |
||||
Stage $stage <!--#slurp#--> |
Etape $stage <!--#slurp#--> |
||||
<!--#for $result in $stages[$stage]#--> |
<!--#for $result in $stages[$stage]#--> |
||||
$result <!--#slurp#--> |
$result <!--#slurp#--> |
||||
<!--#end for#--> |
<!--#end for#--> |
||||
<!--#end for#--> |
<!--#end for#--> |
||||
<!--#if $script!="" #--> |
<!--#if $script!="" #--> |
||||
Output from user script "$script" (Exit code = $script_ret): |
Sortie du script utilisateur "$script" (Code Retour = $script_ret): |
||||
$script_output |
$script_output |
||||
<!--#end if#--> |
<!--#end if#--> |
||||
<!--#if $status #--> |
<!--#if $status #--> |
||||
Enjoy! |
A bientôt ! |
||||
<!--#else#--> |
<!--#else#--> |
||||
Sorry! |
Désolé ! |
||||
<!--#end if#--> |
<!--#end if#--> |
||||
|
Loading…
Reference in new issue