From f87085e65ec90c14cc7dd77a47658380e21f4645 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 3 Apr 2012 09:03:25 -0400 Subject: [PATCH] Bug 2733 - Can't print patron account Changing "print page" link to "print summary." I hope this will alleviate the suggstion that the option prints the current page. - Changed "Quick slip" to "Print quick slip" to make it consistent with the other options in the menu - Corrected the case of other text strings as required by Bug 2780. Signed-off-by: Katrin Fischer Signed-off-by: Paul Poulain --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc | 6 +++--- .../intranet-tmpl/prog/en/includes/members-toolbar.inc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc index 2cbe78d9b9..23c7de2de1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc @@ -61,10 +61,10 @@ function export_barcodes() { function yuiToolbar() { var printmenu = [ [% IF ( CAN_user_borrowers ) %] - { text: _("Print page"), onclick: {fn: function(){printx_window("page")}} }, + { text: _("Print summary"), onclick: {fn: function(){printx_window("page")}} }, [% END %] { text: _("Print slip"), onclick: {fn: function(){printx_window("slip")}} }, - { text: _("Quick slip"), onclick: {fn: function(){printx_window("qslip")}} } + { text: _("Print quick slip"), onclick: {fn: function(){printx_window("qslip")}} } ]; var moremenu = [ @@ -129,7 +129,7 @@ function export_barcodes() { [% IF ( CAN_user_borrowers ) %]
  • Change password
  • [% END %] [% END %]
  • Duplicate
  • -
  • Print page
  • +
  • Print summary
  • Print slip
  • Search to hold
  • Renew account
  • diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc index 99590d36e8..1b4c22dbed 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -52,9 +52,9 @@ function update_child() { } function yuiToolbar() { var printmenu = [ - { text: _("Print page"), onclick: {fn: function(){printx_window("page")}} }, + { text: _("Print summary"), onclick: {fn: function(){printx_window("page")}} }, { text: _("Print slip"), onclick: {fn: function(){printx_window("slip")}} }, - { text: _("Quick slip"), onclick: {fn: function(){printx_window("qslip")}} } + { text: _("Print quick slip"), onclick: {fn: function(){printx_window("qslip")}} } ]; var moremenu = [ @@ -117,7 +117,7 @@ function update_child() { [% IF ( adultborrower AND activeBorrowerRelationship ) %]
  • Add child
  • [% END %] [% IF CAN_user_staffaccess %]
  • Change password
  • [% END %]
  • Duplicate
  • -
  • Print page
  • +
  • Print summary
  • Print slip
  • Search to hold
  • Renew account
  • [% IF ( CAN_user_permissions ) %]
  • Set permissions
  • [% END %]
  • Delete
  • -- 2.39.2