diff --git a/src/usr/local/www/pkg.php b/src/usr/local/www/pkg.php
index dba62f07e3..2a34885e1a 100755
--- a/src/usr/local/www/pkg.php
+++ b/src/usr/local/www/pkg.php
@@ -292,7 +292,7 @@ events.push(function() {
function save_changes_to_xml(xml) {
var ids = $('#mainarea table tbody').sortable('serialize', {key:"ids[]"});
var strloading="=gettext('Saving changes...')?>";
- if (confirm("=gettext("Do you really want to save changes?")?>")) {
+ if (confirm("=gettext("Confirmation Required to save changes.")?>")) {
$.ajax({
type: 'get',
cache: false,
diff --git a/src/usr/local/www/pkg_mgr_install.php b/src/usr/local/www/pkg_mgr_install.php
index c234385b9c..10d58f37ee 100644
--- a/src/usr/local/www/pkg_mgr_install.php
+++ b/src/usr/local/www/pkg_mgr_install.php
@@ -275,14 +275,14 @@ if ($input_errors) {
switch ($pkgmode) {
case 'reinstallpkg':
- $pkgtxt = sprintf(gettext('Are you sure you want to reinstall package %s?'), $pkgname);
+ $pkgtxt = sprintf(gettext('Confirmation Required to reinstall package %s.'), $pkgname);
break;
case 'delete':
- $pkgtxt = sprintf(gettext('Are you sure you want to remove package %s?'), $pkgname);
+ $pkgtxt = sprintf(gettext('Confirmation Required to remove package %s.'), $pkgname);
break;
case 'installed':
default:
- $pkgtxt = sprintf(gettext('Are you sure you want to install package %s?'), $pkgname);
+ $pkgtxt = sprintf(gettext('Confirmation Required to install package %s.'), $pkgname);
break;
}
?>
@@ -292,15 +292,15 @@ if ($input_errors) {
- =gettext("Are you sure you want to reinstall all packages?");?>
+ =gettext("Confirmation Required to reinstall all packages.");?>
- =sprintf(gettext('Are you sure you want to upgrade package %1$s from %2$s to %3$s?'), $pkgname, $_GET['from'], $_GET['to'])?>
+ =sprintf(gettext('Confirmation Required to upgrade package %1$s from %2$s to %3$s.'), $pkgname, $_GET['from'], $_GET['to'])?>
- =sprintf(gettext('Are you sure you want to update %s system?'), $g['product_name'])?>
+ =sprintf(gettext('Confirmation Required to update %s system.'), $g['product_name'])?>
diff --git a/src/usr/local/www/status_logs_filter.php b/src/usr/local/www/status_logs_filter.php
index 0b0996110d..8c7d6a2eb5 100644
--- a/src/usr/local/www/status_logs_filter.php
+++ b/src/usr/local/www/status_logs_filter.php
@@ -266,7 +266,7 @@ if (!$rawfilter) {
');" title="=gettext("Click to resolve")?>">
-
" title="=gettext("Easy Rule: Add to Block List")?>" onclick="return confirm('=gettext("Do you really want to add this BLOCK rule?")?>')">
+ " title="=gettext("Easy Rule: Add to Block List")?>" onclick="return confirm('=gettext("Confirmation required to add this BLOCK rule.")?>')">
=$srcstr . '
'?>
@@ -275,7 +275,7 @@ if (!$rawfilter) {
');" title="=gettext("Click to resolve")?>">
-
" title="=gettext("Easy Rule: Pass this traffic")?>" onclick="return confirm('=gettext("Do you really want to add this PASS rule?")?>')">
+ " title="=gettext("Easy Rule: Pass this traffic")?>" onclick="return confirm('=gettext("Confirmation required to add this PASS rule.")?>')">
=$dststr . '
'?>
diff --git a/src/usr/local/www/vpn_ipsec.php b/src/usr/local/www/vpn_ipsec.php
index cafded4857..8d2ad76ffc 100644
--- a/src/usr/local/www/vpn_ipsec.php
+++ b/src/usr/local/www/vpn_ipsec.php
@@ -577,13 +577,13 @@ events.push(function() {
});
$('[id^=Xdel_]').click(function (event) {
- if (confirm("=gettext('Are you sure you wish to delete this P1 entry?')?>")) {
+ if (confirm("=gettext('Confirmation required to delete this P1 entry.')?>")) {
$('#' + event.target.id.slice(1)).click();
}
});
$('[id^=Xdelp2_]').click(function (event) {
- if (confirm("=gettext('Are you sure you wish to delete this P2 entry?')?>")) {
+ if (confirm("=gettext('Confirmation required to delete this P2 entry.')?>")) {
$('#' + event.target.id.slice(1)).click();
}
});