diff --git a/daemon b/daemon index 6aa9751d201e533a988b06033b5d0945a775317c..7ef7735297179bca2249bf757db7a88ce4dd5807 160000 --- a/daemon +++ b/daemon @@ -1 +1 @@ -Subproject commit 6aa9751d201e533a988b06033b5d0945a775317c +Subproject commit 7ef7735297179bca2249bf757db7a88ce4dd5807 diff --git a/src/app/currentconversation.cpp b/src/app/currentconversation.cpp index e86344aed439ff08e1ff81da80e22a873bf2d277..891c21be5e6c372f2474603efeb1eb458fbbb972 100644 --- a/src/app/currentconversation.cpp +++ b/src/app/currentconversation.cpp @@ -324,12 +324,13 @@ CurrentConversation::updateErrors(const QString& convId) if (code == 1) { newErrors.append(tr("An error occurred while fetching this repository")); } else if (code == 2) { - newErrors.append(tr("The conversation's mode is un-recognized")); + newErrors.append(tr("Unrecognized conversation mode")); } else if (code == 3) { newErrors.append(tr("An invalid message was detected")); } else if (code == 4) { - newErrors.append( - tr("Not enough authorization for updating conversation's infos")); + newErrors.append(tr("Not authorized to update conversation information")); + } else if (code == 5) { + newErrors.append(tr("An error occurred while committing a new message")); } else { continue; }