Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: confitrmation strings
Browse files Browse the repository at this point in the history
btry committed May 30, 2023
1 parent 7bfe6ca commit 8ced574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/scripts.js
Original file line number Diff line number Diff line change
@@ -1446,7 +1446,7 @@ function plugin_formcreator_addTarget(items_id) {
}

$(document).on('click', '.plugin_formcreator_duplicate_target', function() {
if(confirm(i18n.textdomain('formcreator').__('Are you sure you want to duplicate this target:', 'formcreator'))) {
if(confirm(i18n.textdomain('formcreator').__('Are you sure you want to duplicate this target?', 'formcreator'))) {
$.post({
url: formcreatorRootDoc + '/ajax/form_duplicate_target.php',
data: {
@@ -1463,7 +1463,7 @@ $(document).on('click', '.plugin_formcreator_duplicate_target', function() {
});

$(document).on('click', '.plugin_formcreator_delete_target', function() {
if(confirm(i18n.textdomain('formcreator').__('Are you sure you want to delete this target:', 'formcreator'))) {
if(confirm(i18n.textdomain('formcreator').__('Are you sure you want to delete this target?', 'formcreator'))) {
$.post({
url: formcreatorRootDoc + '/ajax/form_delete_target.php',
data: {

0 comments on commit 8ced574

Please sign in to comment.