mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
fix text - s/occured/occurred/
This commit is contained in:
parent
dde3cae3dc
commit
e2967ba637
@ -320,7 +320,7 @@ function filter_configure_sync($delete_states_if_needed = true) {
|
||||
echo "pfctl done at $mt\n";
|
||||
}
|
||||
/*
|
||||
* check for a error while loading the rules file. if an error has occured
|
||||
* check for a error while loading the rules file. if an error has occurred
|
||||
* then output the contents of the error to the caller
|
||||
*/
|
||||
if($rules_loading <> 0) {
|
||||
|
||||
@ -1817,7 +1817,7 @@ function embed_wmedia(width, height, link) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the error message for the occured error
|
||||
* Return the error message for the occurred error
|
||||
*
|
||||
* @access public
|
||||
* @return string Error message
|
||||
|
||||
@ -107,7 +107,7 @@ function carp_check_version($url, $username, $password, $port = 80, $method = 'p
|
||||
/* send our XMLRPC message and timeout after 240 seconds */
|
||||
$resp = $cli->send($msg, "240");
|
||||
if(!is_object($resp)) {
|
||||
$error = "A communications error occured while attempting XMLRPC sync with username {$username} {$url}:{$port}.";
|
||||
$error = "A communications error occurred while attempting XMLRPC sync with username {$username} {$url}:{$port}.";
|
||||
} elseif($resp->faultCode()) {
|
||||
$error = "An error code was received while attempting XMLRPC sync with username {$username} {$url}:{$port} - Code " . $resp->faultCode() . ": " . $resp->faultString();
|
||||
} else {
|
||||
@ -247,7 +247,7 @@ function carp_sync_xml($url, $username, $password, $sections, $port = 80, $metho
|
||||
/* send our XMLRPC message and timeout after 240 seconds */
|
||||
$resp = $cli->send($msg, "240");
|
||||
if(!is_object($resp)) {
|
||||
$error = "A communications error occured while attempting XMLRPC sync with username {$username} {$url}:{$port}.";
|
||||
$error = "A communications error occurred while attempting XMLRPC sync with username {$username} {$url}:{$port}.";
|
||||
log_error($error);
|
||||
file_notice("sync_settings", $error, "Settings Sync", "");
|
||||
} elseif($resp->faultCode()) {
|
||||
@ -420,7 +420,7 @@ if (is_array($config['hasync'])) {
|
||||
$resp = $cli->send($msg, "900");
|
||||
|
||||
if (!is_object($resp)) {
|
||||
$error = "A communications error occured while attempting Filter sync with username {$username} {$synchronizetoip}:{$port}.";
|
||||
$error = "A communications error occurred while attempting Filter sync with username {$username} {$synchronizetoip}:{$port}.";
|
||||
log_error($error);
|
||||
file_notice("sync_settings", $error, "Settings Sync", "");
|
||||
} elseif($resp->faultCode()) {
|
||||
|
||||
@ -14767,7 +14767,7 @@ msgstr ""
|
||||
#: usr/local/www/interfaces_lagg_edit.php:114
|
||||
#: usr/local/www/interfaces_gif_edit.php:114
|
||||
#: usr/local/www/interfaces_bridge_edit.php:217
|
||||
msgid "Error occured creating interface, please retry."
|
||||
msgid "Error occurred creating interface, please retry."
|
||||
msgstr ""
|
||||
|
||||
#: usr/local/www/interfaces_bridge_edit.php:253
|
||||
|
||||
@ -12973,7 +12973,7 @@ msgstr ""
|
||||
#: usr/local/www/interfaces_lagg_edit.php:114
|
||||
#: usr/local/www/interfaces_gif_edit.php:114
|
||||
#: usr/local/www/interfaces_bridge_edit.php:217
|
||||
msgid "Error occured creating interface, please retry."
|
||||
msgid "Error occurred creating interface, please retry."
|
||||
msgstr "Um erro ocorreu ao criar a interface. Por favor, tente novamente."
|
||||
|
||||
#: usr/local/www/interfaces_bridge_edit.php:253
|
||||
|
||||
@ -12928,7 +12928,7 @@ msgstr ""
|
||||
#: usr/local/www/interfaces_lagg_edit.php:114
|
||||
#: usr/local/www/interfaces_gif_edit.php:114
|
||||
#: usr/local/www/interfaces_bridge_edit.php:217
|
||||
msgid "Error occured creating interface, please retry."
|
||||
msgid "Error occurred creating interface, please retry."
|
||||
msgstr ""
|
||||
"Arabirim oluşturulurken bir hata meydana geldi, lütfen tekrar deneyiniz."
|
||||
|
||||
|
||||
@ -214,7 +214,7 @@ if ($_POST) {
|
||||
$bridge['bridgeif'] = $_POST['bridgeif'];
|
||||
interface_bridge_configure($bridge);
|
||||
if ($bridge['bridgeif'] == "" || !stristr($bridge['bridgeif'], "bridge"))
|
||||
$input_errors[] = gettext("Error occured creating interface, please retry.");
|
||||
$input_errors[] = gettext("Error occurred creating interface, please retry.");
|
||||
else {
|
||||
if (isset($id) && $a_bridges[$id])
|
||||
$a_bridges[$id] = $bridge;
|
||||
|
||||
@ -111,7 +111,7 @@ if ($_POST) {
|
||||
|
||||
$gif['gifif'] = interface_gif_configure($gif);
|
||||
if ($gif['gifif'] == "" || !stristr($gif['gifif'], "gif"))
|
||||
$input_errors[] = gettext("Error occured creating interface, please retry.");
|
||||
$input_errors[] = gettext("Error occurred creating interface, please retry.");
|
||||
else {
|
||||
if (isset($id) && $a_gifs[$id])
|
||||
$a_gifs[$id] = $gif;
|
||||
|
||||
@ -105,7 +105,7 @@ if ($_POST) {
|
||||
|
||||
$gre['greif'] = interface_gre_configure($gre);
|
||||
if ($gre['greif'] == "" || !stristr($gre['greif'], "gre"))
|
||||
$input_errors[] = gettext("Error occured creating interface, please retry.");
|
||||
$input_errors[] = gettext("Error occurred creating interface, please retry.");
|
||||
else {
|
||||
if (isset($id) && $a_gres[$id])
|
||||
$a_gres[$id] = $gre;
|
||||
|
||||
@ -111,7 +111,7 @@ if ($_POST) {
|
||||
|
||||
$lagg['laggif'] = interface_lagg_configure($lagg);
|
||||
if ($lagg['laggif'] == "" || !stristr($lagg['laggif'], "lagg"))
|
||||
$input_errors[] = gettext("Error occured creating interface, please retry.");
|
||||
$input_errors[] = gettext("Error occurred creating interface, please retry.");
|
||||
else {
|
||||
if (isset($id) && $a_laggs[$id])
|
||||
$a_laggs[$id] = $lagg;
|
||||
|
||||
@ -121,7 +121,7 @@ if ($_POST) {
|
||||
|
||||
$vlan['vlanif'] = interface_vlan_configure($vlan);
|
||||
if ($vlan['vlanif'] == "" || !stristr($vlan['vlanif'], "vlan"))
|
||||
$input_errors[] = gettext("Error occured creating interface, please retry.");
|
||||
$input_errors[] = gettext("Error occurred creating interface, please retry.");
|
||||
else {
|
||||
if (isset($id) && $a_vlans[$id])
|
||||
$a_vlans[$id] = $vlan;
|
||||
|
||||
2
usr/local/www/javascript/jquery.js
vendored
2
usr/local/www/javascript/jquery.js
vendored
@ -7878,7 +7878,7 @@ if ( jQuery.support.ajax ) {
|
||||
xml;
|
||||
|
||||
// Firefox throws exceptions when accessing properties
|
||||
// of an xhr when a network error occured
|
||||
// of an xhr when a network error occurred
|
||||
// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
|
||||
try {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user