summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/edit.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2016-01-17 22:58:49 +0545
committerPhil Davis <phil.davis@inf.org>2016-01-17 22:58:49 +0545
commitb7edfd3c3d7f87438ccabeb53cbdb6942774bc0f (patch)
treef95fce5f5cfda5fb972977528df518041c7d2f0e /src/usr/local/www/edit.php
parente163952f29d1b9bc68731985c14caa3129ce49ce (diff)
downloadpfsense-b7edfd3c3d7f87438ccabeb53cbdb6942774bc0f.zip
pfsense-b7edfd3c3d7f87438ccabeb53cbdb6942774bc0f.tar.gz
Internationalize edit and exec
Note: in the end, edit.php has only whitespace format changes.
Diffstat (limited to 'src/usr/local/www/edit.php')
-rw-r--r--src/usr/local/www/edit.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/edit.php b/src/usr/local/www/edit.php
index ada73d1..fe15105 100644
--- a/src/usr/local/www/edit.php
+++ b/src/usr/local/www/edit.php
@@ -69,9 +69,9 @@ if ($_POST['action']) {
switch ($_POST['action']) {
case 'load':
if (strlen($_POST['file']) < 1) {
- print('|5|' . '<div class="alert alert-danger" role="alert">'.gettext("No file name specified").'</div>' . '|');
+ print('|5|' . '<div class="alert alert-danger" role="alert">' . gettext("No file name specified") . '</div>' . '|');
} elseif (is_dir($_POST['file'])) {
- print('|4|' . '<div class="alert alert-danger" role="alert">' . gettext("Loading a directory is not supported") .'</div>' . '|');
+ print('|4|' . '<div class="alert alert-danger" role="alert">' . gettext("Loading a directory is not supported") . '</div>' . '|');
} elseif (!is_file($_POST['file'])) {
print('|3|' . '<div class="alert alert-danger" role="alert">' . gettext("File does not exist or is not a regular file") . '</div>' . '|');
} else {
@@ -87,7 +87,7 @@ if ($_POST['action']) {
case 'save':
if (strlen($_POST['file']) < 1) {
- print('|' . '<div class="alert alert-danger" role="alert">'.gettext("No file name specified").'</div>' . '|');
+ print('|' . '<div class="alert alert-danger" role="alert">' . gettext("No file name specified") . '</div>' . '|');
} else {
conf_mount_rw();
$_POST['data'] = str_replace("\r", "", base64_decode($_POST['data']));
@@ -116,7 +116,7 @@ require("head.inc");
?>
<!-- file status box -->
<div style="display:none; background:#eeeeee;" id="fileStatusBox">
- <strong id="fileStatus"></strong>
+ <strong id="fileStatus"></strong>
</div>
<div class="panel panel-default">
OpenPOWER on IntegriCloud