-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) · 3.59 KB
/
Copy pathindex.html
File metadata and controls
67 lines (62 loc) · 3.59 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% load humanize %}
{% load timestamps %}
{% block title %}{% trans "Weblate - web-based localization" %}{% endblock %}
{% block body_class %}{% endblock %}
{% block box %}
<section class="main-box">
<div class="row">
<div class="box">
<h1>{% trans "Web-based <strong>continuous</strong> localization" %}</h1>
<p>{% block description %}{% blocktrans with projects=1500|intcomma countries=115 %}Copylefted libre software, used by over {{projects}} libre software projects and companies in over {{countries}} countries.{% endblocktrans %}{% endblock %}</p>
<a href="https://hosted.weblate.org/" class="button inline">{% trans "Try Weblate" %}</a>
<a class="button inline black" href="{% url 'features' %}">{% trans "Explore all features" %}</a>
</div>
</div>
</section>
{% endblock %}
{% block content %}
<section class="content">
<div class="row">
<div class="wrap countries">
<div class="half half-text">
<div class="countries-number">{% blocktrans with countries=115 %}{{ countries }}+ Countries{% endblocktrans %}</div>
<h2>{% trans "Weblate localizes the world" %}</h2>
<p>{% trans "Hosted service and standalone tool with tight version control integration. Simple and clean user interface, propagation of translations across components, quality checks and automatic linking to source files." %}</p>
</div>
<div class="half half-translations">
{% for change in changes %}
<div class="trans-item">
<div class="trans-title">{% blocktrans count intcount=change.recent_changes with count=change.recent_changes|intcomma when=change.last_change|recently %}{{ count }} translation {{ when }}{% plural %}{{ count }} translations {{ when }}{% endblocktrans %}</div>
<div class="trans-project">{% trans "Project" %} <a href="{{ change.url }}">{{ change.name }}</a></div>
</div>
{% endfor %}
<div class="trans-bottom">
<div class="trans-number">{% blocktrans count intcount=activity_sum with count=activity_sum|intcomma %}{{ count }} translation{% plural %}{{ count }} translations{% endblocktrans %}</div>
<div class="trans-days">{% trans "in the last 7 days" %}</div>
</div>
</div>
</div>
<div class="clear"></div>
<div class="wrap features">
<h2 class="section-title hp-style">{% trans "Robust feature set" %}</h2>
{% include "snippets/features-1.html" %}
{% include "snippets/features-2.html" %}
<a href="{% url 'hosting' %}" class="button inline">{% trans "Go to pricing" %}</a>
<a class="button inline border rev" href="{% url 'features' %}">{% trans "Explore all features" %}</a>
</div>
<div class="wrap supporters">
<h2 class="section-title hp-style">{% trans "Companies using Weblate" %}</h2>
{% include "snippets/reviews.html" %}
</div>
<div class="wrap supporters">
<h2 class="section-title hp-style">{% trans "Supporters & open source projects" %}</h2>
{% include "snippets/users.html" %}
</div>
</div>
</section>
{% include "snippets/pricing.html" %}
{% include "snippets/bottom.html" with extra_css="hp" %}
{% endblock %}