Koha/koha-tmpl/opac-tmpl/prog/en/modules/opac-alert-subscribe.tt
Liz Rea 6398126f88 Bug 10776: fix awkward wording in subscription notification screen
to test:
- make a subscription available to be notified about
- log into the opac, click the subscriptions tab, then More details
- click "Subscribe to email notification on new issues"
- observe the text without the patch - there seems to be an extra "arrive?"
- apply the patch, refresh - wording should flow a bit better.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Fixes bad wording and works as described.
Passes all tests and QA script, template change only.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
2013-10-31 23:26:32 +00:00

43 lines
2.1 KiB
Text

[% USE Koha %]
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Serials
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="opac-alert-subscribe">
[% INCLUDE 'masthead.inc' %]
<div id="doc3" class="yui-t1">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<div id="useralertsubscribe" class="container"> [% IF ( typeissue ) %]
<h1 class="catalogue">Subscribe issue receive warning</h1>
<form action="opac-alert-subscribe.pl" method="post">
<p>Do you want to receive an email when a new issue of [% bibliotitle %] [% IF ( notes ) %]([% notes %])[% END %] arrives?</p>
<input type="hidden" name="externalid" value="[% externalid %]">
<input type="hidden" name="alerttype" value="issue">
<input type="hidden" name="biblionumber" value="[% biblionumber %]">
<input type="hidden" name="op" value="alert_confirmed">
<input type="submit" value="Yes">
<a href="opac-serial-issues.pl?biblionumber=[% biblionumber %]" >No</a>
</form>
[% END %]
[% IF ( typeissuecancel ) %]
<h1 class="catalogue">Unsubscribe</h1>
<form action="opac-alert-subscribe.pl" method="post">
<p>Please confirm that you do not want to receive email when a new issue arrives for this subscription</p>
[% bibliotitle %] [% IF ( notes ) %]([% notes %])[% END %] ?</p>
<input type="hidden" name="externalid" value="[% externalid %]">
<input type="hidden" name="alerttype" value="issue">
<input type="hidden" name="biblionumber" value="[% biblionumber %]">
<input type="hidden" name="op" value="cancel_confirmed">
<input type="submit" value="Yes" class="button">
<a href="opac-serial-issues.pl?biblionumber=[% biblionumber %]" class="button">No</a>
</form>
[% END %]</div>
</div>
</div>
</div>
[% INCLUDE 'opac-bottom.inc' %]