Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lang/fr_fr.php
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ protected function _LoadStrings()
$strings['hours'] = 'heures';
$strings['days'] = 'jours';
$strings['ReminderBeforeStart'] = 'avant l\'heure de début';
$strings['ReminderBeforeEnd'] = 'après l\'heure de fin';
$strings['ReminderBeforeEnd'] = 'avant l\'heure de fin';
$strings['Logo'] = 'Logo';
$strings['CssFile'] = 'Fichier CSS';
$strings['ThemeUploadSuccess'] = 'Vos modifications ont été sauvegardées. Rafraîchissez la page pour que les changements prennent effet.';
Expand Down Expand Up @@ -502,7 +502,7 @@ protected function _LoadStrings()
$strings['AutoReleaseNotification'] = 'Libéré automatiquement dans %s minutes sans confirmation';
$strings['RequiresCheckInNotification'] = 'Nécessite un check in/out';
$strings['NoCheckInRequiredNotification'] = 'Ne nécessite pas de check in/out';
$strings['RequiresApproval'] = 'Nécessite un ccord';
$strings['RequiresApproval'] = 'Nécessite un accord';
$strings['CheckingIn'] = 'Check In';
$strings['CheckingOut'] = 'Check Out';
$strings['CheckIn'] = 'Check In';
Expand Down Expand Up @@ -530,10 +530,10 @@ protected function _LoadStrings()
$strings['SendAsEmail'] = 'Envoyer par Email';
$strings['UsersInGroups'] = 'Utilisateurs dans le Groupe';
$strings['UsersWithAccessToResources'] = 'Utilisateurs avec Accès à la Ressource';
$strings['AnnouncementSubject'] = 'Une nouvelle annonce a été posdtée par %s';
$strings['AnnouncementSubject'] = 'Une nouvelle annonce a été postée par %s';
$strings['AnnouncementEmailNotice'] = 'Les utilisateurs recevront cette annonce par email';
$strings['Day'] = 'Jour';
$strings['NotifyWhenAvailable'] = 'Me notifier Quand Disponible';
$strings['NotifyWhenAvailable'] = 'Me notifier quand disponible';
$strings['AddingToWaitlist'] = 'Rajouté à la liste d\'attente';
$strings['WaitlistRequestAdded'] = 'Vous serez notifié si cet horaire devient disponible';
$strings['PrintQRCode'] = 'Imprimer le code QR';
Expand Down
6 changes: 4 additions & 2 deletions tpl/Reservation/pdf.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,12 @@ $('.btnPDF').click(function (e) {
body: [
[{ content: '{translate key="SendReminder"}', styles: { fontStyle: 'bold'}},
{if $ReminderTimeStart neq ''}
{ content: '{$ReminderTimeStart} {translate key=$ReminderIntervalStart} {translate key=ReminderBeforeStart}'},
{assign var="ReminderBeforeStart" value="{translate key=ReminderBeforeStart}"}
{ content: '{$ReminderTimeStart} {translate key=$ReminderIntervalStart} {$ReminderBeforeStart|escape:'javascript'}'},
{/if}
{if $ReminderTimeEnd neq ''}
{ content: '{$ReminderTimeEnd} {translate key=$ReminderIntervalEnd} {translate key=ReminderBeforeEnd}'},
{assign var="ReminderBeforeEnd" value="{translate key=ReminderBeforeEnd}"}
{ content: '{$ReminderTimeEnd} {translate key=$ReminderIntervalEnd} {$ReminderBeforeEnd|escape:'javascript'}'},
{/if}
],
]
Expand Down