summaryrefslogtreecommitdiffstats
path: root/usr/local/www/edit.php
diff options
context:
space:
mode:
authorCarlos Eduardo Ramos <carlos.ramos@bluepex.com>2010-07-29 17:40:21 -0300
committerCarlos Eduardo Ramos <carlos.ramos@bluepex.com>2010-07-29 17:40:21 -0300
commita1c2ef43fcf14c29b0a7f31bc4161d8761abe45e (patch)
treec28bd0f97dc8c52147ef9f6c46926eb479ceacf6 /usr/local/www/edit.php
parenta91872083312de473db45172e390865d3b1b9010 (diff)
downloadpfsense-a1c2ef43fcf14c29b0a7f31bc4161d8761abe45e.zip
pfsense-a1c2ef43fcf14c29b0a7f31bc4161d8761abe45e.tar.gz
Implement gettext() calls on edit.php
Diffstat (limited to 'usr/local/www/edit.php')
-rw-r--r--usr/local/www/edit.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/usr/local/www/edit.php b/usr/local/www/edit.php
index 817c00f..6b71ad2 100644
--- a/usr/local/www/edit.php
+++ b/usr/local/www/edit.php
@@ -37,15 +37,15 @@ if($_REQUEST['action']) {
switch($_REQUEST['action']) {
case 'load':
if(strlen($_REQUEST['file']) < 1) {
- echo "|5|No file name specified.|";
+ echo "|5|" . gettext("No file name specified") . ".|";
} elseif(is_dir($_REQUEST['file'])) {
- echo "|4|Loading a directory is not supported.|";
+ echo "|4|" . gettext("Loading a directory is not supported") . ".|";
} elseif(! is_file($_REQUEST['file'])) {
- echo "|3|File does not exist or is not a regular file.|";
+ echo "|3|" . gettext("File does not exist or is not a regular file") . ".|";
} else {
$data = file_get_contents(urldecode($_REQUEST['file']));
if($data === false) {
- echo "|1|Failed to read file.|";
+ echo "|1|" . gettext("Failed to read file") . ".|";
} else {
echo "|0|{$_REQUEST['file']}|{$data}|";
}
@@ -53,7 +53,7 @@ if($_REQUEST['action']) {
exit;
case 'save':
if(strlen($_REQUEST['file']) < 1) {
- echo "|No file name specified.|";
+ echo "|" . gettext("No file name specified") . ".|";
} else {
conf_mount_rw();
$_REQUEST['data'] = str_replace("\r", "", $_REQUEST['data']);
@@ -63,11 +63,11 @@ if($_REQUEST['action']) {
if(file_exists("/tmp/config.cache"))
unlink("/tmp/config.cache");
if($ret === false) {
- echo "|Failed to write file.|";
+ echo "|" . gettext("Failed to write file") . ".|";
} elseif($ret <> strlen($_REQUEST['data'])) {
- echo "|Error while writing file.|";
+ echo "|" . gettext("Error while writing file") . ".|";
} else {
- echo "|File successfully saved.|";
+ echo "|" . gettext("File successfully saved") . ".|";
}
}
exit;
@@ -86,7 +86,7 @@ outputJavaScriptFileInline("filebrowser/browser.js");
<script type="text/javascript">
function loadFile() {
- $("fileStatus").innerHTML = "Loading file ...";
+ $("fileStatus").innerHTML = "<?=gettext("Loading file"); ?> ...";
Effect.Appear("fileStatusBox", { duration: 0.5 });
new Ajax.Request(
@@ -105,7 +105,7 @@ outputJavaScriptFileInline("filebrowser/browser.js");
if(values.shift() == "0") {
var file = values.shift();
- $("fileStatus").innerHTML = "File successfully loaded.";
+ $("fileStatus").innerHTML = "<?=gettext("File successfully loaded"); ?>.";
$("fileContent").value = values.join("|");
var lang = "none";
@@ -128,7 +128,7 @@ outputJavaScriptFileInline("filebrowser/browser.js");
}
function saveFile(file) {
- $("fileStatus").innerHTML = "Saving file ...";
+ $("fileStatus").innerHTML = "<?=gettext("Saving file"); ?> ...";
Effect.Appear("fileStatusBox", { duration: 0.5 });
var fileContent = escape($("fileContent").value);
@@ -165,7 +165,7 @@ outputJavaScriptFileInline("filebrowser/browser.js");
<table width="100%" cellpadding="9" cellspacing="9">
<tr>
<td align="center" class="list">
- Save / Load from path:
+ <?=gettext("Save / Load from path"); ?>:
<input type="text" class="formfld file" id="fbTarget" size="45" />
<input type="button" class="formbtn" onclick="loadFile();" value="<?=gettext('Load');?>" />
<input type="button" class="formbtn" id="fbOpen" value="<?=gettext('Browse');?>" />
OpenPOWER on IntegriCloud