i18n updates to javascript files and related templates

This commit is contained in:
tworrall 2013-06-11 12:25:01 -04:00
parent 57c962e82a
commit d74176f18d
40 changed files with 373 additions and 106 deletions

View file

@ -13,6 +13,7 @@ var menuManagement = {
// Add variables from menupage template
mergeFromTemplate: function() {
$.extend(this, menuManagementData);
$.extend(this, i18nStrings);
},
// Create references to frequently used elements for convenience
@ -30,7 +31,7 @@ var menuManagement = {
this.menuItemsList.addClass('dragNdrop');
menuItems.attr('title', 'Drag and drop to reorder menu items');
menuItems.attr('title', menuManagement.dragDropMenus);
@ -95,7 +96,7 @@ var menuManagement = {
ui.item.appendTo(menuItems);
}
alert('Reordering of menu items failed.');
alert(menuManagement.reorderingFailed);
}
}
});