Skip to content
Snippets Groups Projects
Commit a4a5237c authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

show pycrypto in features window

parent 0c18512f
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,10 @@ class FeaturesWindow:
_('Transform LaTeX espressions between $$ $$.'),
_('Requires texlive-latex-base, dvips and imagemagick. You have to set \'use_latex\' to True in the Advanced Configuration Editor.'),
_('Feature not available under Windows.')),
_('End to end encryption'): (self.pycrypto_available,
_('Encrypting chatmessages.'),
_('Requires python-crypto.'),
_('Requires python-crypto.')),
}
# name, supported
......@@ -274,3 +278,7 @@ class FeaturesWindow:
if exitcode == 0:
return True
return False
def pycrypto_available(self):
from common import gajim
return gajim.HAVE_PYCRYPTO
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment