created language independant prompt for resource/activity deletion
resource_class.prototype.delete_button = function() {
if (this.debug)YAHOO.log("Deleteing "+this.getEl().id+"from parent "+this.parentObj.getEl().id);
- if (!confirm('Are you sure you wish to delete this '+this.is+"?")) {
+ if (!confirm(main.portal.strings['deletecheck'].replace(/_var_/,main.portal.strings[this.is]+" "+this.id))) {
return false;
}