spelling fixes

This commit is contained in:
klemens 2016-05-04 10:29:29 +02:00
parent dee7fd3eab
commit 7047d68165
6 changed files with 9 additions and 9 deletions

View File

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

View File

@ -282,7 +282,7 @@ manage accounts and choose renew PGP announcement from the contextual menu.
#### How does the encryption for conferences work? #### 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). does not work with multiple participants).
##### OMEMO ##### OMEMO

View File

@ -350,7 +350,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
public void registerDevices(final Jid jid, @NonNull final Set<Integer> deviceIds) { public void registerDevices(final Jid jid, @NonNull final Set<Integer> deviceIds) {
if (jid.toBareJid().equals(account.getJid().toBareJid())) { if (jid.toBareJid().equals(account.getJid().toBareJid())) {
if (!deviceIds.isEmpty()) { 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; pepBroken = false;
numPublishTriesOnEmptyPep = 0; numPublishTriesOnEmptyPep = 0;
} }

View File

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

View File

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

View File

@ -266,7 +266,7 @@ public class JingleConnection implements Transferable {
@Override @Override
public void established() { public void established() {
Log.d(Config.LOGTAG, Log.d(Config.LOGTAG,
"succesfully connected to our own primary candidate"); "successfully connected to our own primary candidate");
mergeCandidate(candidate); mergeCandidate(candidate);
sendInitRequest(); sendInitRequest();
} }
@ -594,7 +594,7 @@ public class JingleConnection implements Transferable {
this.connect(); this.connect();
} else { } else {
Log.d(Config.LOGTAG, 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; return true;
} else { } else {