Browse Source

Bug 8942: Translation process breaks javascript

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

I tested most scripts affected by this patch and visually verified
all changes. Functionality is unaffected.
Signed-off-by: Mason James <mtj@kohaaloha.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
3.12.x
Fridolyn SOMERS 12 years ago
committed by Jared Camins-Esakov
parent
commit
714075d5c1
  1. 24
      koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc
  2. 2
      koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc
  3. 4
      koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc
  4. 2
      koha-tmpl/intranet-tmpl/prog/en/js/acq.js
  5. 8
      koha-tmpl/intranet-tmpl/prog/en/js/ajax.js
  6. 10
      koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt
  7. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt
  8. 8
      koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt
  9. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt
  10. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt
  11. 8
      koha-tmpl/intranet-tmpl/prog/en/modules/admin/item_circulation_alerts.tt
  12. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt
  13. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt
  14. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt
  15. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt
  16. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/process_koc.tt
  17. 8
      koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt
  18. 8
      koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt
  19. 8
      koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt
  20. 4
      koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt
  21. 8
      koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt
  22. 12
      koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt
  23. 10
      koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt
  24. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt
  25. 2
      koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt
  26. 6
      koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
  27. 4
      koha-tmpl/opac-tmpl/prog/en/modules/opac-results-grouped.tt
  28. 4
      koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt
  29. 2
      koha-tmpl/opac-tmpl/prog/en/modules/opac-review.tt
  30. 6
      koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt
  31. 4
      koha-tmpl/opac-tmpl/prog/en/modules/opac-suggestions.tt

24
koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc

@ -25,18 +25,18 @@ function Date_from_syspref(dstring) {
jQueryUI we expose the localization strings in the default configuration */
jQuery(function($){
$.datepicker.regional[''] = {
closeText: _('Done'),
prevText: _('Prev'),
nextText: _('Next'),
currentText: _('Today'),
monthNames: [_('January'),_('February'),_('March'),_('April'),_('May'),_('June'),
_('July'),_('August'),_('September'),_('October'),_('November'),_('December')],
monthNamesShort: [_('Jan'), _('Feb'), _('Mar'), _('Apr'), _('May'), _('Jun'),
_('Jul'), _('Aug'), _('Sep'), _('Oct'), _('Nov'), _('Dec')],
dayNames: [_('Sunday'), _('Monday'), _('Tuesday'), _('Wednesday'), _('Thursday'), _('Friday'), _('Saturday')],
dayNamesShort: [_('Sun'), _('Mon'), _('Tue'), _('Wed'), _('Thu'), _('Fri'), _('Sat')],
dayNamesMin: [_('Su'),_('Mo'),_('Tu'),_('We'),_('Th'),_('Fr'),_('Sa')],
weekHeader: _('Wk'),
closeText: _("Done"),
prevText: _("Prev"),
nextText: _("Next"),
currentText: _("Today"),
monthNames: [_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),
_("July"),_("August"),_("September"),_("October"),_("November"),_("December")],
monthNamesShort: [_("Jan"), _("Feb"), _("Mar"), _("Apr"), _("May"), _("Jun"),
_("Jul"), _("Aug"), _("Sep"), _("Oct"), _("Nov"), _("Dec")],
dayNames: [_("Sunday"), _("Monday"), _("Tuesday"), _("Wednesday"), _("Thursday"), _("Friday"), _("Saturday")],
dayNamesShort: [_("Sun"), _("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat")],
dayNamesMin: [_("Su"),_("Mo"),_("Tu"),_("We"),_("Th"),_("Fr"),_("Sa")],
weekHeader: _("Wk"),
dateFormat: '[% IF ( dateformat_us ) %]mm/dd/yy[% ELSIF ( dateformat_metric ) %]dd/mm/yy[% ELSE %]yy-mm-dd[% END %]',
firstDay: [% CalendarFirstDayOfWeek %],
isRTL: [% IF ( bidi ) %]true[% ELSE %]false[% END %],

2
koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc

@ -31,7 +31,7 @@ function confirm_deletion() {
if (count>0){
is_confirmed= alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.'));
} else{
is_confirmed= confirm(_('Are you sure you want to delete this record? '));
is_confirmed= confirm(_("Are you sure you want to delete this record? "));
}
if (is_confirmed) {

4
koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc

@ -3,14 +3,14 @@
//<![CDATA[
[% IF ( CAN_user_borrowers ) %]
function confirm_deletion() {
var is_confirmed = window.confirm(_('Are you sure you want to delete this patron? This cannot be undone.'));
var is_confirmed = window.confirm(_("Are you sure you want to delete this patron? This cannot be undone."));
if (is_confirmed) {
window.location='/cgi-bin/koha/members/deletemem.pl?member=[% borrowernumber %]';
}
}
[% IF ( is_child ) %]function confirm_updatechild() {
var is_confirmed = window.confirm(_('Are you sure you want to update this child to an Adult category? This cannot be undone.'));
var is_confirmed = window.confirm(_("Are you sure you want to update this child to an Adult category? This cannot be undone."));
if (is_confirmed) {
window.location='/cgi-bin/koha/members/update-child.pl?op=update&borrowernumber=[% borrowernumber %]&catcode=[% catcode %]&catcode_multi=[% CATCODE_MULTI %]';
}

2
koha-tmpl/intranet-tmpl/prog/en/js/acq.js

@ -384,7 +384,7 @@ function closeandprint(bg){
if(document.location = '/cgi-bin/koha/acqui/basketgroup.pl?op=closeandprint&amp;basketgroupid=' + bg ){
setTimeout("window.location.reload();",3000);
}else{
alert(_('Error downloading the file'));
alert(_("Error downloading the file"));
}
}

8
koha-tmpl/intranet-tmpl/prog/en/js/ajax.js

@ -15,24 +15,24 @@ KOHA.AJAX = {
KOHA.xhr = xhr;
if ( !xhr.getResponseHeader( 'content-type' ).match( 'application/json' ) ) {
// Something really failed
humanMsg.displayAlert( MSG_INTERNAL_SERVER_ERROR );
humanMsg.displayAlert( _("Internal Server Error, please reload the page") );
return;
}
var error = eval( '(' + xhr.responseText + ')' );
if ( error.type == 'auth' ) {
humanMsg.displayMsg( MSG_SESSION_TIMED_OUT );
humanMsg.displayMsg( _("You need to log in again, your session has timed out") );
}
if ( callback ) {
callback( error );
} else {
humanMsg.displayAlert( MSG_DATA_NOT_SAVED );
humanMsg.displayAlert( _("Error; your data might not have been saved") );
}
},
MarkRunning: function ( selector, text ) {
text = text || MSG_LOADING;
text = text || _("Loading...");
$( selector )
.attr( 'disabled', 'disabled' )
.each( function () {

10
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt

@ -36,26 +36,26 @@
<script type="text/javascript">
//<![CDATA[
function confirm_close() {
var is_confirmed = confirm(_('Are you sure you want to close this basket?'));
var is_confirmed = confirm(_("Are you sure you want to close this basket?"));
if (is_confirmed) {
window.location = "[% script_name %]?op=close&basketno=[% basketno %]";
}
}
function confirm_deletion() {
var is_confirmed = confirm(_('Are you sure you want to delete this basket?'));
var is_confirmed = confirm(_("Are you sure you want to delete this basket?"));
if (is_confirmed) {
window.location = "[% script_name %]?op=delete_confirm&basketno=[% basketno %]&booksellerid=[% booksellerid %]";
}
}
function confirm_delete_item(ordernumber, biblionumber) {
var is_confirmed = confirm(_('Are you sure you want to delete this order ?'));
var is_confirmed = confirm(_("Are you sure you want to delete this order ?"));
if (is_confirmed) {
window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno=[% basketno %]&quantity=0&biblionumber="+biblionumber;
}
}
function confirm_delete_biblio(ordernumber, biblionumber) {
var is_confirmed = confirm(_('Are you sure you want to delete this catalog record and order ?'));
var is_confirmed = confirm(_("Are you sure you want to delete this catalog record and order ?"));
if (is_confirmed) {
window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno=[% basketno %]&quantity=0&biblionumber="+biblionumber+"&delbiblio=1";
}
@ -79,7 +79,7 @@
<script type="text/javascript">
//<![CDATA[
function confirm_reopen(skip) {
var is_confirmed = skip || confirm(_('Are you sure you want to reopen this basket?'));
var is_confirmed = skip || confirm(_("Are you sure you want to reopen this basket?"));
if (is_confirmed) {
window.location = "[% script_name %]?op=reopen&basketno=[% basketno %]";
}

2
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt

@ -90,7 +90,7 @@ function Check(ff) {
[% IF (AcqCreateItemOrdering) %]
if(check_additem('[% UniqueItemFields %]') == false) {
alert(_('Duplicate values detected. Please correct the errors and resubmit.') );
alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
if(tobedeleted) {
$(lastitemblock).appendTo('#outeritemblock');
}

8
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt

@ -62,6 +62,14 @@ function IEEventHandler_KeyDown() {
if(tobedeleted){
$(lastitemblock).remove();
}
if(check_additem('[% UniqueItemFields %]') == false){
alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
if(tobedeleted) {
$(lastitemblock).appendTo("#outeritemblock");
}
return false;
};
[% END %]
return true;

4
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt

@ -78,14 +78,14 @@
<script type="text/javascript">
//<![CDATA[
function confirm_delete_item(ordernumber, basketno, biblionumber) {
var is_confirmed = confirm(_('Are you sure you want to delete this order ?'));
var is_confirmed = confirm(_("Are you sure you want to delete this order ?"));
if (is_confirmed) {
window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno="+basketno+"&quantity=0&biblionumber="+biblionumber+"&invoiceid=[% invoiceid %]";
}
}
function confirm_delete_biblio(ordernumber, basketno, biblionumber) {
var is_confirmed = confirm(_('Are you sure you want to delete this catalog record and order ?'));
var is_confirmed = confirm(_("Are you sure you want to delete this catalog record and order ?"));
if (is_confirmed) {
window.location = "addorder.pl?ordernumber="+ordernumber+"&basketno="+basketno+"&quantity=0&biblionumber="+biblionumber+"&delbiblio=1&invoiceid=[% invoiceid %]";
}

4
koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt

@ -82,7 +82,7 @@ $(document).ready(function() {
var filename = $(this).val();
if ( ! /(?:\.csv|\.sql|\.ods|\.xml)$/.test(filename)) {
$(this).css("background-color","yellow");
alert(_('Please select an ods or xml file'));
alert(_("Please select an ods or xml file"));
$(this).val("");
$(this).css("background-color","white");
}
@ -110,7 +110,7 @@ $(document).ready(function() {
return false;
}
obj.css("background-color","yellow");
alert(_('Please select an spreadsheet (csv, ods, xml) or sql file'));
alert(_("Please select an spreadsheet (csv, ods, xml) or sql file"));
obj.val("");
obj.css("background-color","white");
return false;

8
koha-tmpl/intranet-tmpl/prog/en/modules/admin/item_circulation_alerts.tt

@ -42,10 +42,10 @@ var $branch = "[% branch %]";
$(function(){
$('#alerttabs').tabs();
var blocked = _('Blocked!');
var saving = _('Saving...');
var disabledForAll = _('Disabled for all');
var disabledForCurrent = _('Disabled for') + ' ' + $branch;
var blocked = _("Blocked!");
var saving = _("Saving...");
var disabledForAll = _("Disabled for all");
var disabledForCurrent = _("Disabled for") + ' ' + $branch;
$('#branch_selector input:submit').hide();
$('#branch').change(function(){

2
koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt

@ -73,7 +73,7 @@ $(document).ready(function(){
}
// If the field is not repeatable, we check if it already exists in the result table
if (canbeadded == false) {
alert(_('The field is non-repeatable and already exists in the destination record. Therefore, you cannot add it.'));
alert(_("The field is non-repeatable and already exists in the destination record. Therefore, you cannot add it."));
pField.checked = 0;
} else {

4
koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt

@ -64,7 +64,7 @@
return(document.layouts.action[selected[0]].value);
}
else {
alert(_('Please select only one ')+'[% label_element %]'+_(' to')+op+'.');
alert(_("Please select only one ")+"[% label_element %]"+_(" to")+op+".");
return (-1);
}
}
@ -73,7 +73,7 @@
return(document.layouts.action.value);
}
};
alert(_('Please select a ')+'[% label_element %].');
alert(_("Please select a ")+"[% label_element %].");
return (-1);
};
//]]>

4
koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt

@ -39,14 +39,14 @@ $(document).ready(function() {
[% IF ( picture ) %]
// new YAHOO.widget.Button("delpicture"); // FIXME: formatting mismatch between YUI and normal button
$('#delpicture').click(function(){
return confirm(_('Are you sure you want to delete this patron image? This cannot be undone.'));
return confirm(_("Are you sure you want to delete this patron image? This cannot be undone."));
});
$('#manage-patron-image').find("input[value*=Upload]").click(function(){
if($("#uploadfile").val() == ""){
alert(_("Please choose a file to upload"));
return false;
}
return confirm(_('Are you sure you want to replace the current patron image? This cannot be undone.'));
return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone."));
});[% END %]
$("#renew_all" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
$("#CheckAllitems" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });

4
koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt

@ -7,8 +7,8 @@
//<![CDATA[
$(document).ready(function() {
$("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_('Uncheck all')+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_('Check all')+"<\/a>");
$("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_("Uncheck all")+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/offline_circ/list.pl\">"+_("Check all")+"<\/a>");
$('#CheckNone').click(function() {
$("#operations").unCheckCheckboxes();
return false;

2
koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/process_koc.tt

@ -18,7 +18,7 @@ function CheckUpload(f){
}
function CheckForm(f) {
if (f.uploadedfileid.value == '') {
alert(_('Please upload a file first.'));
alert(_("Please upload a file first."));
} else {
$("#fileuploadstatus").hide();
$("#fileuploadform").slideUp();

8
koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt

@ -38,7 +38,7 @@
}
}
if (batches.length < 1) {
alert(_('Please select at least one batch to export.'));
alert(_("Please select at least one batch to export."));
return; // no batch selected
}
getstr = batches.join("&");
@ -47,7 +47,7 @@
getstr = "batch_id="+document.layouts.action.value;
}
else {
alert(_('Please select at least one batch to export.'));
alert(_("Please select at least one batch to export."));
return; // no batch selected
}
return GB_showCenter('Export Patron Cards', "/cgi-bin/koha/patroncards/print.pl?" + getstr, 700, 800);
@ -64,7 +64,7 @@
return(document.layouts.action[selected[0]].value);
}
else {
alert(_('Please select only one ')+'[% card_element %]'+_(' to ') + op + '.');
alert(_("Please select only one ")+"[% card_element %]"+_(" to ") + op + ".");
return (-1);
}
}
@ -73,7 +73,7 @@
return(document.layouts.action.value);
}
};
alert(_('Please select a ')+'[% card_element %].');
alert(_("Please select a ")+"[% card_element %].");
return (-1);
};
//]]>

8
koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt

@ -97,16 +97,16 @@ function checkMultiHold() {
var msg = '';
switch (override_items[itemnumber].holdallowed) {
case 0: msg = _( 'This item normally cannot be put on hold.' ); break;
case 1: msg = _( 'This item normally cannot be put on hold except for patrons from ' ) + override_items[itemnumber].homebranch + '.'; break;
case 0: msg = _("This item normally cannot be put on hold."); break;
case 1: msg = _("This item normally cannot be put on hold except for patrons from ") + override_items[itemnumber].homebranch + "."; break;
}
msg += "\n\n" + _( 'Place hold on this item?' );
msg += "\n\n" + _("Place hold on this item?");
return confirm(msg);
});
$("input.warning").click(function() {
return confirm( _( 'None of these items can normally be put on hold for this patron.' ) + "\n\n" + _( 'Place hold?' ) );
return confirm( _("None of these items can normally be put on hold for this patron.") + "\n\n" + _("Place hold?") );
});
$("#requestany").click(function() {
if(this.checked){

8
koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt

@ -38,7 +38,7 @@
var selected = $("input:checked");
if (selected.length == 0) {
alert(_('Please select at least one item to export.'));
alert(_("Please select at least one item to export."));
return false;
}
@ -64,7 +64,7 @@
// Checks if the form can be sent (at least one checkbox must be checked)
function checkForm() {
if ($("input:checked").length == 0) {
alert(_('Please select at least one item.'));
alert(_("Please select at least one item."));
return false;
}
}
@ -97,13 +97,13 @@
// Checks if the beginning date is valid
if (!parseInt(beginDate)) {
alert(_('The beginning date is missing or invalid.'));
alert(_("The beginning date is missing or invalid."));
return false;
}
// Checks if the ending date is valid
if (!parseInt(endDate)) {
alert(_('The ending date is missing or invalid.'));
alert(_("The ending date is missing or invalid."));
return false;
}

4
koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt

@ -48,13 +48,13 @@ td input,td input[type="submit"] { font-size: 85%; padding: 1px; }
}
}
var success_approve = function(tag){
// window.alert(_('AJAX approved tag: ') + tag);
// window.alert(_("AJAX approved tag: ") + tag);
};
var failure_approve = function(tag){
window.alert(_("AJAX failed to approve tag: ") + tag);
};
var success_reject = function(tag){
// window.alert(_('AJAX rejected tag: ') + tag);
// window.alert(_("AJAX rejected tag: ") + tag);
};
var failure_reject = function(tag){
window.alert(_("AJAX failed to reject tag: ") + tag);

8
koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt

@ -56,16 +56,16 @@
$('#showHolidayType').val(holidayType);
if (holidayType == 'exception') {
$("#showOperationDelLabel").html(_('Delete this exception.'));
$("#showOperationDelLabel").html(_("Delete this exception."));
$("#holtype").attr("class","key exception").html(_("Holiday exception"));
} else if(holidayType == 'weekday') {
$("#showOperationDelLabel").html(_('Delete this holiday.'));
$("#showOperationDelLabel").html(_("Delete this holiday."));
$("#holtype").attr("class","key repeatableweekly").html(_("Holiday repeating weekly"));
} else if(holidayType == 'daymonth') {
$("#showOperationDelLabel").html(_('Delete this holiday.'));
$("#showOperationDelLabel").html(_("Delete this holiday."));
$("#holtype").attr("class","key repeatableyearly").html(_("Holiday repeating yearly"));
} else {
$("#showOperationDelLabel").html(_('Delete this holiday.'));
$("#showOperationDelLabel").html(_("Delete this holiday."));
$("#holtype").attr("class","key holiday").html(_("Unique holiday"));
}

12
koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt

@ -237,12 +237,12 @@
var fileSizeInK = Math.round(evt.target.files[0].size/1024);
if (!fileType.match(/comma-separated-values|csv|excel/i)) {
alert(_('Uploads limited to csv. Incorrect filetype: ')+fileType);
alert(_("Uploads limited to csv. Incorrect filetype: ")+fileType);
parent.location='quotes-upload.pl';
return;
}
if (fileSizeInK > 512) {
if (!confirm(evt.target.files[0].name+' '+fileSizeInK+_(' KB Do you really want to upload this file?'))) {
if (!confirm(evt.target.files[0].name+' '+fileSizeInK+_(" KB Do you really want to upload this file?"))) {
parent.location='quotes-upload.pl';
return;
}
@ -268,11 +268,11 @@
success : function(){
var response = JSON.parse(jqXHR.responseText);
if (response.success) {
alert(response.records+_(' quotes saved.'));
alert(response.records+_(" quotes saved."));
window.location.reload(true); // is this the best route?
}
else {
alert(response.records+_(' quotes saved, but an error has occurred. Please ask your administrator to check the server log for more details.'));
alert(response.records+_(" quotes saved, but an error has occurred. Please ask your administrator to check the server log for more details."));
window.location.reload(true); // is this the best route?
}
},
@ -284,9 +284,9 @@
return this.id;
}).get().join(', ');
if (!idsToDelete) {
alert(_('Please select a quote(s) by clicking the quote id(s) you desire to delete.'));
alert(_("Please select a quote(s) by clicking the quote id(s) you desire to delete."));
}
else if (confirm(_('Are you sure you wish to delete quote(s) ')+idsToDelete+'?')) {
else if (confirm(_("Are you sure you wish to delete quote(s) ")+idsToDelete+"?")) {
oTable.$('.selected').each(function(){
oTable.fnDeleteRow(this);
});

10
koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt

@ -11,7 +11,7 @@
<script type="text/javascript">
//<![CDATA[
var oTable; /* oTable needs to be global */
var sEmptyTable = _('No quotes available. Please use the "Add quote" button to add a quote.'); /* override the default message in datatables-strings.inc */
var sEmptyTable = _("No quotes available. Please use the \"Add quote\" button to add a quote."); /* override the default message in datatables-strings.inc */
$(document).ready(function() {
/* NOTE: This is an ajax-source datatable and *not* a server-side sourced datatable. */
/* See the datatable docs if you don't understand this difference. */
@ -116,11 +116,11 @@
});
}
else {
alert(_('Please supply both the text and source of the quote before saving.'));
alert(_("Please supply both the text and source of the quote before saving."));
}
}
else if (e.keyCode == 27) {
if (confirm(_('Are you sure you want to cancel adding this quote?'))) {
if (confirm(_("Are you sure you want to cancel adding this quote?"))) {
oTable.fnDeleteRow(node);
}
else {
@ -149,9 +149,9 @@
return this.id;
}).get().join(', ');
if (!idsToDelete) {
alert(_('Please select a quote(s) by clicking the quote id(s) you desire to delete.'));
alert(_("Please select a quote(s) by clicking the quote id(s) you desire to delete."));
}
else if (confirm(_('Are you sure you wish to delete quote(s) ')+idsToDelete+'?')) {
else if (confirm(_("Are you sure you wish to delete quote(s) ")+idsToDelete+"?")) {
oTable.$('.selected').each(function(){
var quoteID = $(this).attr('id');
$.ajax({

2
koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt

@ -21,7 +21,7 @@ $(document).ready(function(){
});
function CheckForm(f) {
if ($("#fileToUpload").value == '') {
alert(_('Please upload a file first.'));
alert(_("Please upload a file first."));
} else {
return submitBackgroundJob(f);
}

2
koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt

@ -20,7 +20,7 @@ $(document).ready(function(){
});
function CheckForm(f) {
if ($("#fileToUpload").value == '') {
alert(_('Please upload a file first.'));
alert(_("Please upload a file first."));
} else {
return submitBackgroundJob(f);
}

6
koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt

@ -9,8 +9,8 @@ var MSG_NO_ITEM_SELECTED = _("Nothing is selected.");
$(document).ready(function(){
$("#addbarcode").focus();
$("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_('Clear all')+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_('Select all')+"<\/a>");
$("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Select all")+"<\/a>");
$("#CheckAll").click(function(){
$(".checkboxed").checkCheckboxes();
return false;
@ -37,7 +37,7 @@ $(document).ready(function(){
var checkboxes = $("input:checkbox:checked");
var nbCheckbox = checkboxes.length;
if (nbCheckbox != 2) {
alert(_('Two records must be selected for merging.'));
alert(_("Two records must be selected for merging."));
} else {
location.href='/cgi-bin/koha/cataloguing/merge.pl?biblionumber=' + checkboxes[0].value + '&amp;biblionumber=' + checkboxes[1].value;
}

4
koha-tmpl/opac-tmpl/prog/en/modules/opac-results-grouped.tt

@ -40,12 +40,12 @@ $(document).ready(function(){
var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
[% IF ( loggedinusername ) %]if (vShelfAdd()) {
Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?selectedshelf='+shelfnumber+'&' + vShelfAdd());
}[% ELSE %] alert(_('You must be logged in to create or add to Lists')); [% END %]
}[% ELSE %] alert(_("You must be logged in to create or add to Lists")); [% END %]
return false;
} else if($("#addto").find("option:selected").attr("value") == "newlist"){
[% IF ( loggedinusername ) %]if (vShelfAdd()) {
Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?newshelf=1&' + vShelfAdd());
}[% ELSE %] alert(_('You must be logged in to create or add to Lists')); [% END %]
}[% ELSE %] alert(_("You must be logged in to create or add to Lists")); [% END %]
return false;
}
if($("#addto").find("option:selected").attr("value") == "addtocart"){

4
koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt

@ -178,12 +178,12 @@ $(document).ready(function(){
} else if($("#addto").find("option:selected").attr("value") == "newlist"){
[% IF ( loggedinusername ) %]if (vShelfAdd()) {
Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?newshelf=1&' + vShelfAdd());
}[% ELSE %] alert(_('You must be logged in to create or add to lists')); [% END %]
}[% ELSE %] alert(_("You must be logged in to create or add to lists")); [% END %]
return false;
} else if($("#addto").find("option:selected").attr("value") == "morelists"){
[% IF ( loggedinusername ) %]if (vShelfAdd()) {
Dopop('/cgi-bin/koha/opac-addbybiblionumber.pl?' + vShelfAdd());
}[% ELSE %] alert(_('You must be logged in to create or add to lists')); [% END %]
}[% ELSE %] alert(_("You must be logged in to create or add to lists")); [% END %]
return false;
}
if($("#addto").find("option:selected").attr("value") == "addtocart" || $("#addto").attr("class") == "addtocart"){

2
koha-tmpl/opac-tmpl/prog/en/modules/opac-review.tt

@ -8,7 +8,7 @@
$(document).ready(function() {
var inject_old = function(comment) {
[% IF ( reviewid ) %]
[% IF ( cgi_debug ) %]alert(_('injecting OLD comment: ')+comment);[% END %]
[% IF ( cgi_debug ) %]alert(_("injecting OLD comment: ")+comment);[% END %]
parent.opener.$('#c[% reviewid %] p').prev("small").prev("h5").html(_("Your edited comment (preview, pending approval)"));
parent.opener.$('#c[% reviewid %] p').html(comment);
parent.opener.$('#c[% reviewid %] p').append(" <a href=\"#comment\" onclick=\"Dopop(\'/cgi-bin/koha/opac-review.pl?biblionumber=[% biblionumber | uri %]&amp;reviewid=[% reviewid | uri%]\');\">"+_("Edit")+"<\/a>");

6
koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt

@ -82,11 +82,11 @@ function enableCheckboxActions(){
$(function() {
[% IF ( opacbookbag ) %]$(".addtocart").show();[% END %]
$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear all')+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select all')+"<\/a>");
$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_("Clear all")+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_("Select all")+"<\/a>");
$("a.print").show();
[% IF ( opacuserlogin ) %][% IF ( RequestOnOpac ) %]$("#placehold").html("<a href=\"#\" class=\"hold tag_hides disabled\">"+_('Place hold')+"<\/a>");
[% IF ( opacuserlogin ) %][% IF ( RequestOnOpac ) %]$("#placehold").html("<a href=\"#\" class=\"hold tag_hides disabled\">"+_("Place hold")+"<\/a>");
$("#selections-toolbar a.hold").click(function(){
holdSelections();
return false;

4
koha-tmpl/opac-tmpl/prog/en/modules/opac-suggestions.tt

@ -44,8 +44,8 @@ $.tablesorter.addParser({
[% END %]
}
});
[% IF ( loggedinusername ) %]$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear all')+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select all')+"<\/a>");
[% IF ( loggedinusername ) %]$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_("Clear all")+"<\/a>");
$("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_("Select all")+"<\/a>");
$("#CheckAll").click(function(){
$(".checkboxed").checkCheckboxes();
enableCheckboxActions();

Loading…
Cancel
Save