From 6609ce9510aaf141c2a98dc634a18be94a0d5965 Mon Sep 17 00:00:00 2001
From: Stefan Weil
Date: Fri, 1 May 2020 13:51:52 +0200
Subject: [PATCH] Fix some typos (most found by codespell)
Signed-off-by: Stefan Weil
---
.../flex/com/adobe/air/filesystem/FileUtil.as | 2 +-
.../com/adobe/air/filesystem/VolumeMonitor.as | 2 +-
.../flex/com/adobe/net/DynamicURLLoader.as | 4 +--
clients/flex/com/adobe/net/MimeTypeMap.as | 2 +-
clients/flex/com/adobe/net/URI.as | 12 +++----
.../adobe/serialization/json/JSONEncoder.as | 2 +-
.../serialization/json/JSONParseError.as | 2 +-
clients/flex/com/adobe/utils/DateUtil.as | 10 +++---
clients/flex/com/adobe/utils/StringUtil.as | 6 ++--
clients/flex/jquery-1.4.2.js | 20 +++++------
clients/flex/jquery.tmpl.js | 2 +-
.../curl/autoload_configs/conference.conf.xml | 2 +-
conf/curl/autoload_configs/xml_cdr.conf.xml | 2 +-
.../autoload_configs/conference.conf.xml | 2 +-
.../autoload_configs/xml_cdr.conf.xml | 2 +-
conf/insideout/dialplan/default.xml | 4 +--
.../rayo/autoload_configs/conference.conf.xml | 2 +-
conf/rayo/autoload_configs/spandsp.conf.xml | 2 +-
debian/README.source | 2 +-
docker/base_image/README.md | 2 +-
docker/base_image/docker-entrypoint.sh | 4 +--
docs/Doxygen.conf | 4 +--
docs/phrase/README.TXT | 4 +--
docs/phrase/make_checks.sh | 4 +--
freeswitch.spec | 36 +++++++++----------
fscomm/preferences/prefdialog.ui | 2 +-
src/switch_xml_config.c | 2 +-
tests/unit/conf/vpx.conf.xml | 2 +-
w32/Setup/GitInfo/GitInfo.targets | 2 +-
29 files changed, 72 insertions(+), 72 deletions(-)
diff --git a/clients/flex/com/adobe/air/filesystem/FileUtil.as b/clients/flex/com/adobe/air/filesystem/FileUtil.as
index 33bf04df79..9a6bbc3dde 100644
--- a/clients/flex/com/adobe/air/filesystem/FileUtil.as
+++ b/clients/flex/com/adobe/air/filesystem/FileUtil.as
@@ -53,7 +53,7 @@ package com.adobe.air.filesystem
}
else if(os.indexOf("Linux") > -1)
{
- //todo: need to impliment Linux
+ //todo: need to implement Linux
}
return v;
diff --git a/clients/flex/com/adobe/air/filesystem/VolumeMonitor.as b/clients/flex/com/adobe/air/filesystem/VolumeMonitor.as
index cbb5ad5ba2..67901a264b 100644
--- a/clients/flex/com/adobe/air/filesystem/VolumeMonitor.as
+++ b/clients/flex/com/adobe/air/filesystem/VolumeMonitor.as
@@ -110,7 +110,7 @@ package com.adobe.air.filesystem
timer.addEventListener(TimerEvent.TIMER, onTimerEvent,false,0, true);
}
- //we reinitialize the hash everytime we start watching
+ //we reinitialize the hash every time we start watching
volumes = new Dictionary();
var v:Array = FileUtil.getRootDirectories();
diff --git a/clients/flex/com/adobe/net/DynamicURLLoader.as b/clients/flex/com/adobe/net/DynamicURLLoader.as
index 2a9eea1c36..a365b2479d 100644
--- a/clients/flex/com/adobe/net/DynamicURLLoader.as
+++ b/clients/flex/com/adobe/net/DynamicURLLoader.as
@@ -35,9 +35,9 @@ package com.adobe.net
import flash.net.URLLoader;
/**
- * Class that provides a dynamic implimentation of the URLLoader class.
+ * Class that provides a dynamic implementation of the URLLoader class.
*
- * This class provides no API implimentations. However, since the class is
+ * This class provides no API implementations. However, since the class is
* declared as dynamic, it can be used in place of URLLoader, and allow
* you to dynamically attach properties to it (which URLLoader does not allow).
*
diff --git a/clients/flex/com/adobe/net/MimeTypeMap.as b/clients/flex/com/adobe/net/MimeTypeMap.as
index 63353cab8c..cd9224722f 100644
--- a/clients/flex/com/adobe/net/MimeTypeMap.as
+++ b/clients/flex/com/adobe/net/MimeTypeMap.as
@@ -169,7 +169,7 @@ package com.adobe.net
}
/**
- * Returns the prefered extension for the given mimetype.
+ * Returns the preferred extension for the given mimetype.
*/
public function getExtension(mimetype:String):String
{
diff --git a/clients/flex/com/adobe/net/URI.as b/clients/flex/com/adobe/net/URI.as
index a212cdd7b8..b77896b250 100644
--- a/clients/flex/com/adobe/net/URI.as
+++ b/clients/flex/com/adobe/net/URI.as
@@ -64,7 +64,7 @@ package com.adobe.net
* URI syntax (e.g. custom query syntax or special handling of
* non-hierarchical URI's), this class can be fully subclassed. If you
* intended to subclass URI, please see the source code for complete
- * documation on protected members and protected fuctions.
+ * documentation on protected members and protected functions.
*
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
@@ -203,7 +203,7 @@ package com.adobe.net
/**
- * @private Private initializiation.
+ * @private Private initialization.
*/
protected function initialize() : void
{
@@ -332,7 +332,7 @@ package com.adobe.net
* well formed. Sometimes characters that should have been escaped
* are not, and those situations would break a regexp pattern. This
* function attempts to be smart about what it is parsing based on
- * location of characters relative to eachother. This function has
+ * location of characters relative to each other. This function has
* been proven through real-world use to parse the vast majority
* of URI's correctly.
*
@@ -835,7 +835,7 @@ package com.adobe.net
* to be properly escaped and unescaped, it must be split into its
* component parts. This accessor escapes/unescapes the entire query
* part without regard for it's component parts. This has the
- * possibliity of leaving the query string in an ambiguious state in
+ * possibliity of leaving the query string in an ambiguous state in
* regards to its syntax. If the contents of the query part are
* important, it is recommended that get/setQueryValue() or
* get/setQueryByMap() are used instead.
@@ -2340,7 +2340,7 @@ package com.adobe.net
* This function is intended to be a helper function.
* It is not all-knowning and will probably make mistakes
* when attempting to parse a string of unknown origin. If
- * your applicaiton is receiving input from the user, your
+ * your application is receiving input from the user, your
* application should already have a good idea what the user
* should be entering, and your application should be
* pre-processing the user's input to make sure it is well formed
@@ -2354,7 +2354,7 @@ package com.adobe.net
* on a URI that was created from unknownToURI() may not match
* the input string due to the difference in escaping.
*
- * @param unknown a potental URI string that should be parsed
+ * @param unknown a potential URI string that should be parsed
* and loaded into this object.
* @param defaultScheme if it is determined that the passed string
* looks like a URI, but it is missing the scheme part, this
diff --git a/clients/flex/com/adobe/serialization/json/JSONEncoder.as b/clients/flex/com/adobe/serialization/json/JSONEncoder.as
index 639df02c2c..1b5311e970 100644
--- a/clients/flex/com/adobe/serialization/json/JSONEncoder.as
+++ b/clients/flex/com/adobe/serialization/json/JSONEncoder.as
@@ -104,7 +104,7 @@ package com.adobe.serialization.json
}
/**
- * Escapes a string accoding to the JSON specification.
+ * Escapes a string according to the JSON specification.
*
* @param str The string to be escaped
* @return The string with escaped special characters
diff --git a/clients/flex/com/adobe/serialization/json/JSONParseError.as b/clients/flex/com/adobe/serialization/json/JSONParseError.as
index 5aec1e3b02..1c25b71da4 100644
--- a/clients/flex/com/adobe/serialization/json/JSONParseError.as
+++ b/clients/flex/com/adobe/serialization/json/JSONParseError.as
@@ -47,7 +47,7 @@ package com.adobe.serialization.json {
/**
* Constructs a new JSONParseError.
*
- * @param message The error message that occured during parsing
+ * @param message The error message that occurred during parsing
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
* @tiptext
diff --git a/clients/flex/com/adobe/utils/DateUtil.as b/clients/flex/com/adobe/utils/DateUtil.as
index a741df0d76..13d4ee647c 100644
--- a/clients/flex/com/adobe/utils/DateUtil.as
+++ b/clients/flex/com/adobe/utils/DateUtil.as
@@ -74,7 +74,7 @@ package com.adobe.utils
* @param Optional parameter indicating whether the search should be case
* sensitive
*
- * @return A int that represents that month represented by the specifed
+ * @return A int that represents that month represented by the specified
* short name.
*
* @langversion ActionScript 3.0
@@ -114,7 +114,7 @@ package com.adobe.utils
*
* @param m A full month name.
*
- * @return A int that represents that month represented by the specifed
+ * @return A int that represents that month represented by the specified
* full month name.
*
* @langversion ActionScript 3.0
@@ -154,7 +154,7 @@ package com.adobe.utils
*
* @param m A short day name.
*
- * @return A int that represents that short day represented by the specifed
+ * @return A int that represents that short day represented by the specified
* full month name.
*
* @langversion ActionScript 3.0
@@ -194,7 +194,7 @@ package com.adobe.utils
*
* @param m A full day name.
*
- * @return A int that represents that full day represented by the specifed
+ * @return A int that represents that full day represented by the specified
* full month name.
*
* @langversion ActionScript 3.0
@@ -675,7 +675,7 @@ package com.adobe.utils
}
/**
- * Converts a date into just befor midnight.
+ * Converts a date into just before midnight.
*/
public static function makeNight(d:Date):Date
{
diff --git a/clients/flex/com/adobe/utils/StringUtil.as b/clients/flex/com/adobe/utils/StringUtil.as
index d7e98ed08b..af236d210e 100644
--- a/clients/flex/com/adobe/utils/StringUtil.as
+++ b/clients/flex/com/adobe/utils/StringUtil.as
@@ -79,7 +79,7 @@ package com.adobe.utils
* @param input The String whose beginning and ending whitespace will
* will be removed.
*
- * @returns A String with whitespace removed from the begining and end
+ * @returns A String with whitespace removed from the beginning and end
*
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
@@ -95,7 +95,7 @@ package com.adobe.utils
*
* @param input The String whose beginning whitespace will will be removed.
*
- * @returns A String with whitespace removed from the begining
+ * @returns A String with whitespace removed from the beginning
*
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
@@ -236,4 +236,4 @@ package com.adobe.utils
return (s != null && s.length > 0);
}
}
-}
\ No newline at end of file
+}
diff --git a/clients/flex/jquery-1.4.2.js b/clients/flex/jquery-1.4.2.js
index fff6776433..cc6e7dd4ea 100644
--- a/clients/flex/jquery-1.4.2.js
+++ b/clients/flex/jquery-1.4.2.js
@@ -519,7 +519,7 @@ jQuery.extend({
noop: function() {},
- // Evalulates a script in a global context
+ // Evaluates a script in a global context
globalEval: function( data ) {
if ( data && rnotwhite.test(data) ) {
// Inspired by code by Andrea Giammarchi
@@ -855,7 +855,7 @@ function now() {
htmlSerialize: !!div.getElementsByTagName("link").length,
// Get the style information from getAttribute
- // (IE uses .cssText insted)
+ // (IE uses .cssText instead)
style: /red/.test( a.getAttribute("style") ),
// Make sure that URLs aren't manipulated
@@ -1310,7 +1310,7 @@ jQuery.fn.extend({
classNames = value.split( rspace );
while ( (className = classNames[ i++ ]) ) {
- // check each className given, space seperated list
+ // check each className given, space separated list
state = isBool ? state : !self.hasClass( className );
self[ state ? "addClass" : "removeClass" ]( className );
}
@@ -1364,7 +1364,7 @@ jQuery.fn.extend({
var option = options[ i ];
if ( option.selected ) {
- // Get the specifc value for the option
+ // Get the specific value for the option
value = jQuery(option).val();
// We don't need an array for one selects
@@ -2636,7 +2636,7 @@ var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^
baseHasDuplicate = true;
// Here we check if the JavaScript engine is using some sort of
-// optimization where it does not always call our comparision
+// optimization where it does not always call our comparison
// function. If that is the case, discard the hasDuplicate value.
// Thus far that includes Google Chrome.
[0, 0].sort(function(){
@@ -3415,7 +3415,7 @@ if ( document.documentElement.compareDocumentPosition ) {
};
}
-// Utility function for retreiving the text value of an array of DOM nodes
+// Utility function for retrieving the text value of an array of DOM nodes
function getText( elems ) {
var ret = "", elem;
@@ -4149,7 +4149,7 @@ jQuery.fn.extend({
if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
// IE copies events bound via attachEvent when
// using cloneNode. Calling detachEvent on the
- // clone will also remove the events from the orignal
+ // clone will also remove the events from the original
// In order to get around this, we use innerHTML.
// Unfortunately, this means some modifications to
// attributes in IE that are actually only stored
@@ -4886,7 +4886,7 @@ jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".sp
jQuery.extend({
get: function( url, data, callback, type ) {
- // shift arguments if data argument was omited
+ // shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
@@ -4911,7 +4911,7 @@ jQuery.extend({
},
post: function( url, data, callback, type ) {
- // shift arguments if data argument was omited
+ // shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
@@ -4948,7 +4948,7 @@ jQuery.extend({
// Create the request object; Microsoft failed to properly
// implement the XMLHttpRequest in IE7 (can't request local files),
// so we use the ActiveXObject when it is available
- // This function can be overriden by calling jQuery.ajaxSetup
+ // This function can be overridden by calling jQuery.ajaxSetup
xhr: window.XMLHttpRequest && (window.location.protocol !== "file:" || !window.ActiveXObject) ?
function() {
return new window.XMLHttpRequest();
diff --git a/clients/flex/jquery.tmpl.js b/clients/flex/jquery.tmpl.js
index 7e850f9d06..24188733b6 100644
--- a/clients/flex/jquery.tmpl.js
+++ b/clients/flex/jquery.tmpl.js
@@ -362,7 +362,7 @@
function updateWrapped( options, wrapped ) {
// Build the wrapped content.
options._wrap = build( options, true,
- // Suport imperative scenario in which options.wrapped can be set to a selector or an HTML string.
+ // Support imperative scenario in which options.wrapped can be set to a selector or an HTML string.
jQuery.isArray( wrapped ) ? wrapped : [htmlExpr.test( wrapped ) ? wrapped : jQuery( wrapped ).html()]
).join("");
}
diff --git a/conf/curl/autoload_configs/conference.conf.xml b/conf/curl/autoload_configs/conference.conf.xml
index dad34b2cce..75a12c78fd 100644
--- a/conf/curl/autoload_configs/conference.conf.xml
+++ b/conf/curl/autoload_configs/conference.conf.xml
@@ -53,7 +53,7 @@
-
+
diff --git a/conf/curl/autoload_configs/xml_cdr.conf.xml b/conf/curl/autoload_configs/xml_cdr.conf.xml
index 7f635d64aa..6aed35ac91 100644
--- a/conf/curl/autoload_configs/xml_cdr.conf.xml
+++ b/conf/curl/autoload_configs/xml_cdr.conf.xml
@@ -6,7 +6,7 @@
-
+
diff --git a/conf/insideout/autoload_configs/conference.conf.xml b/conf/insideout/autoload_configs/conference.conf.xml
index dad34b2cce..75a12c78fd 100644
--- a/conf/insideout/autoload_configs/conference.conf.xml
+++ b/conf/insideout/autoload_configs/conference.conf.xml
@@ -53,7 +53,7 @@
-
+
diff --git a/conf/insideout/autoload_configs/xml_cdr.conf.xml b/conf/insideout/autoload_configs/xml_cdr.conf.xml
index 7f635d64aa..6aed35ac91 100644
--- a/conf/insideout/autoload_configs/xml_cdr.conf.xml
+++ b/conf/insideout/autoload_configs/xml_cdr.conf.xml
@@ -6,7 +6,7 @@
-
+
diff --git a/conf/insideout/dialplan/default.xml b/conf/insideout/dialplan/default.xml
index 560b3023bb..6290dd53b0 100644
--- a/conf/insideout/dialplan/default.xml
+++ b/conf/insideout/dialplan/default.xml
@@ -2,7 +2,7 @@
NOTICE:
This context is usually accessed via authenticated callers on the sip profile on port 5060
- or transfered callers from the public context which arrived via the sip profile on port 5080.
+ or transferred callers from the public context which arrived via the sip profile on port 5080.
Authenticated users will use the user_context variable on the user to determine what context
they can access. You can also add a user in the directory with the cidr= attribute acl.conf.xml
@@ -330,7 +330,7 @@
-
+
diff --git a/conf/rayo/autoload_configs/conference.conf.xml b/conf/rayo/autoload_configs/conference.conf.xml
index 1ccd675d75..0641df764e 100644
--- a/conf/rayo/autoload_configs/conference.conf.xml
+++ b/conf/rayo/autoload_configs/conference.conf.xml
@@ -64,7 +64,7 @@
-
+
diff --git a/conf/rayo/autoload_configs/spandsp.conf.xml b/conf/rayo/autoload_configs/spandsp.conf.xml
index f70416bc66..f9556d3c78 100644
--- a/conf/rayo/autoload_configs/spandsp.conf.xml
+++ b/conf/rayo/autoload_configs/spandsp.conf.xml
@@ -10,7 +10,7 @@
2) copy conf/config.FS0 to /var/spool/hylafax/etc (or wherver the appropriate dir is on your system)
- Subsequent modem configs would incrment the 0 to 1 and so on.
+ Subsequent modem configs would increment the 0 to 1 and so on.
-->
diff --git a/debian/README.source b/debian/README.source
index f1d4cff376..c5dc90b5de 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -63,7 +63,7 @@ The format of debian/modules.conf is:
Building the Debian packaging
-----------------------------
-If you want actualy Debian binary or source packages to upload to your
+If you want actually Debian binary or source packages to upload to your
own repository, you'll need to build them as described here. We have
some fancy automatic tools to accomplish this. The tools allow you to
start from a very bare Debian image and generate working packages.
diff --git a/docker/base_image/README.md b/docker/base_image/README.md
index 75e6e02dae..25ffe1a85f 100644
--- a/docker/base_image/README.md
+++ b/docker/base_image/README.md
@@ -70,7 +70,7 @@ systemd enable freeswitch-docker.service
.bashrc file
------------
-To simplify freeswitch managment you can add alias for ```fs_cli``` to ```.bashrc``` file as example bellow.
+To simplify freeswitch management you can add alias for ```fs_cli``` to ```.bashrc``` file as example bellow.
```sh
alias fs_cli='docker exec -i -t freeswitch /usr/bin/fs_cli'
```
diff --git a/docker/base_image/docker-entrypoint.sh b/docker/base_image/docker-entrypoint.sh
index f3e0519f23..030ee543ad 100755
--- a/docker/base_image/docker-entrypoint.sh
+++ b/docker/base_image/docker-entrypoint.sh
@@ -43,7 +43,7 @@ wget_helper() {
local SOUND_FILE=$1
grep -q $SOUND_FILE /usr/share/freeswitch/sounds/soundfiles_present.txt 2> /dev/null
if [ "$?" -eq 0 ]; then
- echo "Skiping download of $SOUND_FILE. Already present"
+ echo "Skipping download of $SOUND_FILE. Already present"
return
fi
wget $BASEURL/$SOUND_FILE
@@ -99,7 +99,7 @@ SOUND_RATES=$(echo "$SOUND_RATES" | sed -e 's/:/\n/g')
SOUND_TYPES=$(echo "$SOUND_TYPES" | sed -e 's/:/\n/g')
if [ -z "$SOUND_RATES" -o -z "$SOUND_TYPES" ]; then
- echo "Environment variables 'SOUND_RATES' or 'SOUND_TYPES' not defined. Skiping sound files checking."
+ echo "Environment variables 'SOUND_RATES' or 'SOUND_TYPES' not defined. Skipping sound files checking."
else
download_sound_types
extract_sound_files
diff --git a/docs/Doxygen.conf b/docs/Doxygen.conf
index 692a9f9e6c..5df2a2bcb2 100644
--- a/docs/Doxygen.conf
+++ b/docs/Doxygen.conf
@@ -278,10 +278,10 @@ TYPEDEF_HIDES_STRUCT = NO
# For small to medium size projects (<1000 input files) the default value is
# probably good enough. For larger projects a too small cache size can cause
# doxygen to be busy swapping symbols to and from disk most of the time
-# causing a significant performance penality.
+# causing a significant performance penalty.
# If the system has enough physical memory increasing the cache will improve the
# performance by keeping more symbols in memory. Note that the value works on
-# a logarithmic scale so increasing the size by one will rougly double the
+# a logarithmic scale so increasing the size by one will roughly double the
# memory usage. The cache size is given by this formula:
# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
# corresponding to a cache size of 2^16 = 65536 symbols
diff --git a/docs/phrase/README.TXT b/docs/phrase/README.TXT
index 463718289f..088147652c 100644
--- a/docs/phrase/README.TXT
+++ b/docs/phrase/README.TXT
@@ -8,9 +8,9 @@ language. If you are capable of recording each language please do so and
contribute them to the project. As phrases are added, the files will need to be
updated for the respective phrase_xx.xml file.
make_checks.sh - script to compare phrase_en.xml with other language xml files.
-Script output contans prompt elements with attributes:
+Script output contains prompt elements with attributes:
translated - value 'false' or not displayed;
-transpated-to - tranlation value if exists;
+translated-to - translation value if exists;
more-then-one-translation - displayed if exist two or more for given wav file.
How can you contribute?
diff --git a/docs/phrase/make_checks.sh b/docs/phrase/make_checks.sh
index 72e6105987..17bf93fa09 100755
--- a/docs/phrase/make_checks.sh
+++ b/docs/phrase/make_checks.sh
@@ -3,13 +3,13 @@ SAXON_JAR=/usr/share/java/saxon9he.jar
XML=$1
if [ ! -f "$SAXON_JAR" ]; then
- echo "Please update 'SAXON_JAR' varaiable value to location of SAXON jar"
+ echo "Please update 'SAXON_JAR' variable value to location of SAXON jar"
exit -1
fi
if [ -z "$XML" ]; then
echo "Error: Please enter xml file name that must be ckecked."
- echo "Exmple: make_checks.sh phrase_es_ES.xml > comparison_result.xml"
+ echo "Example: make_checks.sh phrase_es_ES.xml > comparison_result.xml"
exit -1
fi
diff --git a/freeswitch.spec b/freeswitch.spec
index dfd71f5429..4cf49c2118 100644
--- a/freeswitch.spec
+++ b/freeswitch.spec
@@ -296,7 +296,7 @@ Group: System/Libraries
Requires: %{name} = %{version}-%{release}
%description application-directory
-Provides FreeSWITCH mod_directory, a dial by name directory application.
+Provides FreeSWITCH mod_directory, a dial by name directory application.
%package application-distributor
Summary: FreeSWITCH mod_distributor
@@ -304,7 +304,7 @@ Group: System/Libraries
Requires: %{name} = %{version}-%{release}
%description application-distributor
-Provides FreeSWITCH mod_distributor, a simple round-robbin style distribution
+Provides FreeSWITCH mod_distributor, a simple round-robin style distribution
to call gateways.
%package application-easyroute
@@ -461,7 +461,7 @@ Group: System/Libraries
Requires: %{name} = %{version}-%{release}
%description application-rad_auth
-Provides FreeSWITCH mod_rad_auth, authetication via RADIUS protocol from FreeSWITCH dialplan
+Provides FreeSWITCH mod_rad_auth, authentication via RADIUS protocol from FreeSWITCH dialplan
%package application-redis
Summary: FreeSWITCH mod_redis
@@ -839,7 +839,7 @@ XMPP support for FreeSWITCH open source telephony platform. Allows FreeSWITCH
to be used as a client for GoogleTalk or other XMPP Servers.
#%package endpoint-gsmopen
-#Summary: Generic GSM enpoint support for FreeSWITCH open source telephony platform
+#Summary: Generic GSM endpoint support for FreeSWITCH open source telephony platform
#Group: System/Libraries
#Requires: %{name} = %{version}-%{release}
#
@@ -849,12 +849,12 @@ to be used as a client for GoogleTalk or other XMPP Servers.
#SMS is handled via the standard CHAT API in FreeSWITCH.
#%package endpoint-h323
-#Summary: H.323 enpoint support for FreeSWITCH open source telephony platform
+#Summary: H.323 endpoint support for FreeSWITCH open source telephony platform
#Group: System/Libraries
#Requires: %{name} = %{version}-%{release}
#
#%description endpoint-h323
-#H.323 enpoint support for FreeSWITCH open source telephony platform
+#H.323 endpoint support for FreeSWITCH open source telephony platform
#%package endpoint-khomp
#Summary: khomp endpoint support for FreeSWITCH open source telephony platform
@@ -1170,7 +1170,7 @@ Requires: %{name} = %{version}-%{release}
######################################################################################################################
%package lang-en
-Summary: Provides english language dependand modules and speech config for the FreeSWITCH Open Source telephone platform.
+Summary: Provides english language dependent modules and speech config for the FreeSWITCH Open Source telephone platform.
Group: System/Libraries
Requires: %{name} = %{version}-%{release}
@@ -1178,7 +1178,7 @@ Requires: %{name} = %{version}-%{release}
English language phrases module and directory structure for say module and voicemail
%package lang-ru
-Summary: Provides russian language dependand modules and speech config for the FreeSWITCH Open Source telephone platform.
+Summary: Provides russian language dependent modules and speech config for the FreeSWITCH Open Source telephone platform.
Group: System/Libraries
Requires: %{name} = %{version}-%{release}
@@ -1218,12 +1218,12 @@ Requires: %{name} = %{version}-%{release}
Spanish language phrases module and directory structure for say module and voicemail
%package lang-pt
-Summary: Provides Portugese language dependend modules and speech config for the FreeSWITCH Open Source telephone platform.
+Summary: Provides Portuguese language dependend modules and speech config for the FreeSWITCH Open Source telephone platform.
Group: System/Libraries
Requires: %{name} = %{version}-%{release}
%description lang-pt
-Portugese language phrases module and directory structure for say module and voicemail
+Portuguese language phrases module and directory structure for say module and voicemail
%package lang-sv
Summary: Provides Swedish language dependend modules and speech config for the FreeSWITCH Open Source telephone platform.
@@ -1982,7 +1982,7 @@ fi
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/directory/*.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/directory/default/*
######################################################################################################################
-# IVR Menues
+# IVR Menus
######################################################################################################################
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/ivr_menus/*.xml
######################################################################################################################
@@ -2557,7 +2557,7 @@ fi
* Wed Jun 19 2013 - krice@freeswitch.org
- tweak files included for vanilla configs
* Wed Sep 19 2012 - krice@freeswitch.org
-- Add support for Spanish and Portugese say language modules
+- Add support for Spanish and Portuguese say language modules
* Thu Jan 26 2012 - krice@freeswitch.org
- complete rework of spec file
* Tue Jun 14 2011 - michal.bielicki@seventhsignal.de
@@ -2576,7 +2576,7 @@ fi
- fixes for ss7 freetdm modules
- added mod_opus
- added selector for sangoma modules
-- addded python esl module to rpm
+- added python esl module to rpm
- some minor cleanups
- cut sangoma modules into separate rpms as addons for freetdm
* Tue Jan 18 2011 - michal.bielicki@seventhsignal.de
@@ -2594,7 +2594,7 @@ fi
- added mod_nibblebill to standard modules
* Sun Sep 26 2010 - michal.bielicki@seventhsignal.de
- added portaudio_stream module
-- some more formating work
+- some more formatting work
* Mon Jul 19 2010 - michal.bielicki@seventhsignal.de
- new hash module config file added to freeswitch.spec
* Mon Jul 19 2010 - michal.bielicki@seventhsignal.de
@@ -2607,7 +2607,7 @@ fi
- Added Contributors
- Added Anthony's copyright for the whole package into the header
* Tue Jun 22 2010 - michal.bielicki@seventhsignal.de
-- Reorganized the modules alphabeticaly
+- Reorganized the modules alphabetically
- synced SFEopensolaris and centos spec
- started to fix Run Dependencies
- added mod_say_ru which seemd to have gone missing
@@ -2619,7 +2619,7 @@ fi
- replaced mod_limit with mod_db
- added mod_spy
- added mod_valet_parking
-- addded mod_memcache
+- added mod_memcache
- added mod_distributor
- added mod_avmd
* Thu Apr 29 2010 - michal.bielicki@seventhsignal.de
@@ -2639,7 +2639,7 @@ fi
* Sat Nov 21 2009 - michal.bielicki@seventhsignal.de
- added patch by Igor Neves : Added some checkup in %post and %postun to prevent upgrades from removing freeswitch user
* Wed Nov 18 2009 - michal.bielicki@seventhsignal.de
-- added new config files for diretory and distributor
+- added new config files for directory and distributor
- removed sangoma boost from openzap for builds that do not inherit wanpipe while building.
* Fri Jul 24 2009 - mike@jerris.com
- removed mod_http
@@ -2704,7 +2704,7 @@ fi
- fixed odbc requirements
- added all buildable modules
- added redhat style init file
-- splitted off language dependant stuff into separate language files
+- split off language dependent stuff into separate language files
- disable non complete language modules
* Tue Apr 24 2007 - peter+rpmspam@suntel.com.tr
- Added a debug package
diff --git a/fscomm/preferences/prefdialog.ui b/fscomm/preferences/prefdialog.ui
index aca5eff198..66742f2c78 100644
--- a/fscomm/preferences/prefdialog.ui
+++ b/fscomm/preferences/prefdialog.ui
@@ -1092,7 +1092,7 @@
-
- Noise Supressor
+ Noise Suppressor
diff --git a/src/switch_xml_config.c b/src/switch_xml_config.c
index 21a6af38af..6d67ccdad4 100644
--- a/src/switch_xml_config.c
+++ b/src/switch_xml_config.c
@@ -333,7 +333,7 @@ SWITCH_DECLARE(switch_status_t) switch_xml_config_parse_event(switch_event_t *ev
} else if (value && switch_false(value)) {
newval = SWITCH_FALSE;
} else if (value) {
- /* Value isnt true or false */
+ /* Value isn't true or false */
newval = (switch_bool_t) (intptr_t) item->defaultvalue;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid value [%s] for parameter [%s], setting default [%s]\n",
value, item->key, newval ? "true" : "false");
diff --git a/tests/unit/conf/vpx.conf.xml b/tests/unit/conf/vpx.conf.xml
index 63372ff5e7..2fce09dc13 100644
--- a/tests/unit/conf/vpx.conf.xml
+++ b/tests/unit/conf/vpx.conf.xml
@@ -189,7 +189,7 @@
-
+
diff --git a/w32/Setup/GitInfo/GitInfo.targets b/w32/Setup/GitInfo/GitInfo.targets
index 7c587c62d6..3d5da69590 100644
--- a/w32/Setup/GitInfo/GitInfo.targets
+++ b/w32/Setup/GitInfo/GitInfo.targets
@@ -57,7 +57,7 @@
GitInfo.txt
-
+
$(MSBuildProjectDirectory)
$([MSBuild]::GetDirectoryNameOfFileAbove($(GitInfoBaseDir), $(GitVersionFile)))\$(GitVersionFile)