summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/pkg_mgr_install.php
diff options
context:
space:
mode:
authork-paulius <k.dash.paulius@gmail.com>2016-02-16 00:35:32 -0600
committerStephen Beaver <sbeaver@netgate.com>2016-02-16 17:33:04 -0500
commit91c0bbff535d245c97628cc671bf29cee94d7a96 (patch)
tree2ec095ce03061606ac14f4756e73db8889f07f4c /src/usr/local/www/pkg_mgr_install.php
parent881c59a78ec181f13b223635f8a0be857ed343f7 (diff)
downloadpfsense-91c0bbff535d245c97628cc671bf29cee94d7a96.zip
pfsense-91c0bbff535d245c97628cc671bf29cee94d7a96.tar.gz
Review alert wording. End sentence with period
Diffstat (limited to 'src/usr/local/www/pkg_mgr_install.php')
-rw-r--r--src/usr/local/www/pkg_mgr_install.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/pkg_mgr_install.php b/src/usr/local/www/pkg_mgr_install.php
index 188aca8..6087d1d 100644
--- a/src/usr/local/www/pkg_mgr_install.php
+++ b/src/usr/local/www/pkg_mgr_install.php
@@ -378,17 +378,17 @@ if ($_POST) {
if ($_POST['mode'] == 'delete') {
$panel_heading_txt = gettext("Package Removal");
- $pkg_success_txt = sprintf(gettext('<b>%1$s</b> removal successfully completed'), $pkgid);
+ $pkg_success_txt = sprintf(gettext('<b>%1$s</b> removal successfully completed.'), $pkgid);
$pkg_fail_txt = sprintf(gettext('<b>%1$s</b> removal failed!'), $pkgid);
$pkg_wait_txt = sprintf(gettext('Please wait while the removal of <b>%1$s</b> completes.'), $pkgid);
} else if (($_POST['mode'] == 'reinstallpkg') || ($_POST['mode'] == 'reinstallall')) {
$panel_heading_txt = gettext("Package Reinstallation");
- $pkg_success_txt = sprintf(gettext('<b>%1$s</b> reinstallation successfully completed'), $pkgid);
+ $pkg_success_txt = sprintf(gettext('<b>%1$s</b> reinstallation successfully completed.'), $pkgid);
$pkg_fail_txt = sprintf(gettext('<b>%1$s</b> reinstallation failed!'), $pkgid);
$pkg_wait_txt = sprintf(gettext('Please wait while the reinstallation of <b>%1$s</b> completes.'), $pkgid);
} else {
$panel_heading_txt = gettext("Package Installation");
- $pkg_success_txt = sprintf(gettext('<b>%1$s</b> installation successfully completed'), $pkgid);
+ $pkg_success_txt = sprintf(gettext('<b>%1$s</b> installation successfully completed.'), $pkgid);
$pkg_fail_txt = sprintf(gettext('<b>%1$s</b> installation failed!'), $pkgid);
$pkg_wait_txt = sprintf(gettext('Please wait while the installation of <b>%1$s</b> completes.'), $pkgid);
}
@@ -513,12 +513,12 @@ function show_success() {
$('#final').removeClass("alert-info").addClass("alert-success");
if ("<?=$_POST['mode']?>" != "reinstallall") {
if ("<?=$pkgid?>" == "firmware") {
- $('#final').html("<b>" + "<?=gettext('System update successfully completed')?>" + "</b>");
+ $('#final').html("<b>" + "<?=gettext('System update successfully completed.')?>" + "</b>");
} else {
$('#final').html("<?=$pkg_success_txt?>");
}
} else {
- $('#final').html("<?=gettext('Reinstallation of all packages successfully completed')?>");
+ $('#final').html("<?=gettext('Reinstallation of all packages successfully completed.')?>");
}
$('#final').show();
@@ -531,7 +531,7 @@ function show_failure() {
if ("<?=$_POST['mode']?>" != "reinstallall") {
$('#final').html("<?=$pkg_fail_txt?>");
} else {
- $('#final').html("<?=gettext('Reinstallation of all packages failed')?>");
+ $('#final').html("<?=gettext('Reinstallation of all packages failed.')?>");
}
$('#final').show();
}
OpenPOWER on IntegriCloud