Bugzilla – Attachment 3413 Details for
Bug 5889
Allow message names to be translatable
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for 3.2.x
0001-Bug-5889-Messages-name-in-english-for-notifications-.patch (text/plain), 7.53 KB, created by
Julian Maurice
on 2011-03-23 11:08:15 UTC
(
hide
)
Description:
Patch for 3.2.x
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2011-03-23 11:08:15 UTC
Size:
7.53 KB
patch
obsolete
>From 7c41567ceb72ea2ab8641b77a1d0a1053abbccd7 Mon Sep 17 00:00:00 2001 >From: Sophie Meynieux <sophie.meynieux@biblibre.com> >Date: Wed, 2 Mar 2011 17:20:36 +0100 >Subject: [PATCH] [3.2.x] Bug 5889: Messages name in english for notifications on public interface. > >Modification of template to allow multilanguage support. Alsa fixing columns overflow. > >BibLibre bug #5939 >--- > C4/Form/MessagingPreferences.pm | 1 + > admin/categorie.pl | 10 ++++++---- > .../prog/en/includes/messaging-preference-form.inc | 12 +++++++++--- > .../prog/en/modules/admin/categorie.tmpl | 8 +++++++- > .../opac-tmpl/prog/en/modules/opac-messaging.tmpl | 12 +++++++++--- > 5 files changed, 32 insertions(+), 11 deletions(-) > >diff --git a/C4/Form/MessagingPreferences.pm b/C4/Form/MessagingPreferences.pm >index 22b2048..82f0da7 100644 >--- a/C4/Form/MessagingPreferences.pm >+++ b/C4/Form/MessagingPreferences.pm >@@ -122,6 +122,7 @@ sub set_form_values { > my $messaging_options = C4::Members::Messaging::GetMessagingOptions(); > PREF: foreach my $option ( @$messaging_options ) { > my $pref = C4::Members::Messaging::GetMessagingPreferences( { %{ $target_params }, message_name => $option->{'message_name'} } ); >+ $option->{ $option->{'message_name'} } = 1; > # make a hashref of the days, selecting one. > if ( $option->{'takes_days'} ) { > my $days_in_advance = $pref->{'days_in_advance'} ? $pref->{'days_in_advance'} : 0; >diff --git a/admin/categorie.pl b/admin/categorie.pl >index d804fe6..4a5d683 100755 >--- a/admin/categorie.pl >+++ b/admin/categorie.pl >@@ -239,10 +239,12 @@ sub _get_brief_messaging_prefs { > PREF: foreach my $option ( @$messaging_options ) { > my $pref = C4::Members::Messaging::GetMessagingPreferences( { categorycode => $categorycode, > message_name => $option->{'message_name'} } ); >- next unless @{$pref->{'transports'}}; >- my $brief_pref = { message_attribute_id => $option->{'message_attribute_id'}, >- message_name => $option->{'message_name'}, >- }; >+ next unless $pref->{'transports'}; >+ my $brief_pref = { >+ message_attribute_id => $option->{'message_attribute_id'}, >+ message_name => $option->{'message_name'}, >+ $option->{'message_name'} => 1 >+ }; > foreach my $transport ( @{$pref->{'transports'}} ) { > push @{ $brief_pref->{'transports'} }, { transport => $transport }; > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc >index 1655afc..47a91f2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/messaging-preference-form.inc >@@ -27,7 +27,13 @@ > </tr> > <!-- TMPL_LOOP name="messaging_preferences" --> > <tr> >- <td><!-- TMPL_VAR NAME="message_name" --></td> >+ <td><!-- TMPL_IF NAME="Item DUE" -->Item DUE >+ <!-- TMPL_ELSIF NAME="Advance Notice" -->Advance Notice >+ <!-- TMPL_ELSIF NAME="Upcoming Events" -->Upcoming Events >+ <!-- TMPL_ELSIF NAME="Hold Filled" -->Hold Filled >+ <!-- TMPL_ELSIF NAME="Item Check-in" -->Item Check-in >+ <!-- TMPL_ELSIF NAME="Item Checkout" -->Item Checkout >+ <!-- TMPL_ELSE -->Unknown <!-- /TMPL_IF --></td> > <!-- TMPL_IF NAME="takes_days" --> > <td> > <!-- TMPL_IF NAME="messaging_form_inactive" --> >@@ -45,7 +51,7 @@ > <!-- TMPL_ELSE --> > <td>-</td> > <!-- /TMPL_IF --> >- <!-- TMPL_IF NAME="transport-sms" --> >+<!-- <!-- TMPL_IF NAME="transport-sms" --> > <!-- TMPL_IF NAME="SMSSendDriver" --><td> > <!-- TMPL_IF NAME="messaging_form_inactive" --> > <input type="checkbox" >@@ -61,7 +67,7 @@ > </td><!-- /TMPL_IF --> > <!-- TMPL_ELSE --> > <td>-</td> >- <!-- /TMPL_IF --> >+ <!-- /TMPL_IF --> --> > > <!-- TMPL_IF NAME="transport-email" --> > <td> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tmpl >index 575802e..b30763e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tmpl >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tmpl >@@ -298,7 +298,13 @@ Confirm Deletion of Category <!-- TMPL_VAR NAME="categorycode" escape="html" --> > <td> > <!-- TMPL_IF NAME="messaging_prefs" --> > <!-- TMPL_LOOP NAME="messaging_prefs" --> >- <!-- TMPL_VAR NAME="message_name" --> : >+ <!-- TMPL_IF NAME="Item DUE" -->Item DUE >+ <!-- TMPL_ELSIF NAME="Advance Notice" -->Advance Notice >+ <!-- TMPL_ELSIF NAME="Upcoming Events" -->Upcoming Events >+ <!-- TMPL_ELSIF NAME="Hold Filled" -->Hold Filled >+ <!-- TMPL_ELSIF NAME="Item Check-in" -->Item Check-in >+ <!-- TMPL_ELSIF NAME="Item Checkout" -->Item Checkout >+ <!-- TMPL_ELSE -->Unknown <!-- /TMPL_IF --> : > <!-- TMPL_LOOP NAME="transports" --> > <!-- TMPL_VAR NAME="transport" --> > <!-- /TMPL_LOOP --> >diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-messaging.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-messaging.tmpl >index 0e0543c..d2489ce 100644 >--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-messaging.tmpl >+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-messaging.tmpl >@@ -39,7 +39,13 @@ > <tr><th> </th><th>Days in advance</th><!-- TMPL_IF NAME="SMSSendDriver" --><th>SMS</th><!-- /TMPL_IF --><th>Email</th><th>Digests only?</th><!-- <th>RSS</th> --><th>Do not notify</th></tr> > <!-- TMPL_LOOP name="messaging_preferences" --> > <tr> >- <td><!-- TMPL_VAR NAME="message_name" --></td> >+ <td><!-- TMPL_IF NAME="Item DUE" -->Item DUE >+ <!-- TMPL_ELSIF NAME="Advance Notice" -->Advance Notice >+ <!-- TMPL_ELSIF NAME="Upcoming Events" -->Upcoming Events >+ <!-- TMPL_ELSIF NAME="Hold Filled" -->Hold Filled >+ <!-- TMPL_ELSIF NAME="Item Check-in" -->Item Check-in >+ <!-- TMPL_ELSIF NAME="Item Checkout" -->Item Checkout >+ <!-- TMPL_ELSE -->Unknown <!-- /TMPL_IF --></td> > <!-- TMPL_IF NAME="takes_days" --> > <td><select name="<!-- TMPL_VAR NAME="message_attribute_id" -->-DAYS"> > <!-- TMPL_LOOP name="select_days" --> >@@ -52,14 +58,14 @@ > <!-- TMPL_ELSE --> > <td>-</td> > <!-- /TMPL_IF --> >- <!-- TMPL_IF NAME="transport-sms" --> >+<!-- <!-- TMPL_IF NAME="transport-sms" --> > <!-- TMPL_IF NAME="SMSSendDriver" --><td><input type="checkbox" > id="sms<!-- TMPL_VAR NAME="message_attribute_id" -->" > name="<!-- TMPL_VAR NAME="message_attribute_id" -->" > value="sms" <!-- TMPL_VAR NAME="transport-sms" --> onclick = "document.opacmessaging.none<!-- TMPL_VAR NAME="message_attribute_id" -->.checked=false;" /></td><!-- /TMPL_IF --> > <!-- TMPL_ELSE --> > <td>-</td> >- <!-- /TMPL_IF --> >+ <!-- /TMPL_IF --> --> > > <!-- TMPL_IF NAME="transport-email" --> > <td><input type="checkbox" >-- >1.7.4.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 5889
:
3333
|
3413
|
3999
|
4090