blob: 4b3885937527c7ca4e98cfcd3f63417acaba847c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{% extends "common/base.j2" %}
{% block body_content %}
<div class="container">
<article>
<section>
<h3>{{ _("I receive many "WARNING Calculated flow delay for X at Y for Z". Should I worry?") }}</h3>
<p>
{% trans %}
A: Right now, this is expected and a known cause for high
latency in GNUnet. We have started a major rewrite to address
this and other problems, but until the Transport Next
Generation (TNG) is ready, these warnings are expected.
{% endtrans %}
</p>
</section>
<section>
<h3>{{ _("Is there a graphical user interface?") }}</h3>
<p>
{% trans %}
A: gnunet-gtk is a separate download. The package
contains various GTK+ based graphical interfaces, including a
graphical tool for configuration.
{% endtrans %}
</p>
</section>
</article>
<!--
<h2>{{ ("Q?") }}</h2>
<h2>{{ ("Q?") }}</h2>
<h2>{{ ("Q?") }}</h2>
-->
</div>
{% endblock body_content %}
|