spelling fixes

klemens created

Change summary

CHANGELOG.md                                                             | 6 
README.md                                                                | 2 
src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java  | 2 
src/main/java/eu/siacs/conversations/services/XmppConnectionService.java | 2 
src/main/java/eu/siacs/conversations/xmpp/XmppConnection.java            | 2 
src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnection.java   | 4 
6 files changed, 9 insertions(+), 9 deletions(-)

Detailed changes

CHANGELOG.md 🔗

@@ -171,7 +171,7 @@
 
 ####Version 1.4.0
 * send button turns into quick action button to offer faster access to take photo, send location or record audio
-* visually seperate merged messages
+* visually separate merged messages
 * faster reconnects of failed accounts after network switches 
 * r/o vcard avatars for contacts
 * various bug fixes
@@ -264,7 +264,7 @@
 * Download HTTP images
 * Show avatars in MUC tiles
 * Disabled SSLv3
-* Performance improvments
+* Performance improvements
 * bug fixes
 
 ####Version 0.7.3
@@ -313,7 +313,7 @@
 ####Version 0.4
 * OTR file encryption
 * keep OTR messages and files on device until both parties or online at the same time
-* XEP-0333. Mark wether the other party has read your messages
+* XEP-0333. Mark whether the other party has read your messages
 * Delayed messages are now tagged properly
 * Share images from the Gallery
 * Infinit history scrolling

README.md 🔗

@@ -282,7 +282,7 @@ manage accounts and choose renew PGP announcement from the contextual menu.
 
 #### How does the encryption for conferences work?
 
-For conferences only OMEMO and OpenPGP are suppored as encryption method. (OTR
+For conferences only OMEMO and OpenPGP are supported as encryption method. (OTR
 does not work with multiple participants).
 
 ##### OMEMO

src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java 🔗

@@ -350,7 +350,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
 	public void registerDevices(final Jid jid, @NonNull final Set<Integer> deviceIds) {
 		if (jid.toBareJid().equals(account.getJid().toBareJid())) {
 			if (!deviceIds.isEmpty()) {
-				Log.d(Config.LOGTAG, getLogprefix(account) + "Received non-empty own device list. Resetting publish attemps and pepBroken status.");
+				Log.d(Config.LOGTAG, getLogprefix(account) + "Received non-empty own device list. Resetting publish attempts and pepBroken status.");
 				pepBroken = false;
 				numPublishTriesOnEmptyPep = 0;
 			}

src/main/java/eu/siacs/conversations/services/XmppConnectionService.java 🔗

@@ -2528,7 +2528,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
 								callback.success(avatar);
 							}
 							Log.d(Config.LOGTAG, account.getJid().toBareJid()
-									+ ": succesfuly fetched pep avatar for " + avatar.owner);
+									+ ": successfully fetched pep avatar for " + avatar.owner);
 							return;
 						}
 					} else {

src/main/java/eu/siacs/conversations/xmpp/XmppConnection.java 🔗

@@ -485,7 +485,7 @@ public class XmppConnection implements Runnable {
 				if ("true".equals(enabled.getAttribute("resume"))) {
 					this.streamId = enabled.getAttribute("id");
 					Log.d(Config.LOGTAG, account.getJid().toBareJid().toString()
-							+ ": stream managment(" + smVersion
+							+ ": stream management(" + smVersion
 							+ ") enabled (resumable)");
 				} else {
 					Log.d(Config.LOGTAG, account.getJid().toBareJid().toString()

src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnection.java 🔗

@@ -266,7 +266,7 @@ public class JingleConnection implements Transferable {
 											@Override
 											public void established() {
 												Log.d(Config.LOGTAG,
-														"succesfully connected to our own primary candidate");
+														"successfully connected to our own primary candidate");
 												mergeCandidate(candidate);
 												sendInitRequest();
 											}
@@ -594,7 +594,7 @@ public class JingleConnection implements Transferable {
 						this.connect();
 					} else {
 						Log.d(Config.LOGTAG,
-								"ignoring because file is already in transmission or we havent sent our candidate yet");
+								"ignoring because file is already in transmission or we haven't sent our candidate yet");
 					}
 					return true;
 				} else {