Index: lams_admin/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -r28efddc5ed11e578dfac7c8faa35886e5d83b914 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_admin/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 28efddc5ed11e578dfac7c8faa35886e5d83b914)
+++ lams_admin/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -632,6 +632,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
sysadmin.maintain.session.name =Name
congfig.header.antivirus =Antivirus
config.av.enable =Enable antivirus scanning on files upload
Index: lams_admin/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r28efddc5ed11e578dfac7c8faa35886e5d83b914 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_admin/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 28efddc5ed11e578dfac7c8faa35886e5d83b914)
+++ lams_admin/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -632,6 +632,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
sysadmin.maintain.session.name =Name
congfig.header.antivirus =Antivirus
config.av.enable =Enable antivirus scanning on files upload
Index: lams_admin/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_admin/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_admin/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_central/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -r81e4f5489c431c5e9ff66769f43ebe9b14d36c1a -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_central/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 81e4f5489c431c5e9ff66769f43ebe9b14d36c1a)
+++ lams_central/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -824,6 +824,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.export.date =Exported on:
outcome.export =Export
outcome.import =Import
Index: lams_central/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r7ba17e82a4cd08db748536b39aef80a4f1c03027 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_central/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 7ba17e82a4cd08db748536b39aef80a4f1c03027)
+++ lams_central/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -826,6 +826,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.export.date =Exported on:
outcome.export =Export
outcome.import =Import
Index: lams_central/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_central/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_central/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_gradebook/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_gradebook/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_gradebook/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -122,6 +122,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
outcome.result.not.set =not set
outcome.result.error =Error!
Index: lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -rb0092dbda1966006748ebd8c44ff0ca0c9292ed0 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision b0092dbda1966006748ebd8c44ff0ca0c9292ed0)
+++ lams_gradebook/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -122,6 +122,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.result.not.set =not set
outcome.result.error =Error!
gradebook.columntitle.attempt =Attempt #
Index: lams_gradebook/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_gradebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_gradebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_learning/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_learning/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_learning/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -189,6 +189,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
button.kumalive.poll.chart.switch =Switch chart
Index: lams_learning/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r2d9cfa9d7527e4e21780f5a11da3a7e961eeab05 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_learning/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 2d9cfa9d7527e4e21780f5a11da3a7e961eeab05)
+++ lams_learning/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -189,6 +189,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
button.kumalive.poll.chart.switch =Switch chart
Index: lams_learning/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_learning/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_learning/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_monitoring/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_monitoring/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_monitoring/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -476,6 +476,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_monitoring/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r27fccb2c00d6a314ef9aee9db5436987090aca1e -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_monitoring/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 27fccb2c00d6a314ef9aee9db5436987090aca1e)
+++ lams_monitoring/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -476,6 +476,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 470 labels for en AU =====
Index: lams_monitoring/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_monitoring/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_monitoring/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_assessment/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -r28efddc5ed11e578dfac7c8faa35886e5d83b914 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_assessment/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 28efddc5ed11e578dfac7c8faa35886e5d83b914)
+++ lams_tool_assessment/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -343,6 +343,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
authoring.fla.branch.mapping.ordered.asc =Start with branches mapped to highest ordered answers
warn.tool.output.change.none =This will delete all existing marks for this activity. Are you sure?
output.desc.none =No score
Index: lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r28efddc5ed11e578dfac7c8faa35886e5d83b914 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 28efddc5ed11e578dfac7c8faa35886e5d83b914)
+++ lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -343,6 +343,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
authoring.fla.branch.mapping.ordered.asc =Start with branches mapped to highest ordered answers
warn.tool.output.change.none =This will delete all existing marks for this activity. Are you sure?
output.desc.none =No score
Index: lams_tool_assessment/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_assessment/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_assessment/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_chat/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_chat/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_chat/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -121,6 +121,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_chat/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r2aa8b406f4e5f4f9063149d708ef7b46e2d191a7 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_chat/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 2aa8b406f4e5f4f9063149d708ef7b46e2d191a7)
+++ lams_tool_chat/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -121,6 +121,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 115 labels for en AU =====
Index: lams_tool_chat/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_chat/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_chat/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_daco/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_daco/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_daco/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -259,6 +259,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_daco/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r2baf59f7cd470e56e94ddbc30b738711f6b4d779 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_daco/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 2baf59f7cd470e56e94ddbc30b738711f6b4d779)
+++ lams_tool_daco/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -259,6 +259,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 253 labels for en AU =====
Index: lams_tool_daco/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_daco/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_daco/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_doku/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_doku/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_doku/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_forum/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_forum/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_forum/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -250,6 +250,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_forum/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r29a9f580b2b8a195d7957d40e0db2abf32b262f4 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_forum/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 29a9f580b2b8a195d7957d40e0db2abf32b262f4)
+++ lams_tool_forum/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -250,6 +250,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 244 labels for en AU =====
Index: lams_tool_forum/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_forum/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_forum/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_gmap/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_gmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_gmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_images/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_images/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_images/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -156,6 +156,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_images/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r4fa81491838e947800839b80de1ea11c2013038d -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_images/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 4fa81491838e947800839b80de1ea11c2013038d)
+++ lams_tool_images/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -156,6 +156,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 150 labels for en AU =====
Index: lams_tool_images/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_images/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_images/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_imscc/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_imscc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_imscc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -134,6 +134,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_imscc/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r28bae3c2c6552c1f243342b3f6e382d9cd4c8fca -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_imscc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 28bae3c2c6552c1f243342b3f6e382d9cd4c8fca)
+++ lams_tool_imscc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -134,6 +134,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 128 labels for en AU =====
Index: lams_tool_imscc/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_imscc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_imscc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_lamc/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -r28efddc5ed11e578dfac7c8faa35886e5d83b914 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_lamc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 28efddc5ed11e578dfac7c8faa35886e5d83b914)
+++ lams_tool_lamc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -232,6 +232,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
warn.tool.output.change.none =This will delete all existing marks for this activity. Are you sure?
output.desc.none =No score
label.edit.in.monitor.warning =Attention: while you edit this activity, students don't have access to it. You must save your changes, so students can re-attempt this activity again.
Index: lams_tool_lamc/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r28efddc5ed11e578dfac7c8faa35886e5d83b914 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_lamc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 28efddc5ed11e578dfac7c8faa35886e5d83b914)
+++ lams_tool_lamc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -232,6 +232,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
warn.tool.output.change.none =This will delete all existing marks for this activity. Are you sure?
output.desc.none =No score
label.edit.in.monitor.warning =Attention: while you edit this activity, students don't have access to it. You must save your changes, so students can re-attempt this activity again.
Index: lams_tool_lamc/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_lamc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_lamc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_laqa/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_laqa/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_laqa/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -223,6 +223,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_laqa/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r76bc7d8e8c78984a76af71a244a72bcc872c3cac -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_laqa/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 76bc7d8e8c78984a76af71a244a72bcc872c3cac)
+++ lams_tool_laqa/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -223,6 +223,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 217 labels for en AU =====
Index: lams_tool_laqa/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_laqa/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_laqa/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_larsrc/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_larsrc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_larsrc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -185,6 +185,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_larsrc/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r92cdd698e46d6dd110fd77947b1a18f7ece6c9c4 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_larsrc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 92cdd698e46d6dd110fd77947b1a18f7ece6c9c4)
+++ lams_tool_larsrc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -185,6 +185,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 179 labels for en AU =====
Index: lams_tool_larsrc/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_larsrc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_larsrc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_leader/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_leader/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_leader/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -64,6 +64,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_leader/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r7cd1ef5d801bb97fa8b3111fbdbab9421f060c06 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_leader/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 7cd1ef5d801bb97fa8b3111fbdbab9421f060c06)
+++ lams_tool_leader/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -64,6 +64,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 58 labels for en AU =====
Index: lams_tool_leader/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_leader/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_leader/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_mindmap/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_mindmap/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_mindmap/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -107,6 +107,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_mindmap/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r2284e05d216c098f9c488c66e24a07deff3bee85 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_mindmap/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 2284e05d216c098f9c488c66e24a07deff3bee85)
+++ lams_tool_mindmap/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -107,6 +107,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 101 labels for en AU =====
Index: lams_tool_mindmap/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_mindmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_mindmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_nb/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_nb/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_nb/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -65,6 +65,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_nb/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r4a3c968c1abf465fa0ed4c81bda84187bc715fcc -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_nb/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 4a3c968c1abf465fa0ed4c81bda84187bc715fcc)
+++ lams_tool_nb/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -65,6 +65,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 59 labels for en AU =====
Index: lams_tool_nb/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_nb/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_nb/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_notebook/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_notebook/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_notebook/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -127,6 +127,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_notebook/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -re5d93acb2dfac190c44ac3a6534cab6b60a4606d -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_notebook/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision e5d93acb2dfac190c44ac3a6534cab6b60a4606d)
+++ lams_tool_notebook/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -127,6 +127,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 121 labels for en AU =====
Index: lams_tool_notebook/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_notebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_notebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_pixlr/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_pixlr/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_pixlr/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -110,6 +110,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_pixlr/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r1c0008e6766af70f72f90d6292cf1afd502f274b -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_pixlr/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 1c0008e6766af70f72f90d6292cf1afd502f274b)
+++ lams_tool_pixlr/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -110,6 +110,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 104 labels for en AU =====
Index: lams_tool_pixlr/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_pixlr/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_pixlr/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_preview/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_preview/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_preview/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -192,6 +192,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_preview/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r1489d49f53be7f344930739af244b7c4a1727c72 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_preview/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 1489d49f53be7f344930739af244b7c4a1727c72)
+++ lams_tool_preview/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -192,6 +192,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 186 labels for en AU =====
Index: lams_tool_preview/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_preview/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_preview/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_sbmt/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_sbmt/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_sbmt/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -166,6 +166,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
error.upload =Error while uploading file: {0}
Index: lams_tool_sbmt/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -rc23196b01b0884536c5e25b48d2604cd1cf83d86 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_sbmt/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision c23196b01b0884536c5e25b48d2604cd1cf83d86)
+++ lams_tool_sbmt/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -166,6 +166,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
error.upload =Error while uploading file: {0}
Index: lams_tool_sbmt/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_sbmt/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_sbmt/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_scratchie/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_scratchie/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_scratchie/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -230,6 +230,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_scratchie/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r4136105c4f65a13360d7f27ff195301735e14595 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_scratchie/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 4136105c4f65a13360d7f27ff195301735e14595)
+++ lams_tool_scratchie/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -230,6 +230,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 224 labels for en AU =====
Index: lams_tool_scratchie/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_scratchie/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_scratchie/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_scribe/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_scribe/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_scribe/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -106,6 +106,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_scribe/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r321de672688e1c41dafc733583805dd79b63247b -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_scribe/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 321de672688e1c41dafc733583805dd79b63247b)
+++ lams_tool_scribe/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -106,6 +106,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 100 labels for en AU =====
Index: lams_tool_scribe/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_scribe/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_scribe/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_spreadsheet/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_spreadsheet/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_spreadsheet/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -119,6 +119,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_spreadsheet/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -rb2d6eec87f47352b10b655966ceffe059bd5f6aa -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_spreadsheet/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision b2d6eec87f47352b10b655966ceffe059bd5f6aa)
+++ lams_tool_spreadsheet/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -119,6 +119,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 113 labels for en AU =====
Index: lams_tool_spreadsheet/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_spreadsheet/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_spreadsheet/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_survey/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_survey/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_survey/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -185,6 +185,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_survey/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -re3da1d405b5e453e7cd9fe76ad252df2625c6ed2 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_survey/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision e3da1d405b5e453e7cd9fe76ad252df2625c6ed2)
+++ lams_tool_survey/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -185,6 +185,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 179 labels for en AU =====
Index: lams_tool_survey/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_survey/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_survey/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_task/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_task/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_task/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -172,6 +172,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
#======= End labels: Exported 166 labels for en AU =====
Index: lams_tool_task/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -rb8afc8c19898c79009845f2b26ffcc0398b85a52 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_task/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision b8afc8c19898c79009845f2b26ffcc0398b85a52)
+++ lams_tool_task/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -172,6 +172,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 166 labels for en AU =====
Index: lams_tool_task/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_task/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_task/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_vote/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_vote/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_vote/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -165,6 +165,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_vote/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -r7e78386b0934f437a21497b0e87b89dc58c5f3e1 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_vote/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 7e78386b0934f437a21497b0e87b89dc58c5f3e1)
+++ lams_tool_vote/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -165,6 +165,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 159 labels for en AU =====
Index: lams_tool_vote/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_vote/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_vote/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_wiki/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_wiki/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_wiki/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -154,6 +154,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
outcome.authoring.create.new = [create new]
Index: lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -rff61c10fc5b8b6f8030ce3e428ad5ecadfecdfd0 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision ff61c10fc5b8b6f8030ce3e428ad5ecadfecdfd0)
+++ lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -154,6 +154,7 @@
outcome.authoring.input =Search and select by outcome name or code
outcome.authoring.existing =Added outcomes
outcome.authoring.existing.none =none
+outcome.authoring.remove.confirm =Are you sure you want to remove this learning outcome?
#======= End labels: Exported 148 labels for en AU =====
Index: lams_tool_wiki/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_wiki/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_wiki/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_tool_zoom/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_tool_zoom/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_tool_zoom/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}
Index: lams_www/web/WEB-INF/tags/OutcomeAuthor.tag
===================================================================
diff -u -rd2c76e5308cd9eff91c235b3fa8e9309bbc58d50 -r298ac30bd04d6cdffdbbc42d1ceec29831809dc7
--- lams_www/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision d2c76e5308cd9eff91c235b3fa8e9309bbc58d50)
+++ lams_www/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 298ac30bd04d6cdffdbbc42d1ceec29831809dc7)
@@ -50,7 +50,8 @@
outcomeExistingNoneLabel = '',
outcomeCreateNewLabel = '',
- outcomeMappingRemoveButton = '';
+ outcomeMappingRemoveButton = '',
+ outcomeMappingRemoveConfirm = '';
$(document).ready(function(){
$('#outcomeSearchInput${outcomeTagId}').autocomplete({
@@ -75,7 +76,7 @@
}
if (!sameNameFound) {
ui.content.push({
- 'label' : term + outcomeCreateNewLabel
+ 'label' : term + ' ' + outcomeCreateNewLabel
});
}
},
@@ -126,10 +127,12 @@
// cache already mapped outcomes
outcomeMappingIds${outcomeTagId}.push(this.outcomeId);
// add a label with outcome information
- var outcomeButton = $('').attr('mappingId', this.mappingId)
+ var outcomeButton = $('').attr('mappingId', this.mappingId)
.html(this.label + outcomeMappingRemoveButton).appendTo(mappingDiv);
outcomeButton.click(function(){
- removeOutcomeMapping(this);
+ if (confirm(outcomeMappingRemoveConfirm)) {
+ removeOutcomeMapping(this);
+ }
});
});
}