mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Few minor text typos
Note that advertise is spelt with an "s" in other places in the GUI, so making it consistent in services_ntpd - but maybe Americans do spell it "advertize" these days?
This commit is contained in:
parent
5d7a0701d1
commit
ed005b2000
@ -235,7 +235,7 @@ class altq_root_queue {
|
||||
var $link;
|
||||
var $available_bw; /* in b/s */
|
||||
|
||||
/* Accesor functions */
|
||||
/* Accessor functions */
|
||||
function GetAvailableBandwidth() {
|
||||
return $this->available_bw;
|
||||
}
|
||||
@ -778,7 +778,7 @@ class priq_queue {
|
||||
/* This is here to help with form building and building rules/lists */
|
||||
var $subqueues = array();
|
||||
|
||||
/* Accesor functions */
|
||||
/* Accessor functions */
|
||||
function GetAvailableBandwidth() {
|
||||
return $this->available_bw;
|
||||
}
|
||||
|
||||
@ -348,7 +348,7 @@ include("head.inc");
|
||||
<input type="button" onclick="show_advanced('showstatisticsbox', 'showstatistics')" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show statistics logging options");?>
|
||||
</div>
|
||||
<div id="showstatistics" style="display:none">
|
||||
<strong><?php echo gettext("Warning: ")?></strong><?php echo gettext("these options will create persistant daily log files in /var/log/ntp."); ?>
|
||||
<strong><?php echo gettext("Warning: ")?></strong><?php echo gettext("these options will create persistent daily log files in /var/log/ntp."); ?>
|
||||
<br /><br />
|
||||
<input name="clockstats" type="checkbox" class="formcheckbox" id="clockstats"<?php if($pconfig['clockstats']) echo " checked=\"checked\""; ?> />
|
||||
<?php echo gettext("Enable logging of reference clock statistics (default: disabled)."); ?>
|
||||
@ -397,7 +397,7 @@ include("head.inc");
|
||||
<input type="button" onclick="show_advanced('showleapsecbox', 'showleapsec')" value="<?=gettext("Advanced");?>" /> - <?=gettext("Show Leap second configuration");?>
|
||||
</div>
|
||||
<div id="showleapsec" style="display:none">
|
||||
<?php echo gettext("A leap second file allows NTP to advertize an upcoming leap second addition or subtraction.");?>
|
||||
<?php echo gettext("A leap second file allows NTP to advertise an upcoming leap second addition or subtraction.");?>
|
||||
<?php echo gettext("Normally this is only useful if this server is a stratum 1 time server.");?>
|
||||
<br /><br />
|
||||
<?php echo gettext("Enter Leap second configuration as text:");?><br />
|
||||
|
||||
@ -1,13 +1,12 @@
|
||||
<?php
|
||||
/*
|
||||
$Id: thermal_sensors.inc
|
||||
File location:
|
||||
File location:
|
||||
\usr\local\www\widgets\include\
|
||||
|
||||
Used by:
|
||||
\usr\local\www\widgets\widgets\thermal_sensors.widget.php
|
||||
|
||||
|
||||
*/
|
||||
|
||||
//set variable for custom title
|
||||
@ -16,12 +15,12 @@ $thermal_sensors_widget_title = "Thermal Sensors";
|
||||
|
||||
|
||||
//returns core temp data (from coretemp.ko or amdtemp.ko driver) as "|"-delimited string.
|
||||
//NOTE: depends on proper cofing in System >> Advanced >> Miscellaneous tab >> Thermal Sensors section.
|
||||
//NOTE: depends on proper config in System >> Advanced >> Miscellaneous tab >> Thermal Sensors section.
|
||||
function getThermalSensorsData() {
|
||||
|
||||
$_gb = exec("/sbin/sysctl -a | grep temperature", $dfout);
|
||||
$thermalSensorsData = join("|", $dfout);
|
||||
return $thermalSensorsData;
|
||||
|
||||
|
||||
}
|
||||
?>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
$Id: thermal_sensors.js
|
||||
Description:
|
||||
Javascript functions to get and show thermal sensors data in thermal_sensors.widget.php.
|
||||
NOTE: depends on proper cofing in System >> Advanced >> Miscellaneous tab >> Thermal Sensors section.
|
||||
NOTE: depends on proper config in System >> Advanced >> Miscellaneous tab >> Thermal Sensors section.
|
||||
File location:
|
||||
\usr\local\www\widgets\javascript\
|
||||
Used by:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user