View | Details | Raw Unified | Return to bug 23789
Collapse All | Expand All

(-)a/installer/data/mysql/fr-CA/obligatoire/sample_notices.sql (-11 / +10 lines)
Lines 200-222 INSERT IGNORE INTO `letter` (`module`, `code`, `branchcode`, `name`, `is_html`, Link Here
200
INSERT INTO `letter` (`module`, `code`, `branchcode`, `name`, `is_html`, `title`, `content`, `message_transport_type`) VALUES
200
INSERT INTO `letter` (`module`, `code`, `branchcode`, `name`, `is_html`, `title`, `content`, `message_transport_type`) VALUES
201
('circulation', 'SR_SLIP', '', 'Ticket de rotation automatique d\'exemplaires', 0, 'Rapport de rotation automatique d\'exemplaires', 'Rapport de rotation automatique d\'exemplaires pour [% branch.name %]:\r\n\r\n[% IF branch.items.size %][% branch.items.size %] exemplaires de cette bibliothèque à traiter.\r\n[% ELSE %]Aucun exemplaire de cette bibliothèque à traiter\r\n[% END %][% FOREACH item IN branch.items %][% IF item.reason != \'in-demand\' %]Titre : [% item.title %]\r\nAuteur : [% item.author %]\r\nCote : [% item.callnumber %]\r\nLocalisation : [% item.location %]\r\nCode-barres: [% item.barcode %]\r\nEn prêt? : [% item.onloan %]\r\nStatut : [% item.reason %]\r\nBibliothèque dépositaire : [% item.branch.branchname %] [% item.branch.branchcode %]\r\n\r\n[% END %][% END %]', 'email');
201
('circulation', 'SR_SLIP', '', 'Ticket de rotation automatique d\'exemplaires', 0, 'Rapport de rotation automatique d\'exemplaires', 'Rapport de rotation automatique d\'exemplaires pour [% branch.name %]:\r\n\r\n[% IF branch.items.size %][% branch.items.size %] exemplaires de cette bibliothèque à traiter.\r\n[% ELSE %]Aucun exemplaire de cette bibliothèque à traiter\r\n[% END %][% FOREACH item IN branch.items %][% IF item.reason != \'in-demand\' %]Titre : [% item.title %]\r\nAuteur : [% item.author %]\r\nCote : [% item.callnumber %]\r\nLocalisation : [% item.location %]\r\nCode-barres: [% item.barcode %]\r\nEn prêt? : [% item.onloan %]\r\nStatut : [% item.reason %]\r\nBibliothèque dépositaire : [% item.branch.branchname %] [% item.branch.branchcode %]\r\n\r\n[% END %][% END %]', 'email');
202
202
203
INSERT INTO letter (module, code, name, title, content, message_transport_type) VALUES ('circulation', 'AUTO_RENEWALS', 'notification on auto renewing', 'Auto renewals',
203
INSERT INTO letter (module, code, name, title, content, message_transport_type) VALUES ('circulation', 'AUTO_RENEWALS', 'Notification de renouvellement automatique', 'Renouvellements automatiques',
204
"Dear [% borrower.firstname %] [% borrower.surname %],
204
"Bonjour [% borrower.firstname %] [% borrower.surname %],
205
[% IF checkout.auto_renew_error %]
205
[% IF checkout.auto_renew_error %]
206
The following item [% biblio.title %] has not been correctly renewed
206
Le document [% biblio.title %] n’a pu être renouvelé
207
[% IF checkout.auto_renew_error == 'too_many' %]
207
[% IF checkout.auto_renew_error == 'too_many' %]
208
You have reach the maximum of checkouts possible.
208
Vous avez atteint la limite maximale de prêts.
209
[% ELSIF checkout.auto_renew_error == 'on_reserve' %]
209
[% ELSIF checkout.auto_renew_error == 'on_reserve' %]
210
This item is on hold for another patron.
210
Ce document est présentement réservé pour une autre personne. 
211
[% ELSIF checkout.auto_renew_error == 'restriction' %]
211
[% ELSIF checkout.auto_renew_error == 'restriction' %]
212
You are currently restricted.
212
Vous n\'avez pas la permission.
213
[% ELSIF checkout.auto_renew_error == 'overdue' %]
213
[% ELSIF checkout.auto_renew_error == 'overdue' %]
214
You have overdues.
214
Vous avez des documents en retard.
215
[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]
215
[% ELSIF checkout.auto_renew_error == 'auto_too_late' %]
216
It\'s too late to renew this checkout.
216
Délai non respecté, il est trop tard pour renouveler ce document. 
217
[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]
217
[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %]
218
You have too much unpaid fines.
218
Vous avez présentement trop de frais au dossier. 
219
[% END %]
219
[% END %]
220
[% ELSE %]
220
[% ELSE %]
221
The following item [% biblio.title %] has correctly been renewed and is now due [% checkout.date_due %]
221
Le document suivant [% biblio.title %] a été renouvelé et sa nouvelle date de retour est [% checkout.date_due %]
222
[% END %]", 'email');
222
[% END %]", 'email');
223
- 

Return to bug 23789