mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-26 00:45:17 +08:00
35 lines
997 B
HTML
Vendored
35 lines
997 B
HTML
Vendored
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{% blocktrans %}Weblate is web based translation tool with tight Git integration. It features simple and clean user interface, propagation of translations across subprojects, consistency checks or automatic linking to source files.{% endblocktrans %}</p>
|
|
|
|
<p>{% trans "This site is built using following projects:" %}</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<th><a href="http://weblate.org/">Weblate</a></th>
|
|
<td>{{ version }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><a href="https://www.djangoproject.com/">Django</a></th>
|
|
<td>{{ django_version }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><a href="http://translate.sourceforge.net/wiki/toolkit/index">Translate Toolkit</a></th>
|
|
<td>{{ tt_version }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><a href="https://github.com/gitpython-developers/GitPython">GitPython</a></th>
|
|
<td>{{ git_version }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><a href="http://bitbucket.org/mchaput/whoosh/">Whoosh</a></th>
|
|
<td>{{ whoosh_version }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{% endblock %}
|
|
|