Allow "Not enough authorization for updating infos" to be translated and fix typo "info"
jamidht/conversationrepository.cpp
if (!valid) {
JAMI_ERROR("Not enough authorization for updating infos");
emitSignal<libjami::ConversationSignal::OnConversationError>(
pimpl_->accountId_,
pimpl_->id_,
EUNAUTHORIZED,
"Not enough authorization for updating infos");
return {};
}
- Change
Not enough authorization for updating infos
to:
(a)Insufficient permission to update information
(b)Not authorized to update information
- Allow translation
Please advise how to allow translating.
Thank you