@@ -, +, @@ - Add toolkit template (TT) syntax to notices - Add TT conditionals to notices - Add translated notice --- ...lAddressForPatronRegistrations_sysprefs.pl | 21 ++++++++++--------- .../mysql/en/mandatory/sample_notices.yml | 21 ++++++++++--------- .../fr-FR/1-Obligatoire/sample_notices.sql | 16 ++++++++++++++ 3 files changed, 38 insertions(+), 20 deletions(-) --- a/installer/data/mysql/atomicupdate/bug23538-add_EmailPatronRegistrations_and_EmailAddressForPatronRegistrations_sysprefs.pl +++ a/installer/data/mysql/atomicupdate/bug23538-add_EmailPatronRegistrations_and_EmailAddressForPatronRegistrations_sysprefs.pl @@ -11,17 +11,18 @@ return { $dbh->do(q{INSERT IGNORE INTO letter (`module`, `code`, `branchcode`, `name`, `is_html`, `title`, `content`, `message_transport_type`, `lang`) VALUES ( 'members', 'OPAC_REG', '', 'New OPAC self-registration submitted', 1, 'New OPAC self-registration', '

New OPAC self-registration

-

Self-registration made by

+

Self-registration made:

', 'email', 'default') }); }, --- a/installer/data/mysql/en/mandatory/sample_notices.yml +++ a/installer/data/mysql/en/mandatory/sample_notices.yml @@ -1646,16 +1646,17 @@ tables: lang: default content: - "

New OPAC self-registration

" - - "

Self-registration made by

" + - "

Self-registration made:

" - "" - "

" --- a/installer/data/mysql/fr-FR/1-Obligatoire/sample_notices.sql +++ a/installer/data/mysql/fr-FR/1-Obligatoire/sample_notices.sql @@ -503,3 +503,19 @@ INSERT IGNORE INTO letter (module, code, name, title, content, message_transport [% END %] [% END %] ", 'email'); + +INSERT IGNORE INTO letter (`module`, `code`, `branchcode`, `name`, `is_html`, `title`, `content`, `message_transport_type`, `lang`) VALUES ( 'members', 'OPAC_REG', '', 'New OPAC self-registration submitted', 1, 'New OPAC self-registration','

New OPAC self-registration

+

Self-registration made:

+ +

', 'email', 'default') --