Fix an unstranslatable string in JavaScript
For an explanation, see: http://wiki.koha.org/doku.php?id=en:development:codingguidelines#translatable_text This bug blocks entirely serials module. It isn't possible to create/edit a subscription. Brocken JavaScript prevents Search for a vendor and Search for Biblio dialog box to pop-up. Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
This commit is contained in:
parent
c41a9cc218
commit
bfbd5dc61d
1 changed files with 1 additions and 1 deletions
|
@ -736,7 +736,7 @@ function display_example(expected){
|
|||
var whenmorethan3 = parseInt(document.f.whenmorethan3.value);
|
||||
var setto2 = parseInt(document.f.setto2.value);
|
||||
var setto3 = parseInt(document.f.setto3.value);
|
||||
var displaytext = _("Based on the information entered, the Numbering Pattern will look like this: <br \/><ul class=\"numpattern_preview\">");
|
||||
var displaytext = _("Based on the information entered, the Numbering Pattern will look like this: ") + "<br \/><ul class=\"numpattern_preview\">";
|
||||
if(startfrom3>0){
|
||||
var count=startfrom3-1;
|
||||
var count2=startfrom2;
|
||||
|
|
Loading…
Reference in a new issue