Revision af3cc7d6
Added by NOYB NOYB over 9 years ago
src/etc/inc/dyndns.class | ||
---|---|---|
1048 | 1048 |
} else if (preg_match('/403/i', $data)) { |
1049 | 1049 |
$status = $status_intro . $error_str . gettext("Database Error - There was a server-sided database error."); |
1050 | 1050 |
} else if (preg_match('/405/i', $data)) { |
1051 |
$status = $status_intro . $error_str . sprintf(gettext("Hostname Error - The hostname (%s) doesn't belong to you."), $this->_dnsHost);
|
|
1051 |
$status = $status_intro . $error_str . sprintf(gettext("Hostname Error - The hostname (%s) doesn't belong to user (%s)."), $this->_dnsHost, $this->_dnsUser);
|
|
1052 | 1052 |
} else if (preg_match('/200/i', $data)) { |
1053 | 1053 |
$status = $status_intro . $success_str . gettext("IP Address Updated Successfully!"); |
1054 | 1054 |
$successful_update = true; |
src/usr/local/www/crash_reporter.php | ||
---|---|---|
154 | 154 |
<div class="panel-body"> |
155 | 155 |
<div class="content"> |
156 | 156 |
<p> |
157 |
<?=gettext("Would you like to submit the programming debug logs to the pfSense developers for inspection?")?>
|
|
158 |
<i><?=gettext("Please double check the contents to ensure you are comfortable sending this information before clicking Yes.")?></i>
|
|
157 |
<?=gettext("The programming debug logs can be submitted to the pfSense developers for inspection.")?>
|
|
158 |
<i><?=gettext("Please double check the contents to ensure this information is acceptable to disclose before submitting.")?></i>
|
|
159 | 159 |
</p> |
160 | 160 |
<textarea readonly style="width: 100%; height: 350px;"> |
161 | 161 |
<?=$crash_reports?> |
... | ... | |
168 | 168 |
</button> |
169 | 169 |
<button class="btn btn-warning" name="Submit" type="submit" value="No"> |
170 | 170 |
<i class="fa fa-undo"></i> |
171 |
<?=gettext("No")?> - <?=gettext("Just delete the crash report and take me back to the Dashboard")?>
|
|
171 |
<?=gettext("No")?> - <?=gettext("Just delete the crash report and return to the Dashboard")?>
|
|
172 | 172 |
</button> |
173 | 173 |
</form> |
174 | 174 |
</div> |
src/usr/local/www/easyrule.php | ||
---|---|---|
106 | 106 |
} else { |
107 | 107 |
print_info_box( |
108 | 108 |
gettext('This is the Easy Rule status page, mainly used to display errors when adding rules.') . ' ' . |
109 |
gettext('If you are seeing this, there apparently was not an error, and you navigated to the page directly without telling it what to do.') .
|
|
109 |
gettext('There apparently was not an error, and this page was navigated to directly without any instructions for what it should do.') .
|
|
110 | 110 |
'<br /><br />' . |
111 | 111 |
gettext('This page is meant to be called from the block/pass buttons on the Firewall Logs page') . |
112 | 112 |
', <a href="status_logs_filter.php">' . gettext("Status") . ' > ' . gettext('System Logs') . ', ' . gettext('Firewall Tab') . '</a>.<br />'); |
src/usr/local/www/js/pfSenseHelpers.js | ||
---|---|---|
370 | 370 |
delete_row(event.target.id); |
371 | 371 |
} |
372 | 372 |
else |
373 |
alert('You may not delete the last row!');
|
|
373 |
alert('The last row may not be deleted.');
|
|
374 | 374 |
}); |
375 | 375 |
|
376 | 376 |
} |
... | ... | |
392 | 392 |
delete_row(event.target.id); |
393 | 393 |
} |
394 | 394 |
else |
395 |
alert('You may not delete the last row!');
|
|
395 |
alert('The last row may not be deleted.');
|
|
396 | 396 |
}); |
397 | 397 |
|
398 | 398 |
// "More information" handlers -------------------------------------------------------------------- |
src/usr/local/www/wizards/setup_wizard.xml | ||
---|---|---|
57 | 57 |
<id>1</id> |
58 | 58 |
<title>pfSense Setup</title> |
59 | 59 |
<disableheader>true</disableheader> |
60 |
<description>This wizard will guide you through the initial configuration of pfSense.<br/><br/> The wizard may be stopped at any time by clicking the logo image at the top of the screen.</description>
|
|
60 |
<description>This wizard will provide guidance through the initial configuration of pfSense.<br/><br/> The wizard may be stopped at any time by clicking the logo image at the top of the screen.</description>
|
|
61 | 61 |
<fields> |
62 | 62 |
<field> |
63 | 63 |
<name>Next</name> |
Also available in: Unified diff
Miscellaneous - Remove Personalizations
Remove "you" personalizations.