Skip to content

Commit 079888d

Browse files
committed
fix: confitrmation strings
1 parent 8495627 commit 079888d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

js/scripts.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ function plugin_formcreator_addTarget(items_id) {
14461446
}
14471447

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

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

0 commit comments

Comments
 (0)